Config.in 666 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_BASH
  2. bool "bash"
  3. # uses fork()
  4. depends on BR2_USE_MMU
  5. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  6. select BR2_PACKAGE_NCURSES
  7. select BR2_PACKAGE_READLINE
  8. help
  9. The standard GNU Bourne again shell.
  10. http://tiswww.case.edu/php/chet/bash/bashtop.html
  11. if BR2_PACKAGE_BASH
  12. config BR2_PACKAGE_BASH_LOADABLE_EXAMPLES
  13. bool "loadable examples"
  14. depends on !BR2_STATIC_LIBS
  15. help
  16. This option will enable the installation of the "loadable"
  17. examples, which are dynamically loadable extension providing
  18. additional built-ins commands to bash. There are typically
  19. not needed as they are provided as regular, external
  20. commands.
  21. endif