view sources/targets/i686 @ 1522:95a720e694a6

Switch x86_64 from nptl back to pthreads. This isn't the correct fix but uClibc apparently never tested nptl on x86-64, and one of the assembly files doesn't support PIC.
author Rob Landley <rob@landley.net>
date Thu, 10 May 2012 22:03:22 -0500
parents c3b5be048ba4
children b89324905ca2
line wrap: on
line source

DESCRIPTION="Standard 32-bit x86 target, Pentium 3 or later."

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

CONSOLE=ttyS0
ROOT=hda

UCLIBC_CONFIG="
ARCH_HAS_MMU=y
TARGET_i386=y
CONFIG_PENTIUMIII=y
UCLIBC_HAS_FPU=y
"

LINUX_CONFIG="
CONFIG_MPENTIUMII=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-system-i386 -cpu pentium3 $(qemu_defaults "$@") \
    -net nic,model=e1000 -net user
}