From d5eb1f0dcf96e4f0a3bd8eb203de513200d99514 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Tue, 17 Nov 2009 22:29:50 +0100 Subject: arch: cleanup the 32- and 64-bit selection --- config/target.in | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'config/target.in') 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 -- cgit v1.2.3