2004-10-09 03:06:03 +02:00
|
|
|
config BR2_PACKAGE_BUSYBOX
|
2005-04-12 22:32:45 +02:00
|
|
|
bool "BusyBox"
|
2004-10-09 03:06:03 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
The Swiss Army Knife of embedded Linux. It slices, it dices, it
|
|
|
|
makes Julian Fries.
|
|
|
|
|
2004-12-26 08:16:38 +01:00
|
|
|
http://busybox.net/
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
Most people will answer Y.
|
|
|
|
|
2010-04-02 12:27:21 +02:00
|
|
|
if BR2_PACKAGE_BUSYBOX
|
|
|
|
|
2006-12-13 07:58:14 +01:00
|
|
|
choice
|
|
|
|
prompt "BusyBox Version"
|
2012-04-26 02:15:23 +02:00
|
|
|
default BR2_BUSYBOX_VERSION_1_20_X
|
2004-10-09 20:00:34 +02:00
|
|
|
help
|
2006-12-13 07:58:14 +01:00
|
|
|
Select the version of BusyBox you wish to use.
|
|
|
|
|
2011-09-06 15:36:53 +02:00
|
|
|
config BR2_BUSYBOX_VERSION_1_19_X
|
|
|
|
bool "BusyBox 1.19.x"
|
|
|
|
|
2012-04-26 02:15:23 +02:00
|
|
|
config BR2_BUSYBOX_VERSION_1_20_X
|
|
|
|
bool "BusyBox 1.20.x"
|
|
|
|
|
2006-12-13 07:58:14 +01:00
|
|
|
config BR2_PACKAGE_BUSYBOX_SNAPSHOT
|
|
|
|
bool "daily snapshot"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2007-03-20 10:51:37 +01:00
|
|
|
config BR2_BUSYBOX_VERSION
|
|
|
|
string
|
2012-02-14 10:51:12 +01:00
|
|
|
default "1.19.4" if BR2_BUSYBOX_VERSION_1_19_X
|
2012-07-02 09:04:44 +02:00
|
|
|
default "1.20.2" if BR2_BUSYBOX_VERSION_1_20_X
|
2005-04-12 22:32:45 +02:00
|
|
|
|
|
|
|
config BR2_PACKAGE_BUSYBOX_CONFIG
|
|
|
|
string "BusyBox configuration file to use?"
|
2012-04-26 02:15:23 +02:00
|
|
|
default "package/busybox/busybox-1.20.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
|
2011-09-06 15:36:53 +02:00
|
|
|
default "package/busybox/busybox-1.19.x.config" if BR2_BUSYBOX_VERSION_1_19_X
|
2012-04-26 02:15:23 +02:00
|
|
|
default "package/busybox/busybox-1.20.x.config" if BR2_BUSYBOX_VERSION_1_20_X
|
2005-04-12 22:32:45 +02:00
|
|
|
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.
|
2007-01-17 12:48:11 +01:00
|
|
|
|
2009-10-15 10:15:47 +02:00
|
|
|
config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
2011-07-27 21:08:21 +02:00
|
|
|
bool "Show packages that are also provided by busybox"
|
2007-09-25 09:55:45 +02:00
|
|
|
help
|
2009-10-15 10:15:47 +02:00
|
|
|
Show packages in menuconfig that are potentially also provided
|
2007-09-25 09:55:45 +02:00
|
|
|
by busybox.
|
|
|
|
|
2012-05-04 04:02:13 +02:00
|
|
|
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
|
|
|
|
int "Delay between reset"
|
|
|
|
default "5"
|
|
|
|
help
|
|
|
|
Select the number of seconds between each
|
|
|
|
reset of the watchdog (default 5)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2010-04-02 12:27:21 +02:00
|
|
|
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
|