2018-07-13 01:31:50 +00:00
|
|
|
if PACKAGE_busybox
|
|
|
|
|
|
|
|
|
|
|
|
config BUSYBOX_CUSTOM
|
|
|
|
bool "Customize busybox options"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enabling this allows full customization of busybox settings.
|
|
|
|
Note that there are many options here that can result in a build
|
|
|
|
that doesn't work properly. Enabling customization will mark your
|
|
|
|
build as "tainted" for the purpose of bug reports.
|
|
|
|
See the variables written to /etc/openwrt_release
|
|
|
|
|
|
|
|
Unless you know what you are doing, you should leave this as 'n'
|
|
|
|
|
|
|
|
if SYSTEM_INIT_PROCD
|
|
|
|
if USE_SELINUX && PACKAGE_selinux
|
|
|
|
source "Config-selinux-default.in"
|
|
|
|
endif
|
|
|
|
source "Config-defaults.in"
|
|
|
|
endif
|
|
|
|
|
|
|
|
if SYSTEM_INIT_BUSYBOX
|
2018-12-13 10:48:25 +00:00
|
|
|
if USE_SELINUX && PACKAGE_selinux
|
|
|
|
source "Config-busybox-selinux-default.in"
|
|
|
|
endif
|
2018-07-13 01:31:50 +00:00
|
|
|
source "Config-busybox-init-defaults.in"
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUSYBOX_CUSTOM
|
|
|
|
source "config/Config.in"
|
|
|
|
endif
|
|
|
|
|
|
|
|
config BUSYBOX_USE_LIBRPC
|
|
|
|
bool
|
|
|
|
default y if BUSYBOX_CUSTOM && BUSYBOX_CONFIG_FEATURE_HAVE_RPC
|
|
|
|
default y if !BUSYBOX_CUSTOM && BUSYBOX_DEFAULT_FEATURE_HAVE_RPC
|
|
|
|
|
|
|
|
endif
|