openwrtv3/target/sdk/files/Config.in
Daniel Dickinson d79f8909c1 sdk: Allow to change ALL* package settings in SDK
It is desirable to be able to use ./scripts/feeds install -a
when in the SDK without being forced to build a great number
of packages that are not actually wanted.

We therefore add the option of changing the various ALL package
build options so that we can default to packages not being built
unless we select them.

Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
2016-05-24 13:30:58 +02:00

23 lines
400 B
Text

menu "Global build settings"
config ALL_NONSHARED
bool "Select all target specific packages by default"
default ALL
config ALL_KMODS
bool "Select all kernel module packages by default"
default ALL
config ALL
bool "Select all userspace packages by default"
default y
endmenu
config MODULES
bool
default y
option modules
source "Config-build.in"
source "tmp/.config-package.in"