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 /target | |
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 'target')
5 files changed, 0 insertions, 11 deletions
diff --git a/target/linux/at91/image/Config.in b/target/linux/at91/image/Config.in index 596accaa49..ae559edca1 100644 --- a/target/linux/at91/image/Config.in +++ b/target/linux/at91/image/Config.in @@ -1,10 +1,8 @@ config AT91_DFBOOT bool "Build dataflashboot loader" depends on TARGET_at91 - default n config FLEXIBITY_ROOT bool "Build Flexibity RootFS (with embedded kernel)" depends on TARGET_at91_flexibity - default n diff --git a/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/Kconfig b/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/Kconfig index 4df2d21e34..dfcedcf70e 100644 --- a/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/Kconfig +++ b/target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/Kconfig @@ -10,14 +10,12 @@ if AG71XX config AG71XX_DEBUG bool "Atheros AR71xx built-in ethernet driver debugging" - default n help Atheros AR71xx built-in ethernet driver debugging messages. config AG71XX_DEBUG_FS bool "Atheros AR71xx built-in ethernet driver debugfs support" depends on DEBUG_FS - default n help Say Y, if you need access to various statistics provided by the ag71xx driver. diff --git a/target/linux/generic/files/drivers/mtd/mtdsplit/Kconfig b/target/linux/generic/files/drivers/mtd/mtdsplit/Kconfig index f929c6153e..f1864d8fdb 100644 --- a/target/linux/generic/files/drivers/mtd/mtdsplit/Kconfig +++ b/target/linux/generic/files/drivers/mtd/mtdsplit/Kconfig @@ -12,7 +12,6 @@ config MTD_SPLIT_SQUASHFS_ROOT bool "Squashfs based root partition parser" depends on MTD_SPLIT_SUPPORT select MTD_SPLIT - default n help This provides a parsing function which allows to detect the offset and size of the unused portion of a rootfs partition diff --git a/target/linux/generic/files/drivers/platform/mikrotik/Kconfig b/target/linux/generic/files/drivers/platform/mikrotik/Kconfig index 7499ba1e1c..1dc027815a 100644 --- a/target/linux/generic/files/drivers/platform/mikrotik/Kconfig +++ b/target/linux/generic/files/drivers/platform/mikrotik/Kconfig @@ -1,6 +1,5 @@ menuconfig MIKROTIK bool "Platform support for MikroTik RouterBoard virtual devices" - default n help Say Y here to get to see options for the MikroTik RouterBoard platform. This option alone does not add any kernel code. diff --git a/target/sdk/files/Config.in b/target/sdk/files/Config.in index 12c0f6a624..7926e12426 100644 --- a/target/sdk/files/Config.in +++ b/target/sdk/files/Config.in @@ -23,7 +23,6 @@ menu "Global build settings" config DEBUG bool prompt "Compile packages with debugging info" - default n help Adds -g3 to the CFLAGS. @@ -69,7 +68,6 @@ menu "Advanced configuration options (for developers)" config BROKEN bool "Show broken packages" - default n config DOWNLOAD_FOLDER string "Download folder" @@ -101,19 +99,16 @@ menu "Advanced configuration options (for developers)" config CCACHE bool "Use ccache" - default n help Compiler cache; see https://ccache.samba.org/ config BUILD_LOG bool "Enable log files during build process" - default n help If enabled, log files will be written to the ./log directory. config SRC_TREE_OVERRIDE bool "Enable package source tree override" - default n help If enabled, you can force a package to use a git tree as source code instead of the normal tarball. Create a symlink 'git-src' |