1
0

Config.in 774 B

1234567891011121314151617181920212223242526
  1. if PACKAGE_busybox
  2. config BUSYBOX_CUSTOM
  3. bool "Customize busybox options"
  4. default n
  5. help
  6. Enabling this allows full customization of busybox settings.
  7. Note that there are many options here that can result in a build
  8. that doesn't work properly. Enabling customization will mark your
  9. build as "tainted" for the purpose of bug reports.
  10. See the variables written to /etc/openwrt_release
  11. Unless you know what you are doing, you should leave this as 'n'
  12. source "Config-defaults.in"
  13. if BUSYBOX_CUSTOM
  14. source "config/Config.in"
  15. endif
  16. config BUSYBOX_USE_LIBRPC
  17. bool
  18. default y if BUSYBOX_CUSTOM && BUSYBOX_CONFIG_FEATURE_HAVE_RPC
  19. default y if !BUSYBOX_CUSTOM && BUSYBOX_DEFAULT_FEATURE_HAVE_RPC
  20. endif