Config.in 512 B

1234567891011121314151617181920212223242526272829
  1. if PACKAGE_busybox
  2. config BUSYBOX_CONFIG_NOMMU
  3. bool
  4. depends NOMMU
  5. default y if NOMMU
  6. deselect BUSYBOX_CONFIG_ASH
  7. deselect BUSYBOX_CONFIG_FEATURE_SH_IS_ASH
  8. deselect BUSYBOX_CONFIG_LOCK
  9. config CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_HUSH
  10. bool
  11. default y if NOMMU
  12. default n if !NOMMU
  13. config BUSYBOX_CONFIG_HUSH
  14. bool
  15. default y if NOMMU
  16. default n if !NOMMU
  17. config BUSYBOX_USE_LIBRPC
  18. bool
  19. depends USE_UCLIBC
  20. default y if BUSYBOX_CONFIG_FEATURE_HAVE_RPC
  21. source "package/busybox/config/Config.in"
  22. endif