blob: 231fddecec29eadfa6b0687d068375cf1c279c06 [file] [log] [blame]
Eric Andersencb81e642003-07-14 21:21:08 +00001Please see the LICENSE file for details on copying and usage.
Erik Andersen330fd2b2000-05-19 05:35:19 +00002
3BusyBox combines tiny versions of many common UNIX utilities into a single
4small executable. It provides minimalist replacements for most of the utilities
5you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,
6tar, etc. BusyBox provides a fairly complete POSIX environment for any small or
Eric Andersen07309432000-11-29 22:12:19 +00007embedded system. The utilities in BusyBox generally have fewer options than
Erik Andersen330fd2b2000-05-19 05:35:19 +00008their full featured GNU cousins; however, the options that are included provide
9the expected functionality and behave very much like their GNU counterparts.
Eric Andersencc8ed391999-10-05 16:24:54 +000010
Eric Andersencb81e642003-07-14 21:21:08 +000011BusyBox was originally written to support the Debian Rescue/Install disks, but
12it also makes an excellent environment for any small or embedded system.
13
Erik Andersen330fd2b2000-05-19 05:35:19 +000014BusyBox has been written with size-optimization and limited resources in mind.
15It is also extremely modular so you can easily include or exclude commands (or
16features) at compile time. This makes it easy to customize your embedded
Eric Andersen9e6089e2001-08-02 19:31:08 +000017systems. To create a working system, just add /dev, /etc, and a kernel.
Eric Andersencc8ed391999-10-05 16:24:54 +000018
Eric Andersen235f66d2000-12-13 18:07:38 +000019As of version 0.20 there is now a version number. : ) Also as of version 0.20,
Erik Andersen330fd2b2000-05-19 05:35:19 +000020BusyBox is now modularized to easily allow you to build only the components you
Glenn L McGrath062c74f2002-11-27 09:29:49 +000021need, thereby reducing binary size. Run 'make config' or 'make menuconfig'
22for select the functionality that you wish to enable.
Erik Andersen330fd2b2000-05-19 05:35:19 +000023
Eric Andersen07309432000-11-29 22:12:19 +000024After the build is complete, a busybox.links file is generated. This is
Erik Andersen330fd2b2000-05-19 05:35:19 +000025used by 'make install' to create symlinks to the busybox binary for all
26compiled in functions. By default, 'make install' will place the symlink
27forest into `pwd`/_install unless you have defined the PREFIX environment
Eric Andersen8ec10a92001-01-27 09:33:39 +000028variable (i.e., 'make PREFIX=/tmp/foo install')
Eric Andersencc8ed391999-10-05 16:24:54 +000029
Eric Andersencb81e642003-07-14 21:21:08 +000030If you wish to install hardlinks, rather than symlinks, you can use
31'make install-hardlinks' instead.
32
Eric Andersena29dec22000-06-22 00:19:33 +000033----------------
Mark Whitley3654ca52001-01-26 20:58:23 +000034
35Supported architectures:
36
37 Busybox in general will build on any architecture supported by gcc. It has
38 a few specialized features added for __sparc__ and __alpha__. insmod
Eric Andersen2835efe2001-07-25 16:58:58 +000039 functionality is currently limited to x86, ARM, SH3/4, powerpc, m68k,
Miles Bader130bec52002-04-01 09:37:27 +000040 MIPS, and v850e.
Mark Whitley3654ca52001-01-26 20:58:23 +000041
42Supported libcs:
43
Eric Andersene5d58c32001-11-10 10:46:42 +000044 glibc-2.0.x, glibc-2.1.x, glibc-2.2.x, Linux-libc5, uClibc. People
45 are looking at newlib and diet-libc, but consider them unsupported,
46 untested, or worse.
Mark Whitley3654ca52001-01-26 20:58:23 +000047
48Supported kernels:
49
Eric Andersencb81e642003-07-14 21:21:08 +000050 Full functionality requires Linux 2.0.x or better. A large fraction of the
51 code should run on just about anything. While the current code is fairly
52 Linux specific, it should be fairly easy to port the majority of the code
53 to, say, FreeBSD or Solaris, or MacOsX, or even Windows (if you are into that
54 sortof thing).
Mark Whitley3654ca52001-01-26 20:58:23 +000055
56----------------
Eric Andersen235f66d2000-12-13 18:07:38 +000057
Matt Kraai2d91deb2001-08-01 17:21:35 +000058Shells:
59
60lash is the very smallest shell (adds just 10k) and it is quite usable as
61a command prompt, but it is not suitable for any but the most trivial
62scripting (such as an initrd that calls insmod a few times) since it does
63not understand Bourne shell grammer. It does handle pipes, redirects, and
Eric Andersen9e6089e2001-08-02 19:31:08 +000064job control though. Adding in command editing makes it a very nice
Matt Kraai2d91deb2001-08-01 17:21:35 +000065lightweight command prompt.
66
67hush is also quite small (just 18k) and it has very complete Bourne shell
68grammer. It handles if/then/else/fi just fine, but doesn't handle loops
69like for/do/done or case/esac and such. It also currently has a problem
Eric Andersen9e6089e2001-08-02 19:31:08 +000070with job control. Using hush is not yet recommended.
Matt Kraai2d91deb2001-08-01 17:21:35 +000071
72msh: The minix shell (adds just 30k) is quite complete and handles things
73like for/do/done, case/esac and all the things you expect a Bourne shell to
74do. It is not always pedantically correct about Bourne shell grammer (try
75running the shell testscript "tests/sh.testcases" on it and compare vs bash)
76but for most things it works quite well. It also uses only vfork, so it can
77be used on uClinux systems. This was only recently added, so there is still
78room to shrink it further...
79
80ash: This adds about 60k in the default configuration and is the most
81complete and most pedantically correct shell included with busybox. This
82shell was also recently added, and several people (mainly Vladimir and Erik)
83have been working on it. There are a number of configurable things at the
Eric Andersen9e6089e2001-08-02 19:31:08 +000084top of ash.c as well, so check those out if you want to tweak things.
Matt Kraai2d91deb2001-08-01 17:21:35 +000085
86----------------
87
Eric Andersena29dec22000-06-22 00:19:33 +000088Getting help:
Eric Andersen235f66d2000-12-13 18:07:38 +000089
Eric Andersena29dec22000-06-22 00:19:33 +000090When you find you need help, you can check out the BusyBox mailing list
Eric Andersen2423b122001-12-08 01:56:15 +000091archives at http://busybox.net/lists/busybox/ or even join
Eric Andersena29dec22000-06-22 00:19:33 +000092the mailing list if you are interested.
93
94----------------
Eric Andersen235f66d2000-12-13 18:07:38 +000095
Eric Andersena29dec22000-06-22 00:19:33 +000096Bugs:
Eric Andersen235f66d2000-12-13 18:07:38 +000097
Eric Andersencb81e642003-07-14 21:21:08 +000098If you find bugs, please submit a detailed bug report to the busybox mailing
99list at busybox@busybox.net. A well-written bug report should include a
100transcript of a shell session that demonstrates the bad behavior and enables
101anyone else to duplicate the bug on their own machine. The following is such
102an example:
Eric Andersen235f66d2000-12-13 18:07:38 +0000103
Eric Andersencb81e642003-07-14 21:21:08 +0000104 To: busybox@busybox.net
Eric Andersen235f66d2000-12-13 18:07:38 +0000105 From: diligent@testing.linux.org
Eric Andersencb81e642003-07-14 21:21:08 +0000106 Subject: /bin/date doesn't work
Eric Andersen235f66d2000-12-13 18:07:38 +0000107
108 Package: busybox
Eric Andersencb81e642003-07-14 21:21:08 +0000109 Version: 1.00
Eric Andersen235f66d2000-12-13 18:07:38 +0000110
Eric Andersencb81e642003-07-14 21:21:08 +0000111 When I execute Busybox 'date' it produces unexpected results.
112 With GNU date I get the following output:
113
114 $ date
115 Wed Mar 21 14:19:41 MST 2001
116
117 But when I use BusyBox date I get this instead:
118
119 $ date
120 llegal instruction
121
122 I am using Debian unstable, kernel version 2.4.19-rmk1 on an Netwinder,
123 and the latest uClibc from CVS. Thanks for the wonderful program!
124
Eric Andersen235f66d2000-12-13 18:07:38 +0000125 -Diligent
126
127Note the careful description and use of examples showing not only what BusyBox
128does, but also a counter example showing what an equivalent GNU app does. Bug
Eric Andersencb81e642003-07-14 21:21:08 +0000129reports lacking such detail may never be fixed... Thanks for understanding.
Eric Andersena29dec22000-06-22 00:19:33 +0000130
131----------------
Eric Andersen235f66d2000-12-13 18:07:38 +0000132
Eric Andersena29dec22000-06-22 00:19:33 +0000133FTP:
Eric Andersen235f66d2000-12-13 18:07:38 +0000134
Eric Andersenb9c0b992001-12-22 00:37:54 +0000135Source for the latest released version, as well as daily snapshots, can always
136be downloaded from
137 http://busybox.net/downloads/
Eric Andersena29dec22000-06-22 00:19:33 +0000138
139----------------
Eric Andersen235f66d2000-12-13 18:07:38 +0000140
Eric Andersena29dec22000-06-22 00:19:33 +0000141CVS:
Eric Andersen235f66d2000-12-13 18:07:38 +0000142
Eric Andersen07309432000-11-29 22:12:19 +0000143BusyBox now has its own publicly browsable CVS tree at:
Eric Andersen2423b122001-12-08 01:56:15 +0000144 http://busybox.net/cgi-bin/cvsweb/busybox/
Eric Andersena29dec22000-06-22 00:19:33 +0000145
146Anonymous CVS access is available. For instructions, check out:
Eric Andersen2423b122001-12-08 01:56:15 +0000147 http://busybox.net/cvs_anon.html
Eric Andersena29dec22000-06-22 00:19:33 +0000148
149For those that are actively contributing there is even CVS write access:
Eric Andersen2423b122001-12-08 01:56:15 +0000150 http://busybox.net/cvs_write.html
Eric Andersena29dec22000-06-22 00:19:33 +0000151
Eric Andersena29dec22000-06-22 00:19:33 +0000152----------------
153
Eric Andersended62591999-11-18 00:19:26 +0000154Please feed suggestions, bug reports, insults, and bribes back to:
155 Erik Andersen
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000156 <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +0000157 <andersen@codepoet.org>
Eric Andersen84b00921999-12-11 04:16:51 +0000158