1config 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 11 http://tiswww.case.edu/php/chet/bash/bashtop.html 12 13if BR2_PACKAGE_BASH 14 15config BR2_PACKAGE_BASH_LOADABLE_EXAMPLES 16 bool "loadable examples" 17 depends on !BR2_STATIC_LIBS 18 help 19 This option will enable the installation of the "loadable" 20 examples, which are dynamically loadable extension providing 21 additional built-ins commands to bash. There are typically 22 not needed as they are provided as regular, external 23 commands. 24 25endif 26