aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'package/utils/busybox/Config.in')
-rw-r--r--package/utils/busybox/Config.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/utils/busybox/Config.in b/package/utils/busybox/Config.in
new file mode 100644
index 0000000..917e714
--- /dev/null
+++ b/package/utils/busybox/Config.in
@@ -0,0 +1,26 @@
+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'
+
+ source "Config-defaults.in"
+
+ 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