diff options
author | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-05-31 16:27:39 +0200 |
---|---|---|
committer | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-05-31 16:27:39 +0200 |
commit | 96245813d8e81bc4534e810e5daab639468ac20c (patch) | |
tree | d111d40ece0ed422647b70d53c99eaad44f8749e /config/target.in | |
parent | 8f32ebcc88e6597dc16e59789ca1f63909d28215 (diff) | |
download | crosstool-ng-96245813d8e81bc4534e810e5daab639468ac20c.tar.gz crosstool-ng-96245813d8e81bc4534e810e5daab639468ac20c.tar.bz2 crosstool-ng-96245813d8e81bc4534e810e5daab639468ac20c.zip |
kconfig: remove useless 'default n'
kconfig bools are disabled by default, so specifying 'default n' is useless and
noisy. This patch removes all occurrences of 'default n'.
Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/config/target.in b/config/target.in index e56fcc3c..59c30010 100644 --- a/config/target.in +++ b/config/target.in @@ -44,16 +44,13 @@ comment "Generic target options" config ARCH_SUPPORTS_BOTH_MMU bool - default n config ARCH_DEFAULT_HAS_MMU bool - default n config ARCH_USE_MMU bool prompt "Use the MMU" if ARCH_SUPPORTS_BOTH_MMU - default n if ! ARCH_DEFAULT_HAS_MMU default y if ARCH_DEFAULT_HAS_MMU help If your architecture has an MMU and you want to use it, @@ -69,15 +66,12 @@ config ARCH_USE_MMU #-------------------------------------- config ARCH_SUPPORTS_BOTH_ENDIAN bool - default n config ARCH_DEFAULT_BE bool - default n config ARCH_DEFAULT_LE bool - default n choice bool @@ -99,19 +93,15 @@ endchoice #-------------------------------------- config ARCH_SUPPORTS_32 bool - default n config ARCH_SUPPORTS_64 bool - default n config ARCH_DEFAULT_32 bool - default n config ARCH_DEFAULT_64 bool - default n config ARCH_BITNESS int @@ -141,23 +131,18 @@ comment "Target optimisations" config ARCH_SUPPORT_ARCH bool - default n config ARCH_SUPPORT_ABI bool - default n config ARCH_SUPPORT_CPU bool - default n config ARCH_SUPPORT_TUNE bool - default n config ARCH_SUPPORT_FPU bool - default n config ARCH_ARCH string |