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/global | |
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/global')
-rw-r--r-- | config/global/ct-behave.in | 6 | ||||
-rw-r--r-- | config/global/download.in | 5 | ||||
-rw-r--r-- | config/global/extract.in | 4 | ||||
-rw-r--r-- | config/global/logging.in | 1 | ||||
-rw-r--r-- | config/global/paths.in | 1 |
5 files changed, 0 insertions, 17 deletions
diff --git a/config/global/ct-behave.in b/config/global/ct-behave.in index 0b2e3107..bbe4324f 100644 --- a/config/global/ct-behave.in +++ b/config/global/ct-behave.in @@ -5,7 +5,6 @@ comment "crosstool-NG behavior" config OBSOLETE bool prompt "Use obsolete features" - default n help If you set this to Y, you will be able to select obsolete features. @@ -19,7 +18,6 @@ config OBSOLETE config EXPERIMENTAL bool prompt "Try features marked as EXPERIMENTAL" - default n help If you set this to Y, then you will be able to try very experimental features. @@ -34,7 +32,6 @@ config EXPERIMENTAL config DEBUG_CT bool prompt "Debug crosstool-NG" - default n depends on ! BACKEND help Say 'y' here to get some options regarding debugging crosstool-NG. @@ -44,7 +41,6 @@ if DEBUG_CT config DEBUG_PAUSE_STEPS bool prompt "Pause between every steps" - default n help Say 'y' if you intend to attend the build, and want to investigate the result of each steps before running the next one. @@ -52,7 +48,6 @@ config DEBUG_PAUSE_STEPS config DEBUG_CT_SAVE_STEPS bool prompt "Save intermediate steps" - default n help If you say 'y' here, then you will be able to restart crosstool-NG at any step. @@ -80,7 +75,6 @@ config NO_OVERIDE_LC_MESSAGES bool prompt "Do *not* overide LC_MESSAGES (EXPERIMENTAL)" depends on EXPERIMENTAL - default n help By default, crosstool-NG sets and exports LC_ALL=C so that the build.log file contains english messages, that can be read by diff --git a/config/global/download.in b/config/global/download.in index 02954f07..d128866d 100644 --- a/config/global/download.in +++ b/config/global/download.in @@ -5,7 +5,6 @@ comment "Downloading" config FORBID_DOWNLOAD bool prompt "Forbid downloads" - default n help Normally, crosstool-NG will try to download missing tarballs (or checkout from CVS/SVN...). @@ -21,7 +20,6 @@ if ! FORBID_DOWNLOAD config FORCE_DOWNLOAD bool prompt "Force downloads" - default n help Force downloading tarballs, even if one already exists. @@ -30,7 +28,6 @@ config FORCE_DOWNLOAD config USE_MIRROR bool prompt "Use a mirror" - default n help If you have a machine on your LAN that mirrors some of the needed tarballs, you can say 'Y' here, and configure adequate values in @@ -45,7 +42,6 @@ if USE_MIRROR config PREFER_MIRROR bool prompt "Prefer the mirror" - default n help Say 'Y' here if you prefer the LAN miror over the upstream sources. @@ -94,7 +90,6 @@ config CONNECT_TIMEOUT config ONLY_DOWNLOAD bool prompt "Stop after downloading tarballs" - default n help Only download the tarballs. Exit once it done. diff --git a/config/global/extract.in b/config/global/extract.in index b92551e8..3f45ec02 100644 --- a/config/global/extract.in +++ b/config/global/extract.in @@ -5,7 +5,6 @@ comment "Extracting" config FORCE_EXTRACT bool prompt "Force extractions" - default n help Force extraction of already exctracted tarballs. @@ -35,7 +34,6 @@ config OVERIDE_CONFIG_GUESS_SUB config ONLY_EXTRACT bool prompt "Stop after extracting tarballs" - default n help Exit after unpacking and patching tarballs. @@ -118,11 +116,9 @@ config PATCH_ORDER config PATCH_SINGLE bool - default n config PATCH_USE_LOCAL bool - default n config LOCAL_PATCH_DIR string diff --git a/config/global/logging.in b/config/global/logging.in index c31833d2..0c77e88a 100644 --- a/config/global/logging.in +++ b/config/global/logging.in @@ -59,7 +59,6 @@ config LOG_LEVEL_MAX config LOG_SEE_TOOLS_WARN bool prompt "Warnings from the tools' builds" - default n depends on ! LOG_ERROR help Treat warnings from the different tools as crosstool-NG warnings. diff --git a/config/global/paths.in b/config/global/paths.in index fcb6360f..2a1fa677 100644 --- a/config/global/paths.in +++ b/config/global/paths.in @@ -15,7 +15,6 @@ config SAVE_TARBALLS prompt "Save new tarballs" if ! BACKEND depends on LOCAL_TARBALLS_DIR != "" || BACKEND default y if BACKEND - default n if ! BACKEND help If you say 'y' here, new downloaded tarballs will be saved in the directory you entered above. |