package/bullet: bump to version 2.85.1
[buildroot-gz.git] / package / busybox / Config.in
blob7ef3f0eda83b33e993e3019bbceb2ac788424165
1 config BR2_PACKAGE_BUSYBOX
2         bool "BusyBox"
3         default y
4         help
5           The Swiss Army Knife of embedded Linux. It slices, it dices, it
6           makes Julian Fries.
8           http://busybox.net/
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"
17         help
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"
25         help
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"
33         help
34           Show packages in menuconfig that are potentially also provided
35           by busybox.
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
42         depends on !BR2_arc
43         bool "Enable SELinux support"
44         help
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"
59         help
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"
67         default "5"
68         help
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)
74 endif
76 endif
78 if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
80 # This option is not an option of Busybox, it can be selected even if
81 # Busybox is not enabled. This dummy option ensures that packages that
82 # depend on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS are visible when Busybox
83 # is disabled.
84 config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
85         default y
86 endif