diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-09-19 16:38:31 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-09-19 16:38:31 +0000 |
commit | 47964faedc85da106a8e3a76d6688ad81603c1a5 (patch) | |
tree | 4628f5c50403d00a70464e1f0493efb82f8c94a6 | |
parent | cf1ecffedf6bdff4f49bc9fd4bb95de06b2a8e68 (diff) |
x86.conf: make it work w/ glibc 2.4 + NTPL
-rw-r--r-- | conf/machine/x86.conf | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/conf/machine/x86.conf b/conf/machine/x86.conf index 0210b87810..0953f6d041 100644 --- a/conf/machine/x86.conf +++ b/conf/machine/x86.conf @@ -2,13 +2,17 @@ #@NAME: X86 #@DESCRIPTION: Machine configuration for a Linux running on x86 compatible machines -TARGET_ARCH = "i386" +# i386 doesn't work with NTPL, see http://ecos.sourceware.org/ml/libc-ports/2006-03/msg00030.html +TARGET_ARCH = "i486" # TARGET_VENDOR = "-oe" IPKG_EXTRA_ARCHS = "x86" PREFERRED_PROVIDER_virtual/kernel = "linux-x86" +# todo: convert to task-base BOOTSTRAP_EXTRA_RDEPENDS = "kernel pciutils udev kernel-modules" udevdir = "/dev" -OLDEST_KERNEL = "2.6.5" -# GLIBC_ADDONS = "nptl" -# GLIBC_EXTRA_OECONF = "--with-tls" +OLDEST_KERNEL = "2.6.17" +GLIBC_ADDONS = "nptl" +GLIBC_EXTRA_OECONF = "--with-tls" + +#require conf/machine/include/tune-x86.conf |