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 # This option is not an option of Busybox, it can be selected even
30 # if Busybox is not enabled.
31 config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
32 bool "Show packages that are also provided by busybox"
34 Show packages in menuconfig that are potentially also provided
37 config BR2_PACKAGE_BUSYBOX_SELINUX
38 select BR2_PACKAGE_LIBSELINUX
39 depends on BR2_TOOLCHAIN_HAS_THREADS
40 depends on !BR2_STATIC_LIBS
41 depends on BR2_TOOLCHAIN_USES_GLIBC
43 bool "Enable SELinux support"
45 Enable SELinux support in BusyBox. Please note that
46 depending on your BusyBox configuration and the SELinux
47 policy implementation, you may want to also enable
48 BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES.
50 For instance, if your BusyBox configuration only uses a
51 couple of minor BusyBox features, such as simple command
52 line utilities, the symlinked version of BusyBox can be used
53 to save space. If BusyBox provides more features, such as
54 crond, then individual binaries have to be enabled for the
55 SELinux type transitions to occur properly.
57 config BR2_PACKAGE_BUSYBOX_WATCHDOG
58 bool "Install the watchdog daemon startup script"
60 Install the watchdog daemon startup script,
61 that just start at the boot the busybox watchdog daemon.
63 if BR2_PACKAGE_BUSYBOX_WATCHDOG
65 config BR2_PACKAGE_BUSYBOX_WATCHDOG_PERIOD
66 string "Delay between reset"
69 Select the number of seconds between each
70 reset of the watchdog (default 5)
72 Use ms suffix to specify milliseconds (e.g. 500ms)
78 if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
80 comment "You may need to enable other packages to get a working system"
81 comment "You better know what you're doing!"
83 # This option is not an option of Busybox, it can be selected even if
84 # Busybox is not enabled. This dummy option ensures that packages that
85 # depend on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS are visible when Busybox
87 config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS