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