summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-13 10:57:58 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-13 10:57:58 +0200
commit3acd3c649d8a1cd0e662e0125547290a58773c09 (patch)
treec24ca65a0e599fd74ac35fbb3a0e6dce78c7e38a
parent10339740506424abe8e3a3ecdd979aa10ae592ca (diff)
handle i386 TARGET_SUBARCH
so we can pick the correct nptl locking impls Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--extra/Configs/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index 680365980..431d1f6b2 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -224,6 +224,10 @@ config TARGET_SUBARCH
default "e500" if CONFIG_E500
default "classic" if CONFIG_CLASSIC
default "sh4" if CONFIG_SH4
+ default "" if CONFIG_GENERIC_386 || CONFIG_386
+ default "i486" if CONFIG_486
+ default "i586" if CONFIG_586 || CONFIG_586MMX
+ default "i686" if TARGET_ARCH = "i386"
default ""
source "extra/Configs/Config.in.arch"