summaryrefslogtreecommitdiff
path: root/config/target.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-11-17 21:29:50 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-11-17 21:29:50 (GMT)
commitd5eb1f0dcf96e4f0a3bd8eb203de513200d99514 (patch)
tree1ee8ffb59fd655b61e4ca6a86880be0aa2a87fea /config/target.in
parentd219235f73ad0ec70f37d4699960a091bc4953ca (diff)
arch: cleanup the 32- and 64-bit selection
Diffstat (limited to 'config/target.in')
-rw-r--r--config/target.in20
1 files changed, 6 insertions, 14 deletions
diff --git a/config/target.in b/config/target.in
index e45bda2..64ce2d2 100644
--- a/config/target.in
+++ b/config/target.in
@@ -5,13 +5,6 @@ menu "Target options"
config ARCH
string
-# Note: when all archs have migrated to the 32/64 bit selection,
-# remove this option, and rename the config options in the bitness
-# choice, below.
-config ARCH_64
- bool
- default n
-
# Pre-declare target optimisation variables
config ARCH_SUPPORTS_BOTH_MMU
config ARCH_SUPPORTS_BOTH_ENDIAN
@@ -36,8 +29,8 @@ config ARCH_TUNE
config ARCH_FPU
config ARCH_BE
config ARCH_LE
-config ARCH_32b
-config ARCH_64b
+config ARCH_32
+config ARCH_64
config ARCH_FLOAT_HW
config ARCH_FLOAT_SW
config TARGET_CFLAGS
@@ -122,19 +115,18 @@ config ARCH_DEFAULT_64
choice
bool
prompt "Bitness:"
- default ARCH_32b if ARCH_DEFAULT_32
- default ARCH_64b if ARCH_DEFAULT_64
+ default ARCH_32 if ARCH_DEFAULT_32
+ default ARCH_64 if ARCH_DEFAULT_64
-config ARCH_32b
+config ARCH_32
bool
prompt "32-bit"
depends on ARCH_SUPPORTS_32
-config ARCH_64b
+config ARCH_64
bool
prompt "64-bit"
depends on ARCH_SUPPORTS_64
- select ARCH_64
endchoice