b18dca0df8
This commit removes the version selection for the busybox package. Busybox is very well maintained, and bugs are typically fixed in a timely fashion. Moreover, regressions are fairly unlikely in this very stable and well-tested tool. Therefore, there isn't a very compelling reason to have a version selection for Busybox since we don't accept such a version selection for the vast majority of other packages, unless there is a strong reason to do so. Consequently, this commit: * Removes the 1.19.4, 1.20.2 and 1.21.1 Busybox versions, patches and default configuration file. * Moves the 1.22.1 patches from package/busybox/1.22.1 to just package/busybox/ like all other packages. * Renames the default 1.22.1 configuration file to just busybox.config. * Adapts the busybox.mk makefile to encode the current version to use. * Adds appropriate options to Config.in.legacy. However, even though the BR2_BUSYBOX_VERSION_1_22_X is removed, we don't add a Config.in.legacy option for it, since it would cause a legacy warning for virtually *all* users as most people are currently using 1.22.x. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_BUSYBOX
|
|
bool "BusyBox"
|
|
default y
|
|
help
|
|
The Swiss Army Knife of embedded Linux. It slices, it dices, it
|
|
makes Julian Fries.
|
|
|
|
http://busybox.net/
|
|
|
|
Most people will answer Y.
|
|
|
|
if BR2_PACKAGE_BUSYBOX
|
|
|
|
config BR2_PACKAGE_BUSYBOX_CONFIG
|
|
string "BusyBox configuration file to use?"
|
|
default "package/busybox/busybox.config"
|
|
help
|
|
Some people may wish to use their own modified BusyBox configuration
|
|
file, and will specify their config file location with this option.
|
|
|
|
Most people will just use the default BusyBox configuration file.
|
|
|
|
config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
bool "Show packages that are also provided by busybox"
|
|
help
|
|
Show packages in menuconfig that are potentially also provided
|
|
by busybox.
|
|
|
|
config BR2_PACKAGE_BUSYBOX_WATCHDOG
|
|
bool "Install the watchdog daemon startup script"
|
|
help
|
|
Install the watchdog daemon startup script,
|
|
that just start at the boot the busybox watchdog daemon.
|
|
|
|
if BR2_PACKAGE_BUSYBOX_WATCHDOG
|
|
|
|
config BR2_PACKAGE_BUSYBOX_WATCHDOG_PERIOD
|
|
string "Delay between reset"
|
|
default "5"
|
|
help
|
|
Select the number of seconds between each
|
|
reset of the watchdog (default 5)
|
|
|
|
Use ms suffix to specify milliseconds (e.g. 500ms)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if !BR2_PACKAGE_BUSYBOX # kconfig doesn't support else
|
|
|
|
# add dummy config so the stuff with busybox alternatives are shown
|
|
# when busybox is disabled
|
|
config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
default y
|
|
endif
|