diff options
author | Tony Butler <spudz76@gmail.com> | 2022-12-25 15:11:48 -0800 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-02-03 12:50:15 +0100 |
commit | 8bc72ea7be3976711dacc09f0fdab061d6e5152a (patch) | |
tree | 5c0da0f70b22d7737f31d62e72a466a0f19667ed /config/Config-build.in | |
parent | fcde517d35c8591cbb578b1a7a49a0446b1ac646 (diff) | |
download | upstream-8bc72ea7be3976711dacc09f0fdab061d6e5152a.tar.gz upstream-8bc72ea7be3976711dacc09f0fdab061d6e5152a.tar.bz2 upstream-8bc72ea7be3976711dacc09f0fdab061d6e5152a.zip |
treewide: strip useless `default n` Kconfig lines
Kconfig docs say:
> The default value deliberately defaults to 'n' in order to avoid
> bloating the build.
Apply this rule everywhere, to avoid more cloning of bad examples
Signed-off-by: Tony Butler <spudz76@gmail.com>
Diffstat (limited to 'config/Config-build.in')
-rw-r--r-- | config/Config-build.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/config/Config-build.in b/config/Config-build.in index c2303637cb..8c81ef654c 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -5,7 +5,6 @@ config EXPERIMENTAL bool "Enable experimental features by default" - default n help Set this option to build with latest bleeding edge features which may or may not work as expected. @@ -42,7 +41,6 @@ menu "Global build settings" config BUILDBOT bool "Set build defaults for automatic builds (e.g. via buildbot)" - default n help This option changes several defaults to be more suitable for automatic builds. This includes the following changes: @@ -75,10 +73,8 @@ menu "Global build settings" config DISPLAY_SUPPORT bool "Show packages that require graphics support (local or remote)" - default n config BUILD_PATENTED - default n bool "Compile with support for patented functionality" help When this option is disabled, software which provides patented functionality @@ -86,7 +82,6 @@ menu "Global build settings" functionality, this optional support will get disabled for this package. config BUILD_NLS - default n bool "Compile with full language support" help When this option is enabled, packages are built with the full versions of @@ -100,7 +95,6 @@ menu "Global build settings" config CLEAN_IPKG bool prompt "Remove ipkg/opkg status data files in final images" - default n help This removes all ipkg/opkg status data files from the target directory before building the root filesystem. @@ -108,14 +102,12 @@ menu "Global build settings" config IPK_FILES_CHECKSUMS bool prompt "Record files checksums in package metadata" - default n help This makes file checksums part of package metadata. It increases size but provides you with pkg_check command to check for flash corruptions. config INCLUDE_CONFIG bool "Include build configuration in firmware" if DEVEL - default n help If enabled, buildinfo files will be stored in /etc/build.* of firmware. @@ -149,7 +141,6 @@ menu "Global build settings" config DEBUG bool prompt "Compile packages with debugging info" - default n help Adds -g3 to the CFLAGS. |