kconfig: remove useless 'default n'
author"Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Tue May 31 16:27:39 2011 +0200 (2011-05-31)
changeset 2484d1a8c2ae7946
parent 2483 fa3a18f9abcf
child 2485 288f1261964f
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>
config/arch/arm.in.2
config/arch/powerpc.in.2
config/backend.in
config/binutils/binutils.in
config/cc.in
config/cc/gcc.in
config/cc/gcc.in.2
config/companion_libs.in
config/companion_libs/ppl.in
config/config.mk
config/debug/duma.in
config/debug/gdb.in.cross
config/debug/gdb.in.gdbserver
config/debug/gdb.in.native
config/debug/ltrace.in
config/global/ct-behave.in
config/global/download.in
config/global/extract.in
config/global/logging.in
config/global/paths.in
config/kernel.in
config/kernel/linux.in
config/libc.in
config/libc/eglibc.in
config/libc/glibc-eglibc.in-common
config/libc/mingw.in.2
config/libc/newlib.in.2
config/libc/uClibc.in
config/libc/uClibc.in.2
config/target.in
config/test_suite.in
config/toolchain.in
     1.1 --- a/config/arch/arm.in.2	Sun May 29 19:24:41 2011 +0200
     1.2 +++ b/config/arch/arm.in.2	Tue May 31 16:27:39 2011 +0200
     1.3 @@ -28,7 +28,6 @@
     1.4  config ARCH_ARM_INTERWORKING
     1.5      bool
     1.6      prompt "Use Thumb-interworking (READ HELP)"
     1.7 -    default n
     1.8      depends on EXPERIMENTAL
     1.9      help
    1.10        Excerpt from the gcc manual:
     2.1 --- a/config/arch/powerpc.in.2	Sun May 29 19:24:41 2011 +0200
     2.2 +++ b/config/arch/powerpc.in.2	Tue May 31 16:27:39 2011 +0200
     2.3 @@ -3,7 +3,6 @@
     2.4  config ARCH_POWERPC_SPE
     2.5      bool
     2.6      prompt "Enable SPE support"
     2.7 -    default n
     2.8      help
     2.9        Add support for the Signal Processing Engine.  This will set up
    2.10        the toolchain so that it supports the SPE ABI extensions. This
     3.1 --- a/config/backend.in	Sun May 29 19:24:41 2011 +0200
     3.2 +++ b/config/backend.in	Tue May 31 16:27:39 2011 +0200
     3.3 @@ -6,8 +6,7 @@
     3.4  
     3.5  config BACKEND
     3.6      bool
     3.7 -    default y if IS_A_BACKEND =  "y" || IS_A_BACKEND =  "Y"
     3.8 -    default n if IS_A_BACKEND != "y" && IS_A_BACKEND != "Y"
     3.9 +    default y if IS_A_BACKEND = "y" || IS_A_BACKEND = "Y"
    3.10  
    3.11  config BACKEND_ARCH
    3.12      string
     4.1 --- a/config/binutils/binutils.in	Sun May 29 19:24:41 2011 +0200
     4.2 +++ b/config/binutils/binutils.in	Tue May 31 16:27:39 2011 +0200
     4.3 @@ -211,7 +211,6 @@
     4.4      prompt "binutils libraries for the target"
     4.5      depends on ! BARE_METAL
     4.6      depends on ! BACKEND
     4.7 -    default n
     4.8      help
     4.9        Some utilities may need binutils libraries to be available on
    4.10        the target, eg. oprofile.
     5.1 --- a/config/cc.in	Sun May 29 19:24:41 2011 +0200
     5.2 +++ b/config/cc.in	Tue May 31 16:27:39 2011 +0200
     5.3 @@ -33,7 +33,6 @@
     5.4  config CC_LANG_CXX
     5.5      bool
     5.6      prompt "C++"
     5.7 -    default n
     5.8      depends on CC_SUPPORT_CXX
     5.9      help
    5.10        Enable building a C++ compiler.
    5.11 @@ -46,7 +45,6 @@
    5.12  config CC_LANG_FORTRAN
    5.13      bool
    5.14      prompt "Fortran"
    5.15 -    default n
    5.16      depends on CC_SUPPORT_FORTRAN
    5.17      help
    5.18        Enable building a FORTRAN compiler.
    5.19 @@ -57,7 +55,6 @@
    5.20  config CC_LANG_JAVA
    5.21      bool
    5.22      prompt "Java"
    5.23 -    default n
    5.24      depends on CC_SUPPORT_JAVA
    5.25      help
    5.26        Enable building a Java compiler.
    5.27 @@ -68,7 +65,6 @@
    5.28  config CC_LANG_ADA
    5.29      bool
    5.30      prompt "ADA (EXPERIMENTAL)"
    5.31 -    default n
    5.32      depends on CC_SUPPORT_ADA
    5.33      depends on EXPERIMENTAL
    5.34      help
    5.35 @@ -80,7 +76,6 @@
    5.36  config CC_LANG_OBJC
    5.37      bool
    5.38      prompt "Objective-C (EXPERIMENTAL)"
    5.39 -    default n
    5.40      depends on CC_SUPPORT_OBJC
    5.41      depends on EXPERIMENTAL
    5.42      help
    5.43 @@ -93,7 +88,6 @@
    5.44      bool
    5.45      prompt "Objective-C++ (EXPERIMENTAL)"
    5.46      depends on EXPERIMENTAL
    5.47 -    default n
    5.48      depends on CC_SUPPORT_OBJCXX
    5.49      help
    5.50        Enable building an Objective C++ compiler.
     6.1 --- a/config/cc/gcc.in	Sun May 29 19:24:41 2011 +0200
     6.2 +++ b/config/cc/gcc.in	Tue May 31 16:27:39 2011 +0200
     6.3 @@ -186,39 +186,32 @@
     6.4  
     6.5  config CC_GCC_4_2
     6.6      bool
     6.7 -    default n
     6.8      select CC_GCC_4_2_or_later
     6.9  
    6.10  config CC_GCC_4_2_or_later
    6.11      bool
    6.12 -    default n
    6.13  
    6.14  config CC_GCC_4_3
    6.15      bool
    6.16 -    default n
    6.17      select CC_GCC_4_3_or_later
    6.18      select CC_GCC_USE_GMP_MPFR
    6.19  
    6.20  config CC_GCC_4_3_or_later
    6.21      bool
    6.22 -    default n
    6.23      select CC_GCC_4_2_or_later
    6.24  
    6.25  config CC_GCC_4_4
    6.26      bool
    6.27 -    default n
    6.28      select CC_GCC_4_4_or_later
    6.29      select CC_GCC_USE_GMP_MPFR
    6.30      select CC_GCC_HAS_GRAPHITE
    6.31  
    6.32  config CC_GCC_4_4_or_later
    6.33      bool
    6.34 -    default n
    6.35      select CC_GCC_4_3_or_later
    6.36  
    6.37  config CC_GCC_4_5
    6.38      bool
    6.39 -    default n
    6.40      select CC_GCC_4_5_or_later
    6.41      select CC_GCC_USE_GMP_MPFR
    6.42      select CC_GCC_USE_MPC
    6.43 @@ -227,12 +220,10 @@
    6.44  
    6.45  config CC_GCC_4_5_or_later
    6.46      bool
    6.47 -    default n
    6.48      select CC_GCC_4_4_or_later
    6.49  
    6.50  config CC_GCC_4_6
    6.51      bool
    6.52 -    default n
    6.53      select CC_GCC_4_6_or_later
    6.54      select CC_GCC_USE_GMP_MPFR
    6.55      select CC_GCC_USE_MPC
    6.56 @@ -241,12 +232,10 @@
    6.57  
    6.58  config CC_GCC_4_6_or_later
    6.59      bool
    6.60 -    default n
    6.61      select CC_GCC_4_5_or_later
    6.62  
    6.63  config CC_GCC_HAS_GRAPHITE
    6.64      bool
    6.65 -    default n
    6.66  
    6.67  # The way LTO works is a bit twisted.
    6.68  # See: http://gcc.gnu.org/wiki/LinkTimeOptimization#Requirements
    6.69 @@ -258,7 +247,6 @@
    6.70  # advantage of it
    6.71  config CC_GCC_HAS_LTO
    6.72      bool
    6.73 -    default n
    6.74  
    6.75  # Only enable gcc's support for plugins if binutils has it as well
    6.76  # They are usefull only when doing LTO, but it does no harm enabling
    6.77 @@ -277,24 +265,20 @@
    6.78  
    6.79  config CC_GCC_USE_GMP_MPFR
    6.80      bool
    6.81 -    default n
    6.82      select GMP_NEEDED
    6.83      select MPFR_NEEDED
    6.84  
    6.85  config CC_GCC_USE_PPL_CLOOG
    6.86      bool
    6.87 -    default n
    6.88      select PPL_NEEDED
    6.89      select CLOOG_NEEDED
    6.90  
    6.91  config CC_GCC_USE_MPC
    6.92      bool
    6.93 -    default n
    6.94      select MPC_NEEDED
    6.95  
    6.96  config CC_GCC_USE_LIBELF
    6.97      bool
    6.98 -    default n
    6.99      select LIBELF_NEEDED
   6.100  
   6.101  config CC_VERSION
     7.1 --- a/config/cc/gcc.in.2	Sun May 29 19:24:41 2011 +0200
     7.2 +++ b/config/cc/gcc.in.2	Tue May 31 16:27:39 2011 +0200
     7.3 @@ -129,7 +129,6 @@
     7.4  config CC_GCC_LIBMUDFLAP
     7.5      bool
     7.6      prompt "Compile libmudflap"
     7.7 -    default n
     7.8      help
     7.9        libmudflap is a pointer-use checking tool, which can detect
    7.10        various mis-usages of pointers in C and (to some extents) C++.
    7.11 @@ -143,7 +142,6 @@
    7.12  config CC_GCC_LIBGOMP
    7.13      bool
    7.14      prompt "Compile libgomp"
    7.15 -    default n
    7.16      help
    7.17        libgomp is "the GNU implementation of the OpenMP Application Programming
    7.18        Interface (API) for multi-platform shared-memory parallel programming in
    7.19 @@ -155,7 +153,6 @@
    7.20  config CC_GCC_LIBSSP
    7.21      bool
    7.22      prompt "Compile libssp"
    7.23 -    default n
    7.24      help
    7.25        libssp is the run-time Stack-Smashing Protection library.
    7.26        
    7.27 @@ -177,7 +174,6 @@
    7.28  config CC_GCC_DISABLE_PCH
    7.29      bool
    7.30      prompt "Do not build PCH"
    7.31 -    default n
    7.32      help
    7.33        Say 'y' here to not use Pre-Compiled Headers in the resulting toolchain.
    7.34        at the expense of speed when compiling C++ code.
     8.1 --- a/config/companion_libs.in	Sun May 29 19:24:41 2011 +0200
     8.2 +++ b/config/companion_libs.in	Tue May 31 16:27:39 2011 +0200
     8.3 @@ -6,47 +6,39 @@
     8.4  
     8.5  config COMPLIBS_NEEDED
     8.6      bool
     8.7 -    default n
     8.8  
     8.9  config GMP_NEEDED
    8.10      bool
    8.11 -    default n
    8.12      select GMP
    8.13      select COMPLIBS_NEEDED
    8.14  
    8.15  config MPFR_NEEDED
    8.16      bool
    8.17 -    default n
    8.18      select MPFR
    8.19      select COMPLIBS_NEEDED
    8.20  
    8.21  config PPL_NEEDED
    8.22      bool
    8.23 -    default n
    8.24      select PPL
    8.25      select COMPLIBS_NEEDED
    8.26  
    8.27  config CLOOG_NEEDED
    8.28      bool
    8.29 -    default n
    8.30      select CLOOG
    8.31      select COMPLIBS_NEEDED
    8.32  
    8.33  config MPC_NEEDED
    8.34      bool
    8.35 -    default n
    8.36      select MPC
    8.37      select COMPLIBS_NEEDED
    8.38  
    8.39  config LIBELF_NEEDED
    8.40      bool
    8.41 -    default n
    8.42      select LIBELF
    8.43      select COMPLIBS_NEEDED
    8.44  
    8.45  config COMPLIBS
    8.46      bool
    8.47 -    default n
    8.48  
    8.49  config GMP
    8.50      bool
    8.51 @@ -112,7 +104,6 @@
    8.52  config COMPLIBS_CHECK
    8.53      bool
    8.54      prompt "Check the companion libraries builds (!!! READ HELP!!!)"
    8.55 -    default n
    8.56      help
    8.57        It is highly recommended to check the newly built companion libraries.
    8.58        Unfortunately, this is a very intensive task, and takes a loooong time.
     9.1 --- a/config/companion_libs/ppl.in	Sun May 29 19:24:41 2011 +0200
     9.2 +++ b/config/companion_libs/ppl.in	Tue May 31 16:27:39 2011 +0200
     9.3 @@ -42,9 +42,7 @@
     9.4  # For PPL 0.11, we need to pull libpwl if configured static
     9.5  config PPL_0_11
     9.6      bool
     9.7 -    default n
     9.8      select PPL_NEEDS_LIBPWL if ! COMPLIBS_SHARED
     9.9  
    9.10  config PPL_NEEDS_LIBPWL
    9.11      bool
    9.12 -    default n
    10.1 --- a/config/config.mk	Sun May 29 19:24:41 2011 +0200
    10.2 +++ b/config/config.mk	Tue May 31 16:27:39 2011 +0200
    10.3 @@ -106,12 +106,11 @@
    10.4  	    file="$(4)/$${entry}.in";                                           \
    10.5  	    _entry=$$(echo "$${entry}" |$(sed) -r -s -e 's/[-.+]/_/g;');        \
    10.6  	    echo "";                                                            \
    10.7 -	    if [ "$(5)" = "Y" ]; then                                                                           \
    10.8 -	      echo "config $(3)_$${_entry}_AVAILABLE";                                                          \
    10.9 -	      echo "    bool";                                                                                  \
   10.10 -	      echo "    default n if ! ( BACKEND_$(3) = \"$${entry}\" || BACKEND_$(3) = \"\" || ! BACKEND )";   \
   10.11 -	      echo "    default y if BACKEND_$(3) = \"$${entry}\" || BACKEND_$(3) = \"\" || ! BACKEND";         \
   10.12 -	    fi;                                                                                                 \
   10.13 +	    if [ "$(5)" = "Y" ]; then                                                                     \
   10.14 +	      echo "config $(3)_$${_entry}_AVAILABLE";                                                    \
   10.15 +	      echo "    bool";                                                                            \
   10.16 +	      echo "    default y if BACKEND_$(3) = \"$${entry}\" || BACKEND_$(3) = \"\" || ! BACKEND";   \
   10.17 +	    fi;                                                                                           \
   10.18  	    echo "if $(3)_$${_entry}";                                          \
   10.19  	    echo "config $(3)";                                                 \
   10.20  	    echo "    default \"$${entry}\" if $(3)_$${_entry}";                \
    11.1 --- a/config/debug/duma.in	Sun May 29 19:24:41 2011 +0200
    11.2 +++ b/config/debug/duma.in	Tue May 31 16:27:39 2011 +0200
    11.3 @@ -15,7 +15,6 @@
    11.4      bool
    11.5      prompt "Build a shared library"
    11.6      default y if SHARED_LIBS
    11.7 -    default n if ! SHARED_LIBS
    11.8  
    11.9  choice
   11.10      bool
    12.1 --- a/config/debug/gdb.in.cross	Sun May 29 19:24:41 2011 +0200
    12.2 +++ b/config/debug/gdb.in.cross	Tue May 31 16:27:39 2011 +0200
    12.3 @@ -16,7 +16,6 @@
    12.4  config GDB_CROSS_STATIC
    12.5      bool
    12.6      prompt "Build a static cross gdb"
    12.7 -    default n
    12.8      help
    12.9        A static cross gdb can be usefull if you debug on a machine that is
   12.10        not the one that is used to compile the toolchain.
    13.1 --- a/config/debug/gdb.in.gdbserver	Sun May 29 19:24:41 2011 +0200
    13.2 +++ b/config/debug/gdb.in.gdbserver	Tue May 31 16:27:39 2011 +0200
    13.3 @@ -3,7 +3,6 @@
    13.4  config GDB_GDBSERVER
    13.5      bool
    13.6      prompt "gdbserver"
    13.7 -    default n
    13.8      depends on ! BARE_METAL
    13.9      help
   13.10        Build and install a gdbserver for the target, to run on the target.
    14.1 --- a/config/debug/gdb.in.native	Sun May 29 19:24:41 2011 +0200
    14.2 +++ b/config/debug/gdb.in.native	Tue May 31 16:27:39 2011 +0200
    14.3 @@ -3,7 +3,6 @@
    14.4  config GDB_NATIVE
    14.5      bool
    14.6      prompt "Native gdb"
    14.7 -    default n
    14.8      depends on ! BARE_METAL
    14.9      depends on ! BACKEND
   14.10      help
   14.11 @@ -13,13 +12,11 @@
   14.12  
   14.13  config GDB_NATIVE_NO_STATIC
   14.14      bool
   14.15 -    default n
   14.16  
   14.17  config GDB_NATIVE_STATIC
   14.18      bool
   14.19      prompt "Build a static native gdb"
   14.20      depends on ! GDB_NATIVE_NO_STATIC
   14.21 -    default n
   14.22      help
   14.23        In case you have trouble with dynamic loading of shared libraries,
   14.24        you will find that a static gdb comes in handy.
    15.1 --- a/config/debug/ltrace.in	Sun May 29 19:24:41 2011 +0200
    15.2 +++ b/config/debug/ltrace.in	Tue May 31 16:27:39 2011 +0200
    15.3 @@ -48,4 +48,3 @@
    15.4  
    15.5  config LTRACE_0_5_3_or_later
    15.6      bool
    15.7 -    default n
    16.1 --- a/config/global/ct-behave.in	Sun May 29 19:24:41 2011 +0200
    16.2 +++ b/config/global/ct-behave.in	Tue May 31 16:27:39 2011 +0200
    16.3 @@ -5,7 +5,6 @@
    16.4  config OBSOLETE
    16.5      bool
    16.6      prompt "Use obsolete features"
    16.7 -    default n
    16.8      help
    16.9        If you set this to Y, you will be able to select obsolete features.
   16.10        
   16.11 @@ -19,7 +18,6 @@
   16.12  config EXPERIMENTAL
   16.13      bool
   16.14      prompt "Try features marked as EXPERIMENTAL"
   16.15 -    default n
   16.16      help
   16.17        If you set this to Y, then you will be able to try very experimental
   16.18        features.
   16.19 @@ -34,7 +32,6 @@
   16.20  config DEBUG_CT
   16.21      bool
   16.22      prompt "Debug crosstool-NG"
   16.23 -    default n
   16.24      depends on ! BACKEND
   16.25      help
   16.26        Say 'y' here to get some options regarding debugging crosstool-NG.
   16.27 @@ -44,7 +41,6 @@
   16.28  config DEBUG_PAUSE_STEPS
   16.29      bool
   16.30      prompt "Pause between every steps"
   16.31 -    default n
   16.32      help
   16.33        Say 'y' if you intend to attend the build, and want to investigate
   16.34        the result of each steps before running the next one.
   16.35 @@ -52,7 +48,6 @@
   16.36  config DEBUG_CT_SAVE_STEPS
   16.37      bool
   16.38      prompt "Save intermediate steps"
   16.39 -    default n
   16.40      help
   16.41        If you say 'y' here, then you will be able to restart crosstool-NG at
   16.42        any step.
   16.43 @@ -80,7 +75,6 @@
   16.44      bool
   16.45      prompt "Do *not* overide LC_MESSAGES (EXPERIMENTAL)"
   16.46      depends on EXPERIMENTAL
   16.47 -    default n
   16.48      help
   16.49        By default, crosstool-NG sets and exports LC_ALL=C so that the
   16.50        build.log file contains english messages, that can be read by
    17.1 --- a/config/global/download.in	Sun May 29 19:24:41 2011 +0200
    17.2 +++ b/config/global/download.in	Tue May 31 16:27:39 2011 +0200
    17.3 @@ -5,7 +5,6 @@
    17.4  config FORBID_DOWNLOAD
    17.5      bool
    17.6      prompt "Forbid downloads"
    17.7 -    default n
    17.8      help
    17.9        Normally, crosstool-NG will try to download missing tarballs (or
   17.10        checkout from CVS/SVN...).
   17.11 @@ -21,7 +20,6 @@
   17.12  config FORCE_DOWNLOAD
   17.13      bool
   17.14      prompt "Force downloads"
   17.15 -    default n
   17.16      help
   17.17        Force downloading tarballs, even if one already exists.
   17.18        
   17.19 @@ -30,7 +28,6 @@
   17.20  config USE_MIRROR
   17.21      bool
   17.22      prompt "Use a mirror"
   17.23 -    default n
   17.24      help
   17.25        If you have a machine on your LAN that mirrors some of the needed
   17.26        tarballs, you can say 'Y' here, and configure adequate values in
   17.27 @@ -45,7 +42,6 @@
   17.28  config PREFER_MIRROR
   17.29      bool
   17.30      prompt "Prefer the mirror"
   17.31 -    default n
   17.32      help
   17.33        Say 'Y' here if you prefer the LAN miror over the upstream sources.
   17.34  
   17.35 @@ -94,7 +90,6 @@
   17.36  config ONLY_DOWNLOAD
   17.37      bool
   17.38      prompt "Stop after downloading tarballs"
   17.39 -    default n
   17.40      help
   17.41        Only download the tarballs. Exit once it done.
   17.42        
    18.1 --- a/config/global/extract.in	Sun May 29 19:24:41 2011 +0200
    18.2 +++ b/config/global/extract.in	Tue May 31 16:27:39 2011 +0200
    18.3 @@ -5,7 +5,6 @@
    18.4  config FORCE_EXTRACT
    18.5      bool
    18.6      prompt "Force extractions"
    18.7 -    default n
    18.8      help
    18.9        Force extraction of already exctracted tarballs.
   18.10        
   18.11 @@ -35,7 +34,6 @@
   18.12  config ONLY_EXTRACT
   18.13      bool
   18.14      prompt "Stop after extracting tarballs"
   18.15 -    default n
   18.16      help
   18.17        Exit after unpacking and patching tarballs.
   18.18        
   18.19 @@ -118,11 +116,9 @@
   18.20  
   18.21  config PATCH_SINGLE
   18.22      bool
   18.23 -    default n
   18.24  
   18.25  config PATCH_USE_LOCAL
   18.26      bool
   18.27 -    default n
   18.28  
   18.29  config LOCAL_PATCH_DIR
   18.30      string
    19.1 --- a/config/global/logging.in	Sun May 29 19:24:41 2011 +0200
    19.2 +++ b/config/global/logging.in	Tue May 31 16:27:39 2011 +0200
    19.3 @@ -59,7 +59,6 @@
    19.4  config LOG_SEE_TOOLS_WARN
    19.5      bool
    19.6      prompt "Warnings from the tools' builds"
    19.7 -    default n
    19.8      depends on ! LOG_ERROR
    19.9      help
   19.10        Treat warnings from the different tools as crosstool-NG warnings.
    20.1 --- a/config/global/paths.in	Sun May 29 19:24:41 2011 +0200
    20.2 +++ b/config/global/paths.in	Tue May 31 16:27:39 2011 +0200
    20.3 @@ -15,7 +15,6 @@
    20.4      prompt "Save new tarballs" if ! BACKEND
    20.5      depends on LOCAL_TARBALLS_DIR != "" || BACKEND
    20.6      default y if BACKEND
    20.7 -    default n if ! BACKEND
    20.8      help
    20.9        If you say 'y' here, new downloaded tarballs will be saved in the
   20.10        directory you entered above.
    21.1 --- a/config/kernel.in	Sun May 29 19:24:41 2011 +0200
    21.2 +++ b/config/kernel.in	Tue May 31 16:27:39 2011 +0200
    21.3 @@ -6,18 +6,15 @@
    21.4  # we have a kernel or not (there might be different bare metal stuff)...
    21.5  config BARE_METAL
    21.6      bool
    21.7 -    default n
    21.8  
    21.9  config MINGW32
   21.10      bool
   21.11 -    default n
   21.12  
   21.13  # Each target OS (aka kernel) that support shared libraries can select
   21.14  # this, so the user can decide whether or not to build a shared library
   21.15  # enabled toolchain
   21.16  config KERNEL_SUPPORTS_SHARED_LIBS
   21.17      bool
   21.18 -    default n
   21.19  
   21.20  config KERNEL
   21.21      string
    22.1 --- a/config/kernel/linux.in	Sun May 29 19:24:41 2011 +0200
    22.2 +++ b/config/kernel/linux.in	Tue May 31 16:27:39 2011 +0200
    22.3 @@ -199,7 +199,6 @@
    22.4  config KERNEL_LINUX_CUSTOM_IS_TARBALL
    22.5      bool
    22.6      prompt "This is a tarball"
    22.7 -    default n
    22.8      help
    22.9        If you say 'n' here, the path above is expected to point to a directory
   22.10        containing readily prepared headers
    23.1 --- a/config/libc.in	Sun May 29 19:24:41 2011 +0200
    23.2 +++ b/config/libc.in	Tue May 31 16:27:39 2011 +0200
    23.3 @@ -23,26 +23,21 @@
    23.4  
    23.5  config LIBC_SUPPORT_THREADS_ANY
    23.6      bool
    23.7 -    default n
    23.8  
    23.9  config LIBC_SUPPORT_NPTL
   23.10      bool
   23.11 -    default n
   23.12      select LIBC_SUPPORT_THREADS_ANY
   23.13  
   23.14  config LIBC_SUPPORT_LINUXTHREADS
   23.15      bool
   23.16 -    default n
   23.17      select LIBC_SUPPORT_THREADS_ANY
   23.18  
   23.19  config LIBC_SUPPORT_WIN32THREADS
   23.20      bool
   23.21 -    default n
   23.22      select LIBC_SUPPORT_THREADS_ANY
   23.23  
   23.24  config LIBC_SUPPORT_THREADS_NONE
   23.25      bool
   23.26 -    default n
   23.27  
   23.28  config THREADS
   23.29      string
    24.1 --- a/config/libc/eglibc.in	Sun May 29 19:24:41 2011 +0200
    24.2 +++ b/config/libc/eglibc.in	Tue May 31 16:27:39 2011 +0200
    24.3 @@ -102,7 +102,6 @@
    24.4      bool
    24.5      prompt "checkout instead of export"
    24.6      default y if LIBC_EGLIBC_V_TRUNK
    24.7 -    default n if ! LIBC_EGLIBC_V_TRUNK
    24.8      help
    24.9        By default, the eglibc download will be an export of the subversion
   24.10        repository. If you say 'y' here, then the repository will instead be
   24.11 @@ -121,7 +120,6 @@
   24.12  config EGLIBC_CUSTOM_CONFIG
   24.13      bool
   24.14      prompt "Use custom configuration file"
   24.15 -    default n
   24.16      help
   24.17        Use a custom configuration file to disable some features in the eglibc
   24.18        library. The configuration file options are described in detail in the
    25.1 --- a/config/libc/glibc-eglibc.in-common	Sun May 29 19:24:41 2011 +0200
    25.2 +++ b/config/libc/glibc-eglibc.in-common	Tue May 31 16:27:39 2011 +0200
    25.3 @@ -63,7 +63,6 @@
    25.4      bool
    25.5      prompt "Enable fortified build (EXPERIMENTAL)"
    25.6      depends on EXPERIMENTAL
    25.7 -    default n
    25.8      help
    25.9        If you say 'y' here, then glibc will be using fortified versions
   25.10        of functions with format arguments (eg. vsyslog, printf...), and
   25.11 @@ -83,7 +82,6 @@
   25.12  config LIBC_DISABLE_VERSIONING
   25.13      bool
   25.14      prompt "Disable symbols versioning"
   25.15 -    default n
   25.16      help
   25.17        Do not include versioning information in the library objects.
   25.18  
   25.19 @@ -102,7 +100,6 @@
   25.20  config LIBC_GLIBC_FORCE_UNWIND
   25.21      bool
   25.22      prompt "Force unwind support (READ HELP!)"
   25.23 -    default n
   25.24      help
   25.25        If your toolchain fails building while building the C library
   25.26        start files, or the complete C library, with a message like:
   25.27 @@ -117,7 +114,6 @@
   25.28  config LIBC_GLIBC_USE_PORTS
   25.29      bool
   25.30      prompt "Use the ports addon"
   25.31 -    default n
   25.32      help
   25.33        The ports addon contains some architecture ports that are not available
   25.34        in the official distribution.
    26.1 --- a/config/libc/mingw.in.2	Sun May 29 19:24:41 2011 +0200
    26.2 +++ b/config/libc/mingw.in.2	Tue May 31 16:27:39 2011 +0200
    26.3 @@ -3,17 +3,14 @@
    26.4  config MINGW_DIRECTX
    26.5      bool
    26.6      prompt "Include DirectX development files"
    26.7 -    default n
    26.8  
    26.9  config MINGW_OPENGL
   26.10      bool
   26.11      prompt "Include OpenGL development files"
   26.12 -    default n
   26.13  
   26.14  config MINGW_PDCURSES
   26.15      bool
   26.16      prompt "Include PDCurses (NCurses library) development files"
   26.17 -    default n
   26.18  
   26.19  choice
   26.20      bool
   26.21 @@ -45,7 +42,6 @@
   26.22  config MINGW_GNURX
   26.23      bool
   26.24      prompt "Include GnuRX (regex library) development files"
   26.25 -    default n
   26.26  
   26.27  choice
   26.28      bool
    27.1 --- a/config/libc/newlib.in.2	Sun May 29 19:24:41 2011 +0200
    27.2 +++ b/config/libc/newlib.in.2	Tue May 31 16:27:39 2011 +0200
    27.3 @@ -3,21 +3,18 @@
    27.4  config LIBC_NEWLIB_IO_C99FMT
    27.5      bool
    27.6      prompt "Enable IOs on C99 formats"
    27.7 -    default n
    27.8      help
    27.9        Enable support for IOs on C99 formats.
   27.10  
   27.11  config LIBC_NEWLIB_IO_LL
   27.12      bool
   27.13      prompt "Enable IOs on long long"
   27.14 -    default n
   27.15      help
   27.16        Enable support for IOs on long long integers.
   27.17  
   27.18  config LIBC_NEWLIB_IO_FLOAT
   27.19      bool
   27.20      prompt "Enable IOs on floats and doubles"
   27.21 -    default n
   27.22      help
   27.23        Enable support for IOs on floating point
   27.24        values (float and double).
   27.25 @@ -25,7 +22,6 @@
   27.26  config LIBC_NEWLIB_IO_LDBL
   27.27      bool
   27.28      prompt "Enable IOs on long doubles"
   27.29 -    default n
   27.30      depends on LIBC_NEWLIB_IO_FLOAT
   27.31      help
   27.32        Enable support for IOs on long doubles.
    28.1 --- a/config/libc/uClibc.in	Sun May 29 19:24:41 2011 +0200
    28.2 +++ b/config/libc/uClibc.in	Tue May 31 16:27:39 2011 +0200
    28.3 @@ -87,12 +87,10 @@
    28.4  
    28.5  config LIBC_UCLIBC_0_9_30_or_later
    28.6      bool
    28.7 -    default n
    28.8      select LIBC_UCLIBC_PARALLEL
    28.9  
   28.10  config LIBC_UCLIBC_PARALLEL
   28.11      bool
   28.12 -    default n
   28.13  
   28.14  choice
   28.15      bool
    29.1 --- a/config/libc/uClibc.in.2	Sun May 29 19:24:41 2011 +0200
    29.2 +++ b/config/libc/uClibc.in.2	Tue May 31 16:27:39 2011 +0200
    29.3 @@ -41,7 +41,6 @@
    29.4      bool
    29.5      select LIBC_UCLIBC_WCHAR
    29.6      prompt "Add support for locales"
    29.7 -    default n
    29.8      help
    29.9        Say y if you want uClibc to support localisation.
   29.10  
   29.11 @@ -62,7 +61,6 @@
   29.12  config LIBC_UCLIBC_WCHAR
   29.13      bool
   29.14      prompt "Add support for WCHAR"
   29.15 -    default n
   29.16      help
   29.17        Say y if you want uClibc to support WCHAR.
   29.18  
    30.1 --- a/config/target.in	Sun May 29 19:24:41 2011 +0200
    30.2 +++ b/config/target.in	Tue May 31 16:27:39 2011 +0200
    30.3 @@ -44,16 +44,13 @@
    30.4  
    30.5  config ARCH_SUPPORTS_BOTH_MMU
    30.6      bool
    30.7 -    default n
    30.8  
    30.9  config ARCH_DEFAULT_HAS_MMU
   30.10      bool
   30.11 -    default n
   30.12  
   30.13  config ARCH_USE_MMU
   30.14      bool
   30.15      prompt "Use the MMU" if ARCH_SUPPORTS_BOTH_MMU
   30.16 -    default n if ! ARCH_DEFAULT_HAS_MMU
   30.17      default y if ARCH_DEFAULT_HAS_MMU
   30.18      help
   30.19        If your architecture has an MMU and you want to use it,
   30.20 @@ -69,15 +66,12 @@
   30.21  #--------------------------------------
   30.22  config ARCH_SUPPORTS_BOTH_ENDIAN
   30.23      bool
   30.24 -    default n
   30.25  
   30.26  config ARCH_DEFAULT_BE
   30.27      bool
   30.28 -    default n
   30.29  
   30.30  config ARCH_DEFAULT_LE
   30.31      bool
   30.32 -    default n
   30.33  
   30.34  choice
   30.35      bool
   30.36 @@ -99,19 +93,15 @@
   30.37  #--------------------------------------
   30.38  config ARCH_SUPPORTS_32
   30.39      bool
   30.40 -    default n
   30.41  
   30.42  config ARCH_SUPPORTS_64
   30.43      bool
   30.44 -    default n
   30.45  
   30.46  config ARCH_DEFAULT_32
   30.47      bool
   30.48 -    default n
   30.49  
   30.50  config ARCH_DEFAULT_64
   30.51      bool
   30.52 -    default n
   30.53  
   30.54  config ARCH_BITNESS
   30.55      int
   30.56 @@ -141,23 +131,18 @@
   30.57  
   30.58  config ARCH_SUPPORT_ARCH
   30.59      bool
   30.60 -    default n
   30.61  
   30.62  config ARCH_SUPPORT_ABI
   30.63      bool
   30.64 -    default n
   30.65  
   30.66  config ARCH_SUPPORT_CPU
   30.67      bool
   30.68 -    default n
   30.69  
   30.70  config ARCH_SUPPORT_TUNE
   30.71      bool
   30.72 -    default n
   30.73  
   30.74  config ARCH_SUPPORT_FPU
   30.75      bool
   30.76 -    default n
   30.77  
   30.78  config ARCH_ARCH
   30.79      string
    31.1 --- a/config/test_suite.in	Sun May 29 19:24:41 2011 +0200
    31.2 +++ b/config/test_suite.in	Tue May 31 16:27:39 2011 +0200
    31.3 @@ -6,13 +6,11 @@
    31.4  
    31.5  config TEST_SUITE
    31.6      bool
    31.7 -    default n
    31.8  
    31.9  config TEST_SUITE_GCC
   31.10      bool
   31.11      prompt "GCC test suite"
   31.12      depends on EXPERIMENTAL
   31.13 -    default n
   31.14      select TEST_SUITE
   31.15      help
   31.16        Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
   31.17 @@ -22,7 +20,7 @@
   31.18  
   31.19        For some tests a network enabled target with ssh server is required.
   31.20  
   31.21 -      A helper Makefile is provided for running the tests - please see the included 
   31.22 +      A helper Makefile is provided for running the tests - please see the included
   31.23        README for information on how to run the test suite.
   31.24  
   31.25  endmenu
    32.1 --- a/config/toolchain.in	Sun May 29 19:24:41 2011 +0200
    32.2 +++ b/config/toolchain.in	Tue May 31 16:27:39 2011 +0200
    32.3 @@ -5,7 +5,6 @@
    32.4  config FORCE_SYSROOT
    32.5      bool
    32.6      default y if !OBSOLETE
    32.7 -    default n if OBSOLETE
    32.8      select USE_SYSROOT
    32.9  
   32.10  config USE_SYSROOT
   32.11 @@ -51,7 +50,6 @@
   32.12      bool
   32.13      prompt "Build Static Toolchain (EXPERIMENTAL)"
   32.14      depends on EXPERIMENTAL
   32.15 -    default n
   32.16      help
   32.17        Build static host binaries.
   32.18        
   32.19 @@ -169,7 +167,7 @@
   32.20  
   32.21  comment "Build system"
   32.22  
   32.23 -config BUILD 
   32.24 +config BUILD
   32.25      string
   32.26      prompt "|  Tuple        (READ HELP!)"
   32.27      default ""