diff options
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/config/target.in b/config/target.in index e45bda20..64ce2d28 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 |