Difference between revisions of "BusyBox"

From LFScript
(Created page with "<scriptname>busybox</scriptname> == Sources == * <sourcecode>http://busybox.net/downloads/busybox-1.19.3.tar.bz2</sourcecode> <md5>c3938e1ac59602387009bbf1dd1af7f6 busybox-...")
 
(Upgrade to 1.22.1)
Line 2: Line 2:
  
 
== Sources ==
 
== Sources ==
* <sourcecode>http://busybox.net/downloads/busybox-1.19.3.tar.bz2</sourcecode>
+
* <sourcecode>http://busybox.net/downloads/busybox-1.22.1.tar.bz2</sourcecode>
  
<md5>c3938e1ac59602387009bbf1dd1af7f6 busybox-1.19.3.tar.bz2</md5>
+
<md5>337d1a15ab1cb1d4ed423168b1eb7d7e busybox-1.22.1.tar.bz2</md5>
  
 
== Installation ==
 
== Installation ==
Line 11: Line 11:
 
<build>make defconfig &&
 
<build>make defconfig &&
 
sed 's/# CONFIG_STATIC is not set/CONFIG_STATIC=y/' -i .config</build>
 
sed 's/# CONFIG_STATIC is not set/CONFIG_STATIC=y/' -i .config</build>
 
Do not build with <code>RPC</code> support, because it has been removed from Glibc 2.14:
 
<build>sed 's/CONFIG_FEATURE_HAVE_RPC=y/# CONFIG_FEATURE_HAVE_RPC is not set/' \
 
        -i .config
 
sed 's/CONFIG_FEATURE_MOUNT_NFS=y/# CONFIG_FEATURE_MOUNT_NFS is not set/' \
 
        -i .config
 
sed 's/CONFIG_FEATURE_INETD_RPC=y/# CONFIG_FEATURE_INETD_RPC is not set/' \
 
        -i .config</build>
 
  
 
<build>make</build>
 
<build>make</build>
  
 
<build user="root">cp -v busybox /bin</build>
 
<build user="root">cp -v busybox /bin</build>

Revision as of 22:53, 8 June 2014

LFScript can find this software under the name busybox.

Sources


MD5 Checksums:

337d1a15ab1cb1d4ed423168b1eb7d7e  busybox-1.22.1.tar.bz2

Installation

Like the Linux kernel, BusyBox can be configured using make menuconfig. However, the following commands build a busybox executable suitable for use in a Live CD:

make defconfig &&
sed 's/# CONFIG_STATIC is not set/CONFIG_STATIC=y/' -i .config
make

As the root user:

cp -v busybox /bin