last_patch_68 from Vladimir N. Oleynik
[platform/upstream/busybox.git] / README
1 Please see the LICENSE file for copyright information.
2     
3 BusyBox combines tiny versions of many common UNIX utilities into a single
4 small executable. It provides minimalist replacements for most of the utilities
5 you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,
6 tar, etc. BusyBox provides a fairly complete POSIX environment for any small or
7 embedded system. The utilities in BusyBox generally have fewer options than
8 their full featured GNU cousins; however, the options that are included provide
9 the expected functionality and behave very much like their GNU counterparts.
10
11 BusyBox has been written with size-optimization and limited resources in mind.
12 It is also extremely modular so you can easily include or exclude commands (or
13 features) at compile time. This makes it easy to customize your embedded
14 systems. To create a working system, just add /dev, /etc, and a kernel.
15
16 BusyBox was originally written to support the Debian Rescue/Install disks, but
17 it also makes an excellent environment for any small or embedded system.
18
19 As of version 0.20 there is now a version number. : ) Also as of version 0.20,
20 BusyBox is now modularized to easily allow you to build only the components you
21 need, thereby reducing binary size. Run 'make config' or 'make menuconfig'
22 for select the functionality that you wish to enable.
23
24 After the build is complete, a busybox.links file is generated.  This is
25 used by 'make install' to create symlinks to the busybox binary for all
26 compiled in functions.  By default, 'make install' will place the symlink
27 forest into `pwd`/_install unless you have defined the PREFIX environment
28 variable (i.e., 'make PREFIX=/tmp/foo install')
29
30 ----------------
31     
32 Supported architectures:
33
34    Busybox in general will build on any architecture supported by gcc.  It has
35    a few specialized features added for __sparc__ and __alpha__.  insmod
36    functionality is currently limited to x86, ARM, SH3/4, powerpc, m68k, 
37    MIPS, and v850e.
38
39 Supported libcs:
40
41    glibc-2.0.x, glibc-2.1.x, glibc-2.2.x, Linux-libc5, uClibc.  People
42    are looking at newlib and diet-libc, but consider them unsupported,
43    untested, or worse.
44
45 Supported kernels:
46
47    Full functionality requires Linux 2.0.x, 2.2.x, or 2.4.x.  A large fraction
48    of the code should run on just about anything.
49
50 ----------------
51
52 Shells:
53
54 lash is the very smallest shell (adds just 10k) and it is quite usable as 
55 a command prompt, but it is not suitable for any but the most trivial
56 scripting (such as an initrd that calls insmod a few times) since it does
57 not understand Bourne shell grammer.  It does handle pipes, redirects, and
58 job control though.  Adding in command editing makes it a very nice
59 lightweight command prompt.
60
61 hush is also quite small (just 18k) and it has very complete Bourne shell
62 grammer.  It handles if/then/else/fi just fine, but doesn't handle loops
63 like for/do/done or case/esac and such.  It also currently has a problem
64 with job control.  Using hush is not yet recommended.
65
66 msh: The minix shell (adds just 30k) is quite complete and handles things
67 like for/do/done, case/esac and all the things you expect a Bourne shell to
68 do.  It is not always pedantically correct about Bourne shell grammer (try
69 running the shell testscript "tests/sh.testcases" on it and compare vs bash)
70 but for most things it works quite well.  It also uses only vfork, so it can
71 be used on uClinux systems.  This was only recently added, so there is still
72 room to shrink it further...
73
74 ash: This adds about 60k in the default configuration and is the most
75 complete and most pedantically correct shell included with busybox.  This
76 shell was also recently added, and several people (mainly Vladimir and Erik)
77 have been working on it.  There are a number of configurable things at the
78 top of ash.c as well, so check those out if you want to tweak things.
79
80 ----------------
81
82 Getting help:
83
84 When you find you need help, you can check out the BusyBox mailing list
85 archives at http://busybox.net/lists/busybox/ or even join
86 the mailing list if you are interested.
87
88 ----------------
89
90 Bugs:
91
92 If you find bugs, please submit a bug report.  Full instructions on how to
93 report a bug are found at http://bugs.busybox.net/Reporting.html.
94
95 For the impatient: To submit a bug, simply send an email describing the problem
96 to submit@bugs.busybox.net.  Bug reports should look something like this:
97
98     To: submit@bugs.busybox.net
99     From: diligent@testing.linux.org
100     Subject: /bin/true doesn't work
101
102     Package: busybox
103     Version: 0.51
104
105     When I invoke '/bin/true' it doesn't work.  I expected it to return 
106     a "0" but it returned a "1" instead.  Here is the transcript:
107         $ /bin/true ; echo $?
108         1
109     With GNU /bin/true, I get the following output:
110         $ /bin/true ; echo $?
111         0
112     I am using Debian 2.2r2, kernel version 2.2.18, and the latest
113     uClibc from CVS.  Thanks for the wonderful program!
114         -Diligent
115
116 Note the careful description and use of examples showing not only what BusyBox
117 does, but also a counter example showing what an equivalent GNU app does.  Bug
118 reports lacking such detail may take a _long_ time to be fixed...  Thanks for
119 understanding.
120
121 ----------------
122
123 FTP:
124
125 Source for the latest released version, as well as daily snapshots, can always 
126 be downloaded from 
127     http://busybox.net/downloads/
128
129 ----------------
130
131 CVS:
132
133 BusyBox now has its own publicly browsable CVS tree at:
134     http://busybox.net/cgi-bin/cvsweb/busybox/
135
136 Anonymous CVS access is available.  For instructions, check out:
137     http://busybox.net/cvs_anon.html
138
139 For those that are actively contributing there is even CVS write access:
140     http://busybox.net/cvs_write.html
141
142 ----------------
143
144 Please feed suggestions, bug reports, insults, and bribes back to:
145         Erik Andersen 
146         <andersen@codepoet.org>
147         <andersee@debian.org>
148