view sources/targets/i486 @ 1468:13b2bd9781a3

QEMU 1.0 changed the 'qemu' binary to 'qemu-i386', change run-emulator.sh for x86 to match.
author Rob Landley <rob@landley.net>
date Sat, 03 Dec 2011 17:50:58 -0600
parents b499abdbcdfa
children c3b5be048ba4
line wrap: on
line source

DESCRIPTION="
An i486 based computer.

Yes it's obsolete, but there are embedded processors that use it.  The
existance of an FPU is assumed, even though some i486s don't have one. 
This is simply coz i486s with no FPU are not of interest to me.  Someone
else can fix that if they care.

Produced and tested by David Seikel.
"

KARCH=i386
KERNEL_PATH=arch/${KARCH}/boot/bzImage
BINUTILS_FLAGS=
GCC_FLAGS=
QEMU_TEST=$KARCH

ROOT=hda
CONSOLE=ttyS0

UCLIBC_CONFIG="
TARGET_i386=y
CONFIG_486=y
UCLIBC_HAS_FPU=y
"

LINUX_CONFIG="
CONFIG_M486=y
CONFIG_ACPI=y
CONFIG_BLK_DEV_PIIX=y
CONFIG_NETDEV_1000=y
CONFIG_E1000=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
"

emulator_command()
{
  echo qemu-i386 -cpu 486 $(qemu_defaults "$@")
}