blob: 07c1fd4e944af8c47d41ee1e60b989a819fafe87 [file] [log] [blame]
Eric Andersen6c4a6b12004-10-08 10:50:08 +00001<!--#include file="header.html" -->
2
Eric Andersen6c4a6b12004-10-08 10:50:08 +00003<h3>Frequently Asked Questions</h3>
4
5This is a collection of some of the more frequently asked questions
6about BusyBox. Some of the questions even have answers. If you
7have additions to this FAQ document, we would love to add them,
8
Rob Landleyb73d2bf2006-05-11 15:00:32 +00009<h2>General questions</h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +000010<ol>
Rob Landley380ad122005-09-23 16:52:09 +000011<li><a href="#getting_started">How can I get started using BusyBox?</a>
12<li><a href="#build_system">How do I build a BusyBox-based system?</a>
Eric Andersen6c4a6b12004-10-08 10:50:08 +000013<li><a href="#kernel">Which Linux kernel versions are supported?</a>
14<li><a href="#arch">Which architectures does BusyBox run on?</a>
15<li><a href="#libc">Which C libraries are supported?</a>
16<li><a href="#commercial">Can I include BusyBox as part of the software on my device?</a>
Mike Frysinger77dbe732005-04-17 04:32:22 +000017<li><a href="#external">Where can I find other small utilities since busybox does not include the features I want?</a></li>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000018<li><a href="#demanding">I demand that you to add &lt;favorite feature&gt; right now! How come you don't answer all my questions on the mailing list instantly? I demand that you help me with all of my problems <em>Right Now</em>!</a>
19<li><a href="#helpme">I need help with BusyBox! What should I do?</a>
20<li><a href="#contracts">I need you to add &lt;favorite feature&gt;! Are the BusyBox developers willing to be paid in order to fix bugs or add in &lt;favorite feature&gt;? Are you willing to provide support contracts?</a>
21</ol>
Rob Landleyde7f9b72005-07-31 04:27:19 +000022
Rob Landleyb73d2bf2006-05-11 15:00:32 +000023<h2>Troubleshooting</h2>
24<ol>
25<li><a href="#bugs">I think I found a bug in BusyBox! What should I do?!</a></li>
26<li><a href="#init">Busybox init isn't working!</a></li>
27<li><a href="#sed">I can't configure busybox on my system.</a></li>
28<li><a href="#job_control">Why do I keep getting "sh: can't access tty; job control turned off" errors? Why doesn't Control-C work within my shell?</a></li>
29</ol>
30
31<h2>Programming questions</h2>
32<ol>
33 <li><a href="#goals">What are the goals of busybox?</a></li>
34 <li><a href="#design">What is the design of busybox?</a></li>
35 <li><a href="#source">How is the source code organized?</a></li>
36 <ul>
37 <li><a href="#source_applets">The applet directories.</a></li>
38 <li><a href="#source_libbb">The busybox shared library (libbb)</a></li>
39 </ul>
40 <li><a href="#optimize">I want to make busybox even smaller, how do I go about it?</a></li>
41 <li><a href="#adding">Adding an applet to busybox</a></li>
42 <li><a href="#standards">What standards does busybox adhere to?</a></li>
43 <li><a href="#portability">Portability.</a></li>
44 <li><a href="#tips">Tips and tricks.</a></li>
45 <ul>
46 <li><a href="#tips_encrypted_passwords">Encrypted Passwords</a></li>
47 <li><a href="#tips_vfork">Fork and vfork</a></li>
48 <li><a href="#tips_short_read">Short reads and writes</a></li>
49 <li><a href="#tips_memory">Memory used by relocatable code, PIC, and static linking.</a></li>
50 <li><a href="#tips_kernel_headers">Including Linux kernel headers.</a></li>
51 </ul>
52 <li><a href="#who">Who are the BusyBox developers?</a></li>
53</ul>
Eric Andersen6c4a6b12004-10-08 10:50:08 +000054
55
56</ol>
57
Rob Landleyb73d2bf2006-05-11 15:00:32 +000058<h1>General questions</h1>
59
Rob Landley380ad122005-09-23 16:52:09 +000060<hr />
61<p>
62<h2><a name="getting_started">How can I get started using BusyBox?</a></h2>
63<p> If you just want to try out busybox without installing it, download the
64 tarball, extract it, run "make allyesconfig", and then run "make".
65</p>
66<p>
67 This will create a busybox binary with all features enabled. To try
68 out a busybox applet, type "./busybox [appletname] [options]", for
69 example "./busybox ls -l" or "./busybox cat LICENSE". Type "./busybox"
70 to see a command list, and "busybox appletname --help" to see a brief
71 usage message for a given applet.
72</p>
73<p>
74 BusyBox uses the name it was invoked under to determine which applet is
75 being invoked. (Try "mv busybox ls" and then "./ls -l".) Installing
76 busybox consists of creating symlinks (or hardlinks) to the busybox
Rob Landley3d283dd2005-11-03 22:11:00 +000077 binary for each applet in busybox, and making sure these links are in
78 the shell's command $PATH. The special applet name "busybox" (or with
79 any optional suffix, such as "busybox-static") uses the first argument
80 to determine which applet to run, as shown above.
Rob Landley380ad122005-09-23 16:52:09 +000081</p>
82<p>
83 BusyBox also has a feature called the "standalone shell", where the busybox
84 shell runs any built-in applets before checking the command path. This
85 feature is also enabled by "make allyesconfig", and to try it out run
86 the command line "PATH= ./busybox ash". This will blank your command path
87 and run busybox as your command shell, so the only commands it can find
88 (without an explicit path such as /bin/ls) are the built-in busybox ones.
89 This is another good way to see what's built into busybox. (Note that the
90 standalone shell is dependent on the existence of /proc/self/exe, so before
91 using it in a chroot environment you must mount /proc.)
92</p>
93<p>
94 To build a smaller busybox binary, run "make menuconfig" and disable the
95 features you don't need. (Or run "make allnoconfig" and then use
96 menuconfig to add just the features you need. Don't forget to recompile
97 with "make" once you've finished configuring.)
98</p>
99<hr/>
100<p/>
101<h2><a name="build_system">How do I build a BusyBox-based system?</a></h2>
102<p>
103 BusyBox is a package that replaces a dozen standard packages, but it is
104 not by itself a complete bootable system. Building an entire Linux
105 distribution from source is a bit beyond the scope of this FAQ, but it
106 understandably keeps cropping up on the mailing list, so here are some
107 pointers.
108</p>
109<p>
110 Start by learning how to strip a working system down to the bare essentials
111 needed to run one or two commands, so you know what it is you actually
112 need. An excellent practical place to do
113 this is the <a href="http://www.tldp.org/HOWTO/Bootdisk-HOWTO/">Linux
114 BootDisk Howto</a>, or for a more theoretical approach try
115 <a href="http://www.tldp.org/HOWTO/From-PowerUp-To-Bash-Prompt-HOWTO.html">From
116 PowerUp to Bash Prompt</a>.
117</p>
118<p>
119 To learn how to build a working Linux system entirely from source code,
120 the place to go is the <a href="http://www.linuxfromscratch.org">Linux
121 From Scratch</a> project. They have an entire book of step-by-step
122 instructions you can
123 <a href="http://www.linuxfromscratch.org/lfs/view/stable/">read online</a>
124 or
125 <a href="http://www.linuxfromscratch.org/lfs/downloads/stable/">download</a>.
126 Be sure to check out the other sections of their main page, including
127 Beyond Linux From Scratch, Hardened Linux From Scratch, their Hints
128 directory, and their LiveCD project. (They also have mailing lists which
129 are better sources of answers to Linux-system building questions than
130 the busybox list.)
131</p>
132<p>
133 If you want an automated yet customizable system builder which produces
134 a BusyBox and uClibc based system, try
135 <a href="http://buildroot.uclibc.org">buildroot</a>, which is
Rob Landleya253e732006-02-14 08:29:48 +0000136 another project by the maintainer of the uClibc (Erik Andersen).
137 Download the tarball, extract it, unset CC, make.
Rob Landley380ad122005-09-23 16:52:09 +0000138 For more instructions, see the website.
139</p>
140
Rob Landleyd48633f2006-03-09 18:03:21 +0000141<hr />
142<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000143<h2><a name="kernel">Which Linux kernel versions are supported?</a></h2>
144<p>
Rob Landley380ad122005-09-23 16:52:09 +0000145 Full functionality requires Linux 2.4.x or better. (Earlier versions may
146 still work, but are no longer regularly tested.) A large fraction of the
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000147 code should run on just about anything. While the current code is fairly
148 Linux specific, it should be fairly easy to port the majority of the code
149 to support, say, FreeBSD or Solaris, or Mac OS X, or even Windows (if you
150 are into that sort of thing).
Rob Landley380ad122005-09-23 16:52:09 +0000151</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000152<hr />
153<p>
154<h2><a name="arch">Which architectures does BusyBox run on?</a></h2>
155<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000156 BusyBox in general will build on any architecture supported by gcc.
Rob Landley380ad122005-09-23 16:52:09 +0000157 Kernel module loading for 2.4 Linux kernels is currently
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000158 limited to ARM, CRIS, H8/300, x86, ia64, x86_64, m68k, MIPS, PowerPC,
159 S390, SH3/4/5, Sparc, v850e, and x86_64 for 2.4.x kernels.
Rob Landley380ad122005-09-23 16:52:09 +0000160</p>
161<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000162 With 2.6.x kernels, module loading support should work on all architectures.
Rob Landley380ad122005-09-23 16:52:09 +0000163</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000164<hr />
165<p>
166<h2><a name="libc">Which C libraries are supported?</a></h2>
167<p>
Rob Landley380ad122005-09-23 16:52:09 +0000168 On Linux, BusyBox releases are tested against uClibc (0.9.27 or later) and
169 glibc (2.2 or later). Both should provide full functionality with busybox,
170 and if you find a bug we want to hear about it.
171</p>
Mike Frysingerd505e3e2005-10-29 08:03:54 +0000172<p>
Rob Landley380ad122005-09-23 16:52:09 +0000173 Linux-libc5 is no longer maintained (and has no known advantages over
174 uClibc), dietlibc is known to have numerous unfixed bugs, and klibc is
175 missing too many features to build BusyBox. If you require a small C
176 library for Linux, the busybox developers recommend uClibc.
177</p>
178<p>
179 Some BusyBox applets have been built and run under a combination
180 of newlib and libgloss (see
181 <a href="http://www.busybox.net/lists/busybox/2005-March/013759.html">this thread</a>).
182 This is still experimental, but may be supported in a future release.
183</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000184
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000185<hr />
186<p>
Mike Frysinger86097b32005-09-15 01:37:36 +0000187<h2><a name="commercial">Can I include BusyBox as part of the software on my device?</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000188<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000189
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000190<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000191 Yes. As long as you <a href="http://busybox.net/license.html">fully comply
192 with the generous terms of the GPL BusyBox license</a> you can ship BusyBox
193 as part of the software on your device.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000194</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000195
196<hr />
197<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000198<h2><a name="external">where can i find other small utilities since busybox
199 does not include the features i want?</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000200<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000201 we maintain such a <a href="tinyutils.html">list</a> on this site!
202</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000203
204<hr />
205<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000206<h2><a name="demanding">I demand that you to add &lt;favorite feature&gt; right now! How come you don't answer all my questions on the mailing list instantly? I demand that you help me with all of my problems <em>Right Now</em>!</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000207<p>
208
209 You have not paid us a single cent and yet you still have the product of
210 many years of our work. We are not your slaves! We work on BusyBox
211 because we find it useful and interesting. If you go off flaming us, we
212 will ignore you.
213
214
215<hr />
216<p>
217<h2><a name="helpme">I need help with BusyBox! What should I do?</a></h2>
218<p>
219
220 If you find that you need help with BusyBox, you can ask for help on the
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000221 BusyBox mailing list at busybox@busybox.net.</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000222
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000223<p> In addition to the mailing list, Erik Andersen (andersee), Manuel Nova
224 (mjn3), Rob Landley (landley), Mike Frysinger (SpanKY), Bernhard Fischer
225 (blindvt), and other long-time BusyBox developers are known to hang out
226 on the uClibc IRC channel: #uclibc on irc.freenode.net. There is a
227 <a href="http://ibot.Rikers.org/%23uclibc/">web archive of
228 daily logs of the #uclibc IRC channel</a> going back to 2002.
229</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000230
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000231<p>
Rob Landleya253e732006-02-14 08:29:48 +0000232 <b>Please do not send private email to Rob, Erik, Manuel, or the other
233 BusyBox contributors asking for private help unless you are planning on
234 paying for consulting services.</b>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000235</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000236
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000237<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000238 When we answer questions on the BusyBox mailing list, it helps everyone
239 since people with similar problems in the future will be able to get help
240 by searching the mailing list archives. Private help is reserved as a paid
241 service. If you need to use private communication, or if you are serious
242 about getting timely assistance with BusyBox, you should seriously consider
243 paying for consulting services.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000244</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000245
246<hr />
247<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000248<h2><a name="contracts">I need you to add &lt;favorite feature&gt;! Are the BusyBox developers willing to be paid in order to fix bugs or add in &lt;favorite feature&gt;? Are you willing to provide support contracts?</a></h2>
249</p>
250
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000251<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000252 Yes we are. The easy way to sponsor a new feature is to post an offer on
253 the mailing list to see who's interested. You can also email the project's
254 maintainer and ask them to recommend someone.
255</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000256
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000257<p> If you prefer to deal with an organization rather than an individual, Rob
258 Landley (the current BusyBox maintainer) works for
259 <a http://www.timesys.com>TimeSys</a>, and Eric Andersen (the previous
260 busybox maintainer and current uClibc maintainer) owns
261 <a href="http://codepoet-consulting.com/">CodePoet Consulting</a>. Both
262 companies offer support contracts and handle new development, and there
263 are plenty of other companies that do the same.
264</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000265
266
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000267
268
269<h1>Troubleshooting</h1>
270
271<hr />
272<p></p>
273<h2><a name="bugs">I think I found a bug in BusyBox! What should I do?</a></h2>
274<p></p>
275
276<p>
277 If you simply need help with using or configuring BusyBox, please submit a
278 detailed description of your problem to the BusyBox mailing list at <a
279 href="mailto:busybox@busybox.net"> busybox@busybox.net</a>.
280 Please do not send email to individual developers asking
281 for private help unless you are planning on paying for consulting services.
282 When we answer questions on the BusyBox mailing list, it helps everyone,
283 while private answers help only you...
284</p>
285
286<p>
287 The developers of BusyBox are busy people, and have only so much they can
288 keep in their brains at a time. As a result, bug reports and new feature
289 patches sometimes get lost when posted to the mailing list. To prevent
290 your bug report from getting lost, if you find a bug in BusyBox that isn't
291 immediately addressed, please use the <a
292 href="http://bugs.busybox.net/">BusyBox Bug and Patch Tracking System</a>
293 to submit a detailed explanation and we'll get to it as soon as we can.
294</p>
295
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000296<hr />
297<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000298<h2><a name="init">Busybox init isn't working!</a></h2>
Mike Frysinger77dbe732005-04-17 04:32:22 +0000299<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000300 Build a statically linked version of the following "hello world" program
301 with your cross compiler toolchain.
302</p>
303<pre>
304#include &lt;stdio.h&gt;
Mike Frysinger77dbe732005-04-17 04:32:22 +0000305
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000306int main(int argc, char *argv)
307{
308 printf("Hello world!\n");
309 sleep(999999999);
310}
311</pre>
312
313<p>
314 Now try to boot your device with an "init=" argument pointing to your
315 hello world program. Did you see the hello world message? Until you
316 do, don't bother messing with busybox init.
317</p>
318
319<p>
320 Once you've got it working statically linked, try getting it to work
321 dynamically linked. Then read the FAQ entry <a href="#build_system">How
322 do I build a BusyBox-based system?</a>
323</p>
Mike Frysinger77dbe732005-04-17 04:32:22 +0000324
325<hr />
326<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000327<h2><a name="sed">I can't configure busybox on my system.</a></h2>
328<p>
329 Configuring Busybox depends on a recent version of sed. Older
330 distributions (Red Hat 7.2, Debian 3.0) may not come with a
331 usable version. Luckily BusyBox can use its own sed to configure itself,
332 although this leads to a bit of a chicken and egg problem.
333 You can work around this by hand-configuring busybox to build with just
334 sed, then putting that sed in your path to configure the rest of busybox
335 with, like so:
336</p>
337
338<pre>
339 tar xvjf sources/busybox-x.x.x.tar.bz2
340 cd busybox-x.x.x
341 make allnoconfig
342 make include/bb_config.h
343 echo "CONFIG_SED=y" >> .config
344 echo "#undef ENABLE_SED" >> include/bb_config.h
345 echo "#define ENABLE_SED 1" >> include/bb_config.h
346 make
347 mv busybox sed
348 export PATH=`pwd`:"$PATH"
349</pre>
350
351<p>Then you can run "make defconfig" or "make menuconfig" normally.</p>
352
353<hr />
354<p>
355<h2><a name="job_control">Why do I keep getting "sh: can't access tty; job control turned off" errors? Why doesn't Control-C work within my shell?</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000356<p>
357
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000358 Job control will be turned off since your shell can not obtain a controlling
359 terminal. This typically happens when you run your shell on /dev/console.
360 The kernel will not provide a controlling terminal on the /dev/console
361 device. Your should run your shell on a normal tty such as tty1 or ttyS0
362 and everything will work perfectly. If you <em>REALLY</em> want your shell
363 to run on /dev/console, then you can hack your kernel (if you are into that
364 sortof thing) by changing drivers/char/tty_io.c to change the lines where
365 it sets "noctty = 1;" to instead set it to "0". I recommend you instead
366 run your shell on a real console...
367</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000368
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000369<h1>Development</h1>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000370
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000371<h2><b><a name="goals">What are the goals of busybox?</a></b></h2>
372
373<p>Busybox aims to be the smallest and simplest correct implementation of the
374standard Linux command line tools. First and foremost, this means the
375smallest executable size we can manage. We also want to have the simplest
376and cleanest implementation we can manage, be <a href="#standards">standards
377compliant</a>, minimize run-time memory usage (heap and stack), run fast, and
378take over the world.</p>
379
380<h2><b><a name="design">What is the design of busybox?</a></b></h2>
381
382<p>Busybox is like a swiss army knife: one thing with many functions.
383The busybox executable can act like many different programs depending on
384the name used to invoke it. Normal practice is to create a bunch of symlinks
385pointing to the busybox binary, each of which triggers a different busybox
386function. (See <a href="FAQ.html#getting_started">getting started</a> in the
387FAQ for more information on usage, and <a href="BusyBox.html">the
388busybox documentation</a> for a list of symlink names and what they do.)
389
390<p>The "one binary to rule them all" approach is primarily for size reasons: a
391single multi-purpose executable is smaller then many small files could be.
392This way busybox only has one set of ELF headers, it can easily share code
393between different apps even when statically linked, it has better packing
394efficiency by avoding gaps between files or compression dictionary resets,
395and so on.</p>
396
397<p>Work is underway on new options such as "make standalone" to build separate
398binaries for each applet, and a "libbb.so" to make the busybox common code
399available as a shared library. Neither is ready yet at the time of this
400writing.</p>
401
402<a name="source"></a>
403
404<h2><a name="source_applets"><b>The applet directories</b></a></h2>
405
406<p>The directory "applets" contains the busybox startup code (applets.c and
407busybox.c), and several subdirectories containing the code for the individual
408applets.</p>
409
410<p>Busybox execution starts with the main() function in applets/busybox.c,
411which sets the global variable bb_applet_name to argv[0] and calls
412run_applet_by_name() in applets/applets.c. That uses the applets[] array
413(defined in include/busybox.h and filled out in include/applets.h) to
414transfer control to the appropriate APPLET_main() function (such as
415cat_main() or sed_main()). The individual applet takes it from there.</p>
416
417<p>This is why calling busybox under a different name triggers different
418functionality: main() looks up argv[0] in applets[] to get a function pointer
419to APPLET_main().</p>
420
421<p>Busybox applets may also be invoked through the multiplexor applet
422"busybox" (see busybox_main() in applets/busybox.c), and through the
423standalone shell (grep for STANDALONE_SHELL in applets/shell/*.c).
424See <a href="FAQ.html#getting_started">getting started</a> in the
425FAQ for more information on these alternate usage mechanisms, which are
426just different ways to reach the relevant APPLET_main() function.</p>
427
428<p>The applet subdirectories (archival, console-tools, coreutils,
429debianutils, e2fsprogs, editors, findutils, init, loginutils, miscutils,
430modutils, networking, procps, shell, sysklogd, and util-linux) correspond
431to the configuration sub-menus in menuconfig. Each subdirectory contains the
432code to implement the applets in that sub-menu, as well as a Config.in
433file defining that configuration sub-menu (with dependencies and help text
434for each applet), and the makefile segment (Makefile.in) for that
435subdirectory.</p>
436
437<p>The run-time --help is stored in usage_messages[], which is initialized at
438the start of applets/applets.c and gets its help text from usage.h. During the
439build this help text is also used to generate the BusyBox documentation (in
440html, txt, and man page formats) in the docs directory. See
441<a href="#adding">adding an applet to busybox</a> for more
442information.</p>
443
444<h2><a name="source_libbb"><b>libbb</b></a></h2>
445
446<p>Most non-setup code shared between busybox applets lives in the libbb
447directory. It's a mess that evolved over the years without much auditing
448or cleanup. For anybody looking for a great project to break into busybox
449development with, documenting libbb would be both incredibly useful and good
450experience.</p>
451
452<p>Common themes in libbb include allocation functions that test
453for failure and abort the program with an error message so the caller doesn't
454have to test the return value (xmalloc(), xstrdup(), etc), wrapped versions
455of open(), close(), read(), and write() that test for their own failures
456and/or retry automatically, linked list management functions (llist.c),
457command line argument parsing (getopt_ulflags.c), and a whole lot more.</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000458
459<hr />
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000460<p>
461<h2><a name="optimize">I want to make busybox even smaller, how do I go about it?</a></h2>
462<p>
463 To conserve bytes it's good to know where they're being used, and the
464 size of the final executable isn't always a reliable indicator of
465 the size of the components (since various structures are rounded up,
466 so a small change may not even be visible by itself, but many small
467 savings add up).
468</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000469
470<p> The busybox Makefile builds two versions of busybox, one of which
471 (busybox_unstripped) has extra information that various analysis tools
472 can use. (This has nothing to do with CONFIG_DEBUG, leave that off
473 when trying to optimize for size.)
474</p>
475
476<p> The <b>"make bloatcheck"</b> option uses Matt Mackall's bloat-o-meter
477 script to compare two versions of busybox (busybox_unstripped vs
478 busybox_old), and report which symbols changed size and by how much.
479 To use it, first build a base version, rename busybox_unstripped to
480 busybox_old, and then build a new version with your changes and run
481 "make bloatcheck" to see the size differences from the old version.
482</p>
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000483<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000484 The first line of output has totals: how many symbols were added or
485 removed, how many symbols grew or shrank, the number of bytes added
486 and number of bytes removed by these changes, and finally the total
487 number of bytes difference between the two files. The remaining
488 lines show each individual symbol, the old and new sizes, and the
489 increase or decrease in size (which results are sorted by).
490</p>
491<p>
492 The <b>"make sizes"</b> option produces raw symbol size information for
493 busybox_unstripped. This is the output from the "nm --size-sort"
494 command (see "man nm" for more information), and is the information
495 bloat-o-meter parses to produce the comparison report above. For
496 defconfig, this is a good way to find the largest symbols in the tree
497 (which is a good place to start when trying to shrink the code). To
498 take a closer look at individual applets, configure busybox with just
499 one applet (run "make allnoconfig" and then switch on a single applet
500 with menuconfig), and then use "make sizes" to see the size of that
501 applet's components.
502</p>
503<p>
504 The "showasm" command (in the scripts directory) produces an assembly
505 dump of a function, providing a closer look at what changed. Try
506 "scripts/showasm busybox_unstripped" to list available symbols, and
507 "scripts/showasm busybox_unstripped symbolname" to see the assembly
508 for a sepecific symbol.
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000509</p>
510<hr />
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000511
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000512
513
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000514<h2><a name="adding"><b>Adding an applet to busybox</b></a></h2>
515
516<p>To add a new applet to busybox, first pick a name for the applet and
517a corresponding CONFIG_NAME. Then do this:</p>
518
519<ul>
520<li>Figure out where in the busybox source tree your applet best fits,
521and put your source code there. Be sure to use APPLET_main() instead
522of main(), where APPLET is the name of your applet.</li>
523
524<li>Add your applet to the relevant Config.in file (which file you add
525it to determines where it shows up in "make menuconfig"). This uses
526the same general format as the linux kernel's configuration system.</li>
527
528<li>Add your applet to the relevant Makefile.in file (in the same
529directory as the Config.in you chose), using the existing entries as a
530template and the same CONFIG symbol as you used for Config.in. (Don't
531forget "needlibm" or "needcrypt" if your applet needs libm or
532libcrypt.)</li>
533
534<li>Add your applet to "include/applets.h", using one of the existing
535entries as a template. (Note: this is in alphabetical order. Applets
536are found via binary search, and if you add an applet out of order it
537won't work.)</li>
538
539<li>Add your applet's runtime help text to "include/usage.h". You need
540at least appname_trivial_usage (the minimal help text, always included
541in the busybox binary when this applet is enabled) and appname_full_usage
542(extra help text included in the busybox binary with
543CONFIG_FEATURE_VERBOSE_USAGE is enabled), or it won't compile.
544The other two help entry types (appname_example_usage and
545appname_notes_usage) are optional. They don't take up space in the binary,
546but instead show up in the generated documentation (BusyBox.html,
547BusyBox.txt, and the man page BusyBox.1).</li>
548
549<li>Run menuconfig, switch your applet on, compile, test, and fix the
550bugs. Be sure to try both "allyesconfig" and "allnoconfig" (and
551"allbareconfig" if relevant).</li>
552
553</ul>
554
555<h2><a name="standards">What standards does busybox adhere to?</a></h2>
556
557<p>The standard we're paying attention to is the "Shell and Utilities"
558portion of the <a href="http://www.opengroup.org/onlinepubs/009695399/">Open
559Group Base Standards</a> (also known as the Single Unix Specification version
5603 or SUSv3). Note that paying attention isn't necessarily the same thing as
561following it.</p>
562
563<p>SUSv3 doesn't even mention things like init, mount, tar, or losetup, nor
564commonly used options like echo's '-e' and '-n', or sed's '-i'. Busybox is
565driven by what real users actually need, not the fact the standard believes
566we should implement ed or sccs. For size reasons, we're unlikely to include
567much internationalization support beyond UTF-8, and on top of all that, our
568configuration menu lets developers chop out features to produce smaller but
569very non-standard utilities.</p>
570
571<p>Also, Busybox is aimed primarily at Linux. Unix standards are interesting
572because Linux tries to adhere to them, but portability to dozens of platforms
573is only interesting in terms of offering a restricted feature set that works
574everywhere, not growing dozens of platform-specific extensions. Busybox
575should be portable to all hardware platforms Linux supports, and any other
576similar operating systems that are easy to do and won't require much
577maintenance.</p>
578
579<p>In practice, standards compliance tends to be a clean-up step once an
580applet is otherwise finished. When polishing and testing a busybox applet,
581we ensure we have at least the option of full standards compliance, or else
582document where we (intentionally) fall short.</p>
583
584<h2><a name="portability">Portability.</a></h2>
585
586<p>Busybox is a Linux project, but that doesn't mean we don't have to worry
587about portability. First of all, there are different hardware platforms,
588different C library implementations, different versions of the kernel and
589build toolchain... The file "include/platform.h" exists to centralize and
590encapsulate various platform-specific things in one place, so most busybox
591code doesn't have to care where it's running.</p>
592
593<p>To start with, Linux runs on dozens of hardware platforms. We try to test
594each release on x86, x86-64, arm, power pc, and mips. (Since qemu can handle
595all of these, this isn't that hard.) This means we have to care about a number
596of portability issues like endianness, word size, and alignment, all of which
597belong in platform.h. That header handles conditional #includes and gives
598us macros we can use in the rest of our code. At some point in the future
599we might grow a platform.c, possibly even a platform subdirectory. As long
600as the applets themselves don't have to care.</p>
601
602<p>On a related note, we made the "default signedness of char varies" problem
603go away by feeding the compiler -funsigned-char. This gives us consistent
604behavior on all platforms, and defaults to 8-bit clean text processing (which
605gets us halfway to UTF-8 support). NOMMU support is less easily separated
606(see the tips section later in this document), but we're working on it.</p>
607
608<p>Another type of portability is build environments: we unapologetically use
609a number of gcc and glibc extensions (as does the Linux kernel), but these have
610been picked up by packages like uClibc, TCC, and Intel's C Compiler. As for
611gcc, we take advantage of newer compiler optimizations to get the smallest
612possible size, but we also regression test against an older build environment
613using the Red Hat 9 image at "http://busybox.net/downloads/qemu". This has a
6142.4 kernel, gcc 3.2, make 3.79.1, and glibc 2.3, and is the oldest
615build/deployment environment we still put any effort into maintaining. (If
616anyone takes an interest in older kernels you're welcome to submit patches,
617but the effort would probably be better spent
618<a href="http://www.selenic.com/linux-tiny/">trimming
619down the 2.6 kernel</a>.) Older gcc versions than that are uninteresting since
620we now use c99 features, although
621<a href="http://fabrice.bellard.free.fr/tcc/">tcc</a> might be worth a
622look.</p>
623
624<p>We also test busybox against the current release of uClibc. Older versions
625of uClibc aren't very interesting (they were buggy, and uClibc wasn't really
626usable as a general-purpose C library before version 0.9.26 anyway).</p>
627
628<p>Other unix implementations are mostly uninteresting, since Linux binaries
629have become the new standard for portable Unix programs. Specifically,
630the ubiquity of Linux was cited as the main reason the Intel Binary
631Compatability Standard 2 died, by the standards group organized to name a
632successor to ibcs2: <a href="http://www.telly.org/86open/">the 86open
633project</a>. That project disbanded in 1999 with the endorsement of an
634existing standard: Linux ELF binaries. Since then, the major players at the
635time (such as <a
636href=http://www-03.ibm.com/servers/aix/products/aixos/linux/index.html>AIX</a>, <a
637href=http://www.sun.com/software/solaris/ds/linux_interop.jsp#3>Solaris</a>, and
638<a href=http://www.onlamp.com/pub/a/bsd/2000/03/17/linuxapps.html>FreeBSD</a>)
639have all either grown Linux support or folded.</p>
640
641<p>The major exceptions are newcomer MacOS X, some embedded environments
642(such as newlib+libgloss) which provide a posix environment but not a full
643Linux environment, and environments like Cygwin that provide only partial Linux
644emulation. Also, some embedded Linux systems run a Linux kernel but amputate
645things like the /proc directory to save space.</p>
646
647<p>Supporting these systems is largely a question of providing a clean subset
648of BusyBox's functionality -- whichever applets can easily be made to
649work in that environment. Annotating the configuration system to
650indicate which applets require which prerequisites (such as procfs) is
651also welcome. Other efforts to support these systems (swapping #include
652files to build in different environments, adding adapter code to platform.h,
653adding more extensive special-case supporting infrastructure such as mount's
654legacy mtab support) are handled on a case-by-case basis. Support that can be
655cleanly hidden in platform.h is reasonably attractive, and failing that
656support that can be cleanly separated into a separate conditionally compiled
657file is at least worth a look. Special-case code in the body of an applet is
658something we're trying to avoid.</p>
659
660<h2><a name="tips" />Programming tips and tricks.</a></h2>
661
662<p>Various things busybox uses that aren't particularly well documented
663elsewhere.</p>
664
665<h2><a name="tips_encrypted_passwords">Encrypted Passwords</a></h2>
666
667<p>Password fields in /etc/passwd and /etc/shadow are in a special format.
668If the first character isn't '$', then it's an old DES style password. If
669the first character is '$' then the password is actually three fields
670separated by '$' characters:</p>
671<pre>
672 <b>$type$salt$encrypted_password</b>
673</pre>
674
675<p>The "type" indicates which encryption algorithm to use: 1 for MD5 and 2 for SHA1.</p>
676
677<p>The "salt" is a bunch of ramdom characters (generally 8) the encryption
678algorithm uses to perturb the password in a known and reproducible way (such
679as by appending the random data to the unencrypted password, or combining
680them with exclusive or). Salt is randomly generated when setting a password,
681and then the same salt value is re-used when checking the password. (Salt is
682thus stored unencrypted.)</p>
683
684<p>The advantage of using salt is that the same cleartext password encrypted
685with a different salt value produces a different encrypted value.
686If each encrypted password uses a different salt value, an attacker is forced
687to do the cryptographic math all over again for each password they want to
688check. Without salt, they could simply produce a big dictionary of commonly
689used passwords ahead of time, and look up each password in a stolen password
690file to see if it's a known value. (Even if there are billions of possible
691passwords in the dictionary, checking each one is just a binary search against
692a file only a few gigabytes long.) With salt they can't even tell if two
693different users share the same password without guessing what that password
694is and decrypting it. They also can't precompute the attack dictionary for
695a specific password until they know what the salt value is.</p>
696
697<p>The third field is the encrypted password (plus the salt). For md5 this
698is 22 bytes.</p>
699
700<p>The busybox function to handle all this is pw_encrypt(clear, salt) in
701"libbb/pw_encrypt.c". The first argument is the clear text password to be
702encrypted, and the second is a string in "$type$salt$password" format, from
703which the "type" and "salt" fields will be extracted to produce an encrypted
704value. (Only the first two fields are needed, the third $ is equivalent to
705the end of the string.) The return value is an encrypted password in
706/etc/passwd format, with all three $ separated fields. It's stored in
707a static buffer, 128 bytes long.</p>
708
709<p>So when checking an existing password, if pw_encrypt(text,
710old_encrypted_password) returns a string that compares identical to
711old_encrypted_password, you've got the right password. When setting a new
712password, generate a random 8 character salt string, put it in the right
713format with sprintf(buffer, "$%c$%s", type, salt), and feed buffer as the
714second argument to pw_encrypt(text,buffer).</p>
715
716<h2><a name="tips_vfork">Fork and vfork</a></h2>
717
718<p>On systems that haven't got a Memory Management Unit, fork() is unreasonably
719expensive to implement (and sometimes even impossible), so a less capable
720function called vfork() is used instead. (Using vfork() on a system with an
721MMU is like pounding a nail with a wrench. Not the best tool for the job, but
722it works.)</p>
723
724<p>Busybox hides the difference between fork() and vfork() in
725libbb/bb_fork_exec.c. If you ever want to fork and exec, use bb_fork_exec()
726(which returns a pid and takes the same arguments as execve(), although in
727this case envp can be NULL) and don't worry about it. This description is
728here in case you want to know why that does what it does.</p>
729
730<p>Implementing fork() depends on having a Memory Management Unit. With an
731MMU then you can simply set up a second set of page tables and share the
732physical memory via copy-on-write. So a fork() followed quickly by exec()
733only copies a few pages of the parent's memory, just the ones it changes
734before freeing them.</p>
735
736<p>With a very primitive MMU (using a base pointer plus length instead of page
737tables, which can provide virtual addresses and protect processes from each
738other, but no copy on write) you can still implement fork. But it's
739unreasonably expensive, because you have to copy all the parent process'
740memory into the new process (which could easily be several megabytes per fork).
741And you have to do this even though that memory gets freed again as soon as the
742exec happens. (This is not just slow and a waste of space but causes memory
743usage spikes that can easily cause the system to run out of memory.)</p>
744
745<p>Without even a primitive MMU, you have no virtual addresses. Every process
746can reach out and touch any other process' memory, because all pointers are to
747physical addresses with no protection. Even if you copy a process' memory to
748new physical addresses, all of its pointers point to the old objects in the
749old process. (Searching through the new copy's memory for pointers and
750redirect them to the new locations is not an easy problem.)</p>
751
752<p>So with a primitive or missing MMU, fork() is just not a good idea.</p>
753
754<p>In theory, vfork() is just a fork() that writeably shares the heap and stack
755rather than copying it (so what one process writes the other one sees). In
756practice, vfork() has to suspend the parent process until the child does exec,
757at which point the parent wakes up and resumes by returning from the call to
758vfork(). All modern kernel/libc combinations implement vfork() to put the
759parent to sleep until the child does its exec. There's just no other way to
760make it work: the parent has to know the child has done its exec() or exit()
761before it's safe to return from the function it's in, so it has to block
762until that happens. In fact without suspending the parent there's no way to
763even store separate copies of the return value (the pid) from the vfork() call
764itself: both assignments write into the same memory location.</p>
765
766<p>One way to understand (and in fact implement) vfork() is this: imagine
767the parent does a setjmp and then continues on (pretending to be the child)
768until the exec() comes around, then the _exec_ does the actual fork, and the
769parent does a longjmp back to the original vfork call and continues on from
770there. (It thus becomes obvious why the child can't return, or modify
771local variables it doesn't want the parent to see changed when it resumes.)
772
773<p>Note a common mistake: the need for vfork doesn't mean you can't have two
774processes running at the same time. It means you can't have two processes
775sharing the same memory without stomping all over each other. As soon as
776the child calls exec(), the parent resumes.</p>
777
778<p>If the child's attempt to call exec() fails, the child should call _exit()
779rather than a normal exit(). This avoids any atexit() code that might confuse
780the parent. (The parent should never call _exit(), only a vforked child that
781failed to exec.)</p>
782
783<p>(Now in theory, a nommu system could just copy the _stack_ when it forks
784(which presumably is much shorter than the heap), and leave the heap shared.
785Even with no MMU at all
786In practice, you've just wound up in a multi-threaded situation and you can't
787do a malloc() or free() on your heap without freeing the other process' memory
788(and if you don't have the proper locking for being threaded, corrupting the
789heap if both of you try to do it at the same time and wind up stomping on
790each other while traversing the free memory lists). The thing about vfork is
791that it's a big red flag warning "there be dragons here" rather than
792something subtle and thus even more dangerous.)</p>
793
794<h2><a name="tips_sort_read">Short reads and writes</a></h2>
795
796<p>Busybox has special functions, bb_full_read() and bb_full_write(), to
797check that all the data we asked for got read or written. Is this a real
798world consideration? Try the following:</p>
799
800<pre>while true; do echo hello; sleep 1; done | tee out.txt</pre>
801
802<p>If tee is implemented with bb_full_read(), tee doesn't display output
803in real time but blocks until its entire input buffer (generally a couple
804kilobytes) is read, then displays it all at once. In that case, we _want_
805the short read, for user interface reasons. (Note that read() should never
806return 0 unless it has hit the end of input, and an attempt to write 0
807bytes should be ignored by the OS.)</p>
808
809<p>As for short writes, play around with two processes piping data to each
810other on the command line (cat bigfile | gzip &gt; out.gz) and suspend and
811resume a few times (ctrl-z to suspend, "fg" to resume). The writer can
812experience short writes, which are especially dangerous because if you don't
813notice them you'll discard data. They can also happen when a system is under
814load and a fast process is piping to a slower one. (Such as an xterm waiting
815on x11 when the scheduler decides X is being a CPU hog with all that
816text console scrolling...)</p>
817
818<p>So will data always be read from the far end of a pipe at the
819same chunk sizes it was written in? Nope. Don't rely on that. For one
820counterexample, see <a href="http://www.faqs.org/rfcs/rfc896.html">rfc 896
821for Nagle's algorithm</a>, which waits a fraction of a second or so before
822sending out small amounts of data through a TCP/IP connection in case more
823data comes in that can be merged into the same packet. (In case you were
824wondering why action games that use TCP/IP set TCP_NODELAY to lower the latency
825on their their sockets, now you know.)</p>
826
827<h2><a name="tips_memory">Memory used by relocatable code, PIC, and static linking.</a></h2>
828
829<p>The downside of standard dynamic linking is that it results in self-modifying
830code. Although each executable's pages are mmaped() into a process' address
831space from the executable file and are thus naturally shared between processes
832out of the page cache, the library loader (ld-linux.so.2 or ld-uClibc.so.0)
833writes to these pages to supply addresses for relocatable symbols. This
834dirties the pages, triggering copy-on-write allocation of new memory for each
835processes' dirtied pages.</p>
836
837<p>One solution to this is Position Independent Code (PIC), a way of linking
838a file so all the relocations are grouped together. This dirties fewer
839pages (often just a single page) for each process' relocations. The down
840side is this results in larger executables, which take up more space on disk
841(and a correspondingly larger space in memory). But when many copies of the
842same program are running, PIC dynamic linking trades a larger disk footprint
843for a smaller memory footprint, by sharing more pages.</p>
844
845<p>A third solution is static linking. A statically linked program has no
846relocations, and thus the entire executable is shared between all running
847instances. This tends to have a significantly larger disk footprint, but
848on a system with only one or two executables, shared libraries aren't much
849of a win anyway.</p>
850
851<p>You can tell the glibc linker to display debugging information about its
852relocations with the environment variable "LD_DEBUG". Try
853"LD_DEBUG=help /bin/true" for a list of commands. Learning to interpret
854"LD_DEBUG=statistics cat /proc/self/statm" could be interesting.</p>
855
856<p>For more on this topic, here's Rich Felker:</p>
857<blockquote>
858<p>Dynamic linking (without fixed load addresses) fundamentally requires
859at least one dirty page per dso that uses symbols. Making calls (but
860never taking the address explicitly) to functions within the same dso
861does not require a dirty page by itself, but will with ELF unless you
862use -Bsymbolic or hidden symbols when linking.</p>
863
864<p>ELF uses significant additional stack space for the kernel to pass all
865the ELF data structures to the newly created process image. These are
866located above the argument list and environment. This normally adds 1
867dirty page to the process size.</p>
868
869<p>The ELF dynamic linker has its own data segment, adding one or more
870dirty pages. I believe it also performs relocations on itself.</p>
871
872<p>The ELF dynamic linker makes significant dynamic allocations to manage
873the global symbol table and the loaded dso's. This data is never
874freed. It will be needed again if libdl is used, so unconditionally
875freeing it is not possible, but normal programs do not use libdl. Of
876course with glibc all programs use libdl (due to nsswitch) so the
877issue was never addressed.</p>
878
879<p>ELF also has the issue that segments are not page-aligned on disk.
880This saves up to 4k on disk, but at the expense of using an additional
881dirty page in most cases, due to a large portion of the first data
882page being filled with a duplicate copy of the last text page.</p>
883
884<p>The above is just a partial list of the tiny memory penalties of ELF
885dynamic linking, which eventually add up to quite a bit. The smallest
886I've been able to get a process down to is 8 dirty pages, and the
887above factors seem to mostly account for it (but some were difficult
888to measure).</p>
889</blockquote>
890
891<h2><a name="tips_kernel_headers"></a>Including kernel headers</h2>
892
893<p>The "linux" or "asm" directories of /usr/include contain Linux kernel
894headers, so that the C library can talk directly to the Linux kernel. In
895a perfect world, applications shouldn't include these headers directly, but
896we don't live in a perfect world.</p>
897
898<p>For example, Busybox's losetup code wants linux/loop.c because nothing else
899#defines the structures to call the kernel's loopback device setup ioctls.
900Attempts to cut and paste the information into a local busybox header file
901proved incredibly painful, because portions of the loop_info structure vary by
902architecture, namely the type __kernel_dev_t has different sizes on alpha,
903arm, x86, and so on. Meaning we either #include <linux/posix_types.h> or
904we hardwire #ifdefs to check what platform we're building on and define this
905type appropriately for every single hardware architecture supported by
906Linux, which is simply unworkable.</p>
907
908<p>This is aside from the fact that the relevant type defined in
909posix_types.h was renamed to __kernel_old_dev_t during the 2.5 series, so
910to cut and paste the structure into our header we have to #include
911<linux/version.h> to figure out which name to use. (What we actually do is
912check if we're building on 2.6, and if so just use the new 64 bit structure
913instead to avoid the rename entirely.) But we still need the version
914check, since 2.4 didn't have the 64 bit structure.</p>
915
916<p>The BusyBox developers spent <u>two years</u> trying to figure
917out a clean way to do all this. There isn't one. The losetup in the
918util-linux package from kernel.org isn't doing it cleanly either, they just
919hide the ugliness by nesting #include files. Their mount/loop.h
920#includes "my_dev_t.h", which #includes <linux/posix_types.h> and
921<linux/version.h> just like we do. There simply is no alternative.</p>
922
923<p>Just because directly #including kernel headers is sometimes
924unavoidable doesn't me we should include them when there's a better
925way to do it. However, block copying information out of the kernel headers
926is not a better way.</p>
927
928<h2><a name="who">Who are the BusyBox developers?</a></h2>
929
930<p>The following login accounts currently exist on busybox.net. (I.E. these
931people can commit <a href="http://busybox.net/downloads/patches">patches</a>
932into subversion for the BusyBox, uClibc, and buildroot projects.)</p>
933
934<pre>
935aldot :Bernhard Fischer
936andersen :Erik Andersen <- uClibc and BuildRoot maintainer.
937bug1 :Glenn McGrath
938davidm :David McCullough
939gkajmowi :Garrett Kajmowicz <- uClibc++ maintainer
940jbglaw :Jan-Benedict Glaw
941jocke :Joakim Tjernlund
942landley :Rob Landley <- BusyBox maintainer
943lethal :Paul Mundt
944mjn3 :Manuel Novoa III
945osuadmin :osuadmin
946pgf :Paul Fox
947pkj :Peter Kjellerstedt
948prpplague :David Anders
949psm :Peter S. Mazinger
950russ :Russ Dill
951sandman :Robert Griebl
952sjhill :Steven J. Hill
953solar :Ned Ludd
954timr :Tim Riker
955tobiasa :Tobias Anderberg
956vapier :Mike Frysinger
957</pre>
958
959<p>The following accounts used to exist on busybox.net, but don't anymore so
960I can't ask /etc/passwd for their names. (If anybody would like to make
961a stab at it...)</p>
962
963<pre>
964aaronl
965beppu
966dwhedon
967erik : Also Erik Andersen?
968gfeldman
969jimg
970kraai
971markw
972miles
973proski
974rjune
975tausq
976vodz :Vladimir N. Oleynik
977</pre>
978
979
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000980<br>
981<br>
982<br>
983
984<!--#include file="footer.html" -->