diff options
author | Petr Štetiar <ynezz@true.cz> | 2009-11-06 11:42:52 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-11-06 12:05:30 +0100 |
commit | 7e28606c9432c4fcb7e633c2dfb699eee14094c6 (patch) | |
tree | 0d52c4f19d5ba97a429ca15ad898a5b6c30ce826 /conf/machine | |
parent | 2c92869662d1f0b28229cdba9e9852ba642e0733 (diff) |
geodegx: Fix glibc configure error
Fix glibc configure error:
| configure: running configure fragment for add-on nptl
| checking sysdep dirs... configure: error: The geode subspecies of i486 is not supported.
| FATAL: oe_runconf failed
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: Henning Heinold <heinold@inf.fu-berlin.de>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/geodegx.conf | 4 | ||||
-rw-r--r-- | conf/machine/geodelx.conf | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/conf/machine/geodegx.conf b/conf/machine/geodegx.conf index 6350f2d94d..a9cf5773ee 100644 --- a/conf/machine/geodegx.conf +++ b/conf/machine/geodegx.conf @@ -2,7 +2,7 @@ # Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved # Released under the MIT license (see packages/COPYING) -TARGET_ARCH = "i486" +TARGET_ARCH = "i586" require conf/machine/include/tune-geode.inc @@ -16,4 +16,4 @@ udevdir = "/dev" KERNEL_IMAGETYPE = "bzImage" GLIBC_ADDONS = "nptl" -GLIBC_EXTRA_OECONF = "--with-tls --with-cpu=geode" +GLIBC_EXTRA_OECONF = "--with-tls --with-cpu=i586" diff --git a/conf/machine/geodelx.conf b/conf/machine/geodelx.conf index f8874fd966..7316f2d747 100644 --- a/conf/machine/geodelx.conf +++ b/conf/machine/geodelx.conf @@ -2,7 +2,7 @@ # Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved # Released under the MIT license (see packages/COPYING) -TARGET_ARCH = "i486" +TARGET_ARCH = "i586" require conf/machine/include/tune-geode.inc @@ -11,5 +11,5 @@ PREFERRED_PROVIDER_virtual/kernel = "linux-geodelx" KERNEL_IMAGETYPE = "bzImage" GLIBC_ADDONS = "nptl" -GLIBC_EXTRA_OECONF = "--with-tls --with-cpu=geode" +GLIBC_EXTRA_OECONF = "--with-tls --with-cpu=i586" SELECTED_OPTIMIZATION_pn-glibc := "${@'${SELECTED_OPTIMIZATION}'.replace('-fomit-frame-pointer', '')}" |