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.
|
|
|
|
|
2006-12-13 07:58:14 +01:00
|
|
|
choice
|
|
|
|
prompt "BusyBox Version"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_PACKAGE_BUSYBOX
|
2010-01-26 08:36:28 +01:00
|
|
|
default BR2_BUSYBOX_VERSION_1_16_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.
|
|
|
|
|
2008-08-21 07:08:53 +02:00
|
|
|
config BR2_BUSYBOX_VERSION_1_12_X
|
|
|
|
bool "BusyBox 1.12.x"
|
2009-04-15 15:42:03 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2008-11-13 17:32:56 +01:00
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_13_X
|
|
|
|
bool "BusyBox 1.13.x"
|
2009-09-01 13:25:57 +02:00
|
|
|
depends on BR2_RECENT
|
2009-04-15 15:42:03 +02:00
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_14_X
|
|
|
|
bool "BusyBox 1.14.x"
|
2010-01-26 08:36:28 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2009-09-01 13:25:57 +02:00
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_15_X
|
|
|
|
bool "BusyBox 1.15.x"
|
2010-01-26 08:36:28 +01:00
|
|
|
depends on BR2_DEPRECATED || BR2_RECENT
|
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_16_X
|
|
|
|
bool "BusyBox 1.16.x"
|
2008-08-21 07:08:53 +02:00
|
|
|
|
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
|
2008-12-31 10:35:21 +01:00
|
|
|
default "1.12.4" if BR2_BUSYBOX_VERSION_1_12_X
|
2009-04-15 15:41:59 +02:00
|
|
|
default "1.13.4" if BR2_BUSYBOX_VERSION_1_13_X
|
2009-09-16 08:51:20 +02:00
|
|
|
default "1.14.4" if BR2_BUSYBOX_VERSION_1_14_X
|
2009-12-12 23:41:16 +01:00
|
|
|
default "1.15.3" if BR2_BUSYBOX_VERSION_1_15_X
|
2010-01-26 08:36:28 +01:00
|
|
|
default "1.16.0" if BR2_BUSYBOX_VERSION_1_16_X
|
2005-04-12 22:32:45 +02:00
|
|
|
|
2008-03-21 18:56:00 +01:00
|
|
|
config BR2_PACKAGE_BUSYBOX_FULLINSTALL
|
|
|
|
bool "Run BusyBox's own full installation"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_PACKAGE_BUSYBOX
|
2005-11-10 03:59:20 +01:00
|
|
|
default y
|
|
|
|
help
|
2008-03-21 18:56:00 +01:00
|
|
|
If you want to run BusyBox's own full install for the
|
|
|
|
configured applets, then answer Y.
|
2005-11-10 03:59:20 +01:00
|
|
|
|
|
|
|
This may overwrite files from other packages if your
|
|
|
|
busybox includes replacement applets for the package.
|
|
|
|
|
|
|
|
If you wish to just install /bin/busybox, then answer N.
|
|
|
|
|
2005-04-12 22:32:45 +02:00
|
|
|
config BR2_PACKAGE_BUSYBOX_CONFIG
|
|
|
|
string "BusyBox configuration file to use?"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_PACKAGE_BUSYBOX
|
2010-01-31 22:13:45 +01:00
|
|
|
default "package/busybox/busybox-1.16.x.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT
|
2008-08-21 07:08:53 +02:00
|
|
|
default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
|
2008-11-15 22:25:29 +01:00
|
|
|
default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_13_X
|
2009-04-15 15:42:03 +02:00
|
|
|
default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_14_X
|
2009-09-01 13:25:57 +02:00
|
|
|
default "package/busybox/busybox-1.13.x.config" if BR2_BUSYBOX_VERSION_1_15_X
|
2010-01-31 22:13:45 +01:00
|
|
|
default "package/busybox/busybox-1.16.x.config" if BR2_BUSYBOX_VERSION_1_16_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
|
2009-10-27 14:44:47 +01:00
|
|
|
bool "Show packages that are also provided by busybox" if BR2_PACKAGE_BUSYBOX
|
|
|
|
default y if !BR2_PACKAGE_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.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_BUSYBOX_SKELETON
|
|
|
|
bool "use minimal target skeleton"
|
|
|
|
depends on BR2_PACKAGE_BUSYBOX
|
|
|
|
help
|
|
|
|
Use a minimal target skeleton. Make sure to select mdev
|
|
|
|
which is used to populate /dev/.
|
|
|
|
|
2007-08-24 16:23:53 +02:00
|
|
|
#config BR2_PACKAGE_BUSYBOX_INITRAMFS
|
|
|
|
# bool "initramfs perusing busybox"
|
|
|
|
# depends on BR2_PACKAGE_BUSYBOX
|
|
|
|
# help
|
|
|
|
# Build small initramfs perusing busybox.
|