1 config BR2_PACKAGE_BUSYBOX
5 The Swiss Army Knife of embedded Linux. It slices, it dices, it
10 Most people will answer Y.
12 if BR2_PACKAGE_BUSYBOX
14 config BR2_PACKAGE_BUSYBOX_CONFIG
15 string "BusyBox configuration file to use?"
16 default "package/busybox/busybox.config"
18 Some people may wish to use their own modified BusyBox configuration
19 file, and will specify their config file location with this option.
21 Most people will just use the default BusyBox configuration file.
23 config BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES
24 string "Additional BusyBox configuration fragment files"
26 A space-separated list of configuration fragment files,
27 that will be merged to the main BusyBox configuration file.
29 config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
30 bool "Show packages that are also provided by busybox"
32 Show packages in menuconfig that are potentially also provided
35 config BR2_PACKAGE_BUSYBOX_SELINUX
36 select BR2_PACKAGE_LIBSELINUX
37 depends on BR2_TOOLCHAIN_HAS_THREADS
38 depends on !BR2_STATIC_LIBS
39 depends on BR2_TOOLCHAIN_USES_GLIBC
41 bool "Enable SELinux support"
43 Enable SELinux support in BusyBox. Please note that
44 depending on your BusyBox configuration and the SELinux
45 policy implementation, you may want to also enable
46 BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES.
48 For instance, if your BusyBox configuration only uses a
49 couple of minor BusyBox features, such as simple command
50 line utilities, the symlinked version of BusyBox can be used
51 to save space. If BusyBox provides more features, such as
52 crond, then individual binaries have to be enabled for the
53 SELinux type transitions to occur properly.
55 config BR2_PACKAGE_BUSYBOX_WATCHDOG
56 bool "Install the watchdog daemon startup script"
58 Install the watchdog daemon startup script,
59 that just start at the boot the busybox watchdog daemon.
61 if BR2_PACKAGE_BUSYBOX_WATCHDOG
63 config BR2_PACKAGE_BUSYBOX_WATCHDOG_PERIOD
64 string "Delay between reset"
67 Select the number of seconds between each
68 reset of the watchdog (default 5)
70 Use ms suffix to specify milliseconds (e.g. 500ms)
76 if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
78 # add dummy config so the stuff with busybox alternatives are shown
79 # when busybox is disabled
80 config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS