diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-21 22:43:07 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-06-21 22:43:07 +0000 |
commit | 0a1250fb2d45f95b8d8dd8aa1ac8303c9e27cf1c (patch) | |
tree | 10d1ac913d04b183c566460f7d740e8c6f16d342 | |
parent | 777114d3e37eddf58bfb5dfa44a58248d8780fc7 (diff) | |
download | busybox-w32-0a1250fb2d45f95b8d8dd8aa1ac8303c9e27cf1c.tar.gz busybox-w32-0a1250fb2d45f95b8d8dd8aa1ac8303c9e27cf1c.tar.bz2 busybox-w32-0a1250fb2d45f95b8d8dd8aa1ac8303c9e27cf1c.zip |
Web site updates.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@686 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | docs/busybox.net/images/background.png | bin | 4711 -> 0 bytes | |||
-rw-r--r-- | docs/busybox.net/index.html | 258 | ||||
-rw-r--r-- | docs/busybox.net/oldnews.html | 286 |
3 files changed, 329 insertions, 215 deletions
diff --git a/docs/busybox.net/images/background.png b/docs/busybox.net/images/background.png deleted file mode 100644 index 11666cedb..000000000 --- a/docs/busybox.net/images/background.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/docs/busybox.net/index.html b/docs/busybox.net/index.html index d7ceabd3f..7140470b0 100644 --- a/docs/busybox.net/index.html +++ b/docs/busybox.net/index.html | |||
@@ -5,7 +5,7 @@ | |||
5 | <TITLE>BusyBox</TITLE> | 5 | <TITLE>BusyBox</TITLE> |
6 | </HEAD> | 6 | </HEAD> |
7 | 7 | ||
8 | <body text="#000000" alink="#660000" link="#660000" bgcolor="#ffffff" vlink="#660000" background="images/background.png" > | 8 | <body text="#000000" alink="#660000" link="#660000" bgcolor="#dee2de" vlink="#660000"> |
9 | 9 | ||
10 | <basefont face="lucida, helvetica, arial" size="3"> | 10 | <basefont face="lucida, helvetica, arial" size="3"> |
11 | 11 | ||
@@ -57,7 +57,11 @@ Erik Andersen</a>, and its ongoing development is being sponsored by | |||
57 | <p> | 57 | <p> |
58 | BusyBox is licensed under the | 58 | BusyBox is licensed under the |
59 | <a href="http://www.gnu.org/copyleft/gpl.html">GNU GENERAL PUBLIC LICENSE</a> | 59 | <a href="http://www.gnu.org/copyleft/gpl.html">GNU GENERAL PUBLIC LICENSE</a> |
60 | <p> | ||
60 | 61 | ||
62 | <H3>NEW!</h3> | ||
63 | BusyBox now has a mailing list <a href="http://opensource.lineo.com/lists/busybox/">mailing list</a>! | ||
64 | To subscribe, go and visit <a href="http://opensource.lineo.com/mailman/listinfo/busybox">this page</a>. | ||
61 | 65 | ||
62 | <!-- Begin Download section --> | 66 | <!-- Begin Download section --> |
63 | 67 | ||
@@ -70,6 +74,12 @@ BusyBox is licensed under the | |||
70 | <ul> | 74 | <ul> |
71 | <li> Source for the latest release can always be downloaded from | 75 | <li> Source for the latest release can always be downloaded from |
72 | <a href="ftp://ftp.lineo.com/pub/busybox">ftp://ftp.lineo.com/pub/busybox</a>. | 76 | <a href="ftp://ftp.lineo.com/pub/busybox">ftp://ftp.lineo.com/pub/busybox</a>. |
77 | <li> BusyBox now has its own publically browsable | ||
78 | <a href="http://opensource.lineo.com/cgi-bin/cvsweb/busybox/">CVS tree</a>, | ||
79 | anonymous | ||
80 | <a href="http://opensource.lineo.com/cvs_anon.html">CVS access</a>, and | ||
81 | for those that are actively contributing there is even | ||
82 | <a href="http://opensource.lineo.com/cvs_write.html">CVS write access</a>. | ||
73 | </ul> | 83 | </ul> |
74 | 84 | ||
75 | 85 | ||
@@ -86,155 +96,35 @@ BusyBox is licensed under the | |||
86 | 96 | ||
87 | <ul> | 97 | <ul> |
88 | 98 | ||
89 | <p> <li> <b>19 April 2000 -- syslogd bugfix</b> | 99 | <p> <li> <b>21 June 2000 -- BusyBox 0.45 released</b> |
90 | <br> | ||
91 | Turns out that there was still a bug in busybox syslogd. | ||
92 | For example, with the following test app: | ||
93 | <pre> | ||
94 | #include <syslog.h> | ||
95 | |||
96 | int do_log(char* msg, int delay) | ||
97 | { | ||
98 | openlog("testlog", LOG_PID, LOG_DAEMON); | ||
99 | while(1) { | ||
100 | syslog(LOG_ERR, "%s: testing one, two, three\n", msg); | ||
101 | sleep(delay); | ||
102 | } | ||
103 | closelog(); | ||
104 | return(0); | ||
105 | }; | ||
106 | |||
107 | int main(void) | ||
108 | { | ||
109 | if (fork()==0) | ||
110 | do_log("A", 2); | ||
111 | do_log("B", 3); | ||
112 | } | ||
113 | </pre> | ||
114 | it should be logging stuff from both "A" and "B". As released in 0.43 only stuff | ||
115 | from "A" would have been logged. This means that if init tries to log something | ||
116 | while say ppp has the syslog open, init would block (which is bad, bad, bad). | ||
117 | <p> | ||
118 | Karl M. Hegbloom has created a | ||
119 | <a href="ftp://ftp.lineo.com/pub/busybox/busybox-0.43-syslog_patch">fix for the problem</a>. | ||
120 | Thanks Karl! | ||
121 | |||
122 | |||
123 | <p> <li> <b>18 April 2000 -- BusyBox 0.43 released (finally!)</b> | ||
124 | <br> | ||
125 | I have finally gotten everything into a state where I feel pretty | ||
126 | good about things. This is definitely the most stable, solid release | ||
127 | so far. A lot of bugs have been fixed, and the following new apps | ||
128 | have been added: sh, basename, dirname, killall, uptime, | ||
129 | freeramdisk, tr, echo, test, and usleep. Tar has been completely | ||
130 | rewritten from scratch. Bss size has also been greatly reduced. | ||
131 | More details are available in the | ||
132 | <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">changelog</a>. | ||
133 | Oh, and as a special bonus, I wrote some fairly comprehensive | ||
134 | <em>documentation</em>, complete with examples and full usage information. | ||
135 | |||
136 | <p> | ||
137 | Many thanks go out to the fine people that have helped by submitting patches | ||
138 | and bug reports; particularly instrumental in helping for this release were | ||
139 | Karl Hegbloom, Pavel Roskin, Friedrich Vedder, Emanuele Caratti, | ||
140 | Bob Tinsley, Nicolas Pitre, Avery Pennarun, Arne Bernin, John Beppu, and Jim Gleason. | ||
141 | There were others so if I somehow forgot to mention you, I'm very sorry. | ||
142 | <p> | ||
143 | |||
144 | You can grab BusyBox 0.43 tarballs <a href="ftp://ftp.lineo.com/pub/busybox/">here</a>. | ||
145 | |||
146 | <p> <li> <b>9 April 2000 -- BusyBox 0.43 pre release</b> | ||
147 | <br> | ||
148 | Unfortunately, I have not yet finished all the things I want to | ||
149 | do for BusyBox 0.43, so I am posting this pre-release for people | ||
150 | to poke at. This contains my complete rewrite of tar, which now weighs in at | ||
151 | 5k (7k with all options turned on) and works for reading and writing | ||
152 | tarballs (which it does correctly for everything I have been able to throw | ||
153 | at it). Tar also (optionally) supports the "--exclude" option (mainly because | ||
154 | the Linux Router Project folks asked for it). This also has a pre-release | ||
155 | of the micro shell I have been writing. This pre-release should be stable | ||
156 | enough for production use -- it just isn't a release since I have some structural | ||
157 | changes I still want to make. | ||
158 | <p> | ||
159 | The pre-release can be found <a href="ftp://ftp.lineo.com/pub/busybox/">here</a>. | ||
160 | Please let me know ASAP if you find <em>any</em> bugs. | ||
161 | |||
162 | <p> <li> <b>28 March 2000 -- Andersen Baby Boy release</b> | ||
163 | <br> | ||
164 | I am pleased to announce that on Tuesday March 28th at 5:48pm, weighing in at 7 | ||
165 | lbs. 12 oz, Micah Erik Andersen was born at LDS Hospital here in Salt Lake City. | ||
166 | He was born in the emergency room less then 5 minutes after we arrived -- and | ||
167 | it was such a relief that we even made it to the hospital at all. Despite the | ||
168 | fact that I was driving at an amazingly unlawful speed and honking at everybody | ||
169 | and thinking decidedly unkind thoughts about the people in our way, my wife | ||
170 | (inconsiderate of my feelings and complete lack of medical training) was lying | ||
171 | down in the back seat saying things like "I think I need to start pushing now" | ||
172 | (which she then proceeded to do despite my best encouraging statements to the | ||
173 | contrary). | ||
174 | <p> | ||
175 | Anyway, I'm glad to note that despite the much-faster-than-we-were-expecting | ||
176 | labor, both Shaunalei and our new baby boy are doing wonderfully. | ||
177 | <p> | ||
178 | So now that I am done with my excuse for the slow release cycle... | ||
179 | Progress on the next release of BusyBox has been slow but steady. I expect | ||
180 | to have a release sometime during the first week of April. This release will | ||
181 | include a number of important changes, including the addition of a shell, a | ||
182 | re-write of tar (to accommodate the Linux Router Project), and syslogd can now | ||
183 | accept multiple concurrent connections, fixing lots of unexpected blocking | ||
184 | problems. | ||
185 | |||
186 | |||
187 | <p> <li> <b>11 February 2000 -- BusyBox 0.42 released</b> | ||
188 | <br> | ||
189 | |||
190 | This is the most solid BusyBox release so far. Many, many | ||
191 | bugs have been fixed. See the | ||
192 | <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">changelog</a> for details. | ||
193 | |||
194 | Of particular interest, init will now cleanly unmount | ||
195 | filesystems on reboot, cp and mv have been rewritten and | ||
196 | behave much better, and mount and umount no longer leak | ||
197 | loop devices. Many thanks go out to Randolph Chung, | ||
198 | Karl M. Hegbloom, Taketoshi Sano, and Pavel Roskin for | ||
199 | their hard work on this release of BusyBox. Please pound | ||
200 | on it and let me know if you find any bugs. | ||
201 | |||
202 | <p> <li> <b>19 January 2000 -- BusyBox 0.41 released</b> | ||
203 | <br> | ||
204 | |||
205 | This release includes bugfixes to cp, mv, logger, true, false, | ||
206 | mkdir, syslogd, and init. New apps include wc, hostid, | ||
207 | logname, tty, whoami, and yes. New features include loop device | ||
208 | support in mount and umount, and better TERM handling by init. | ||
209 | The changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | ||
210 | |||
211 | <p> <li> <b>7 January 2000 -- BusyBox 0.40 released</b> | ||
212 | <br> | 100 | <br> |
213 | 101 | ||
214 | This release includes bugfixes to init (now includes inittab support), | 102 | This release has been slow in coming, but is very solid at this |
215 | syslogd, head, logger, du, grep, cp, mv, sed, dmesg, ls, kill, gunzip, and mknod. | 103 | point. BusyBox now supports libc5 as well as GNU libc. This |
216 | New apps include sort, uniq, lsmod, rmmod, fbset, and loadacm. | 104 | release provides the following new apps: cut, tr, insmod, ar, |
217 | In particular, this release fixes an important bug in tar which | 105 | mktemp, ,setkeycodes md5sum, uuencode, uudecode, which , and |
218 | in some cases produced serious security problems. | 106 | telnet. There are bug fixes for just about every app as well (see |
219 | As always, the changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | 107 | the <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">changelog</a> for |
220 | 108 | details). | |
221 | <p> <li> <b>11 December 1999 -- BusyBox Website</b> | 109 | <p> |
222 | <br> | 110 | Also, some exciting infrastructure news! Busybox now has its own |
223 | I have received permission from Bruce Perens (the original author of BusyBox) | 111 | <a href="http://opensource.lineo.com/lists/busybox/">mailing list</a>, |
224 | to set up this site as the new primary website for BusyBox. This website | 112 | publically browsable |
225 | will always contain pointers to the latest and greatest, and will also | 113 | <a href="http://opensource.lineo.com/cgi-bin/cvsweb/busybox/">CVS tree</a>, |
226 | contain the latest documentation on how to use BusyBox, what it can do, | 114 | anonymous |
227 | what arguments its apps support, etc. | 115 | <a href="http://opensource.lineo.com/cvs_anon.html">CVS access</a>, and |
228 | 116 | for those that are actively contributing there is even | |
229 | <p> <li> <b>10 December 1999 -- BusyBox 0.39 released</b> | 117 | <a href="http://opensource.lineo.com/cvs_write.html">CVS write access</a>. |
118 | I think this will be a huge help to the ongoing development of BusyBox. | ||
119 | <p> | ||
120 | Many thanks go out to the many people that have contributed to this release | ||
121 | of BusyBox! | ||
122 | |||
123 | |||
124 | |||
125 | <p> <li> <b>Old News</b> | ||
230 | <br> | 126 | <br> |
231 | This release includes fixes to init, reboot, halt, kill, and ls, and contains | 127 | For the old news, visit <a href="http://busybox.lineo.com/oldnews.html">the old news page</a>. |
232 | the new apps ping, hostname, mkfifo, free, tail, du, tee, and head. A full | ||
233 | changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | ||
234 | <p> <li> <b>5 December 1999 -- BusyBox 0.38 released</b> | ||
235 | <br> | ||
236 | This release includes fixes to tar, cat, ls, dd, rm, umount, find, df, | ||
237 | and make install, and includes new apps syslogd/klogd and logger. | ||
238 | </ul> | 128 | </ul> |
239 | 129 | ||
240 | 130 | ||
@@ -259,74 +149,6 @@ Current documentation for BusyBox includes: | |||
259 | </ul> | 149 | </ul> |
260 | 150 | ||
261 | 151 | ||
262 | <!-- Begin Links section --> | ||
263 | |||
264 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> | ||
265 | <A NAME="related"> | ||
266 | <BIG><B> | ||
267 | Related Software</A> | ||
268 | </B></BIG> | ||
269 | </A> | ||
270 | </TD></TR> | ||
271 | <TR><TD BGCOLOR="#eeeee0"> | ||
272 | |||
273 | <ul> | ||
274 | |||
275 | <li><a href="http://www.debian.org/Packages/unstable/shells/ash.html">ash</a> | ||
276 | is a very small Bourne shell. If you need a shell for your embedded systems, this is it. | ||
277 | <p> | ||
278 | |||
279 | <li><a href="http://www.debian.org/Packages/unstable/base/ae.html">ae</a> | ||
280 | is a tiny full-screen text editor with both modal (vi-like) and modeless | ||
281 | (emacs-like) modes, determined by an ae.rc config file. It makes a nice editor | ||
282 | if people that don't know "vi" will need to work on your embedded system. | ||
283 | <p> | ||
284 | |||
285 | <li> <a href="http://www.debian.org/Packages/unstable/base/elvis-tiny.html">elvis-tiny</a> | ||
286 | is based on a 1991 Minix version of the elvis "vi" clone. It behaves as one would | ||
287 | expect a minimalist vi to behave, and is very small. | ||
288 | <p> | ||
289 | |||
290 | <li> <a href="http://www.asty.org/nano/">nano</a> | ||
291 | A small GPLed pico clone that makes a nice editor for people that don't know "vi". | ||
292 | <p> | ||
293 | |||
294 | <li><a href="http://www.debian.org/Packages/unstable/net/iproute.html">iproute</a> | ||
295 | Much more flexible replacement for ifconfig, route, etc. It is quite small, and for | ||
296 | most networking applications, it is all you need. It also provides support for extremely | ||
297 | advanced networking and provides Quality of Service(QoS) support, but most people will | ||
298 | just need to use the "ip" command and will not even need to install the rest. | ||
299 | <p> | ||
300 | |||
301 | <li><a href="http://www.debian.org/Packages/unstable/net/pump.html">Pump</a> | ||
302 | This is the DHCP/BOOTP client written by RedHat. When compiled properly, it | ||
303 | gives you dhcp client support for about 35k. | ||
304 | <p> | ||
305 | |||
306 | <li><a href="http://www.pcug.org.au/~dbell/">sash</a> | ||
307 | The Stand Alone SHell. This is a small shell (not Bourne shell compatible) | ||
308 | that is similar to busybox in that it provides a number of common utilities as built-ins. | ||
309 | <p> | ||
310 | |||
311 | <li><a href="http://sourceware.cygnus.com/newlib/">NewLib</a> | ||
312 | This is a small C library intended for use on embedded systems. If you are finding | ||
313 | GNU libc is a bit too big for your applications, try NewLib and it may help. | ||
314 | <p> | ||
315 | |||
316 | <li><a href="http://linuxassembly.org/asmutils.html">asmutils</a> | ||
317 | asmutils is similar to BusyBox in that it provides a number of common application | ||
318 | for embedded systems that are very tiny. In fact, they are a _lot_ smaller than the | ||
319 | equivalent apps in busybox -- but the price you pay for the size is reduced portability | ||
320 | (x86 only) and interfaces that are tied directly to a particular kernel (no libc involved). | ||
321 | <p> | ||
322 | |||
323 | <li><a href="http://tinylogin.lineo.com/">TinyLogin</a> | ||
324 | is a nice embedded tool for handling authentication, changing passwords, | ||
325 | and similar tasks, and which nicely complements BusyBox. | ||
326 | <p> | ||
327 | |||
328 | </ul> | ||
329 | |||
330 | <!-- Begin Projects section --> | 152 | <!-- Begin Projects section --> |
331 | 153 | ||
332 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> | 154 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> |
@@ -373,6 +195,12 @@ Do you use BusyBox? I'd love to know about it and I'd be happy to link to you. | |||
373 | Freshmeat AppIndex record for BusyBox</A> | 195 | Freshmeat AppIndex record for BusyBox</A> |
374 | <p> | 196 | <p> |
375 | 197 | ||
198 | <li> <a href="http://opensource.lineo.com/software.html">Other cool embedded software</a>. | ||
199 | <p> | ||
200 | |||
201 | <li> <a href="http://opensource.lineo.com/">opensource.lineo.com</a>. | ||
202 | <p> | ||
203 | |||
376 | <li> <A HREF="http://www.lineo.com/">Lineo</A> is sponsoring BusyBox development. | 204 | <li> <A HREF="http://www.lineo.com/">Lineo</A> is sponsoring BusyBox development. |
377 | <p> | 205 | <p> |
378 | 206 | ||
diff --git a/docs/busybox.net/oldnews.html b/docs/busybox.net/oldnews.html new file mode 100644 index 000000000..4e92f6b2c --- /dev/null +++ b/docs/busybox.net/oldnews.html | |||
@@ -0,0 +1,286 @@ | |||
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> | ||
2 | |||
3 | <HTML> | ||
4 | <HEAD> | ||
5 | <TITLE>BusyBox</TITLE> | ||
6 | </HEAD> | ||
7 | |||
8 | <body text="#000000" alink="#660000" link="#660000" bgcolor="#dee2de" vlink="#660000"> | ||
9 | |||
10 | <basefont face="lucida, helvetica, arial" size="3"> | ||
11 | |||
12 | |||
13 | <CENTER> | ||
14 | <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2> | ||
15 | <TR> | ||
16 | <td bgcolor="#000000"> | ||
17 | <FONT FACE="lucida, helvetica" COLOR="#ccccc0"> | ||
18 | <B>B u s y B o x</B> | ||
19 | </FONT> | ||
20 | </TD> | ||
21 | </TR> | ||
22 | </TABLE> | ||
23 | <a href="/"><IMG SRC="images/busybox2.jpg" alt="BusyBox" border="0" width="360" height="230"</a><BR> | ||
24 | |||
25 | |||
26 | <TABLE WIDTH=95% CELLSPACING=1 CELLPADDING=4 BORDER=1> | ||
27 | |||
28 | <!-- Begin Older News section --> | ||
29 | |||
30 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> | ||
31 | <A NAME="news"> | ||
32 | <BIG><B> | ||
33 | Older BusyBox News</A> | ||
34 | </B></BIG> | ||
35 | </A> | ||
36 | </TD></TR> | ||
37 | <TR><TD BGCOLOR="#eeeee0"> | ||
38 | |||
39 | <ul> | ||
40 | |||
41 | <p> <li> <b>Take me back to the <a href="http://busybox.lineo.com/">BusyBox</a> web site.</b> | ||
42 | <hr> | ||
43 | |||
44 | <p> <li> <b>19 April 2000 -- syslogd bugfix</b> | ||
45 | <br> | ||
46 | Turns out that there was still a bug in busybox syslogd. | ||
47 | For example, with the following test app: | ||
48 | <pre> | ||
49 | #include <syslog.h> | ||
50 | |||
51 | int do_log(char* msg, int delay) | ||
52 | { | ||
53 | openlog("testlog", LOG_PID, LOG_DAEMON); | ||
54 | while(1) { | ||
55 | syslog(LOG_ERR, "%s: testing one, two, three\n", msg); | ||
56 | sleep(delay); | ||
57 | } | ||
58 | closelog(); | ||
59 | return(0); | ||
60 | }; | ||
61 | |||
62 | int main(void) | ||
63 | { | ||
64 | if (fork()==0) | ||
65 | do_log("A", 2); | ||
66 | do_log("B", 3); | ||
67 | } | ||
68 | </pre> | ||
69 | it should be logging stuff from both "A" and "B". As released in 0.43 only stuff | ||
70 | from "A" would have been logged. This means that if init tries to log something | ||
71 | while say ppp has the syslog open, init would block (which is bad, bad, bad). | ||
72 | <p> | ||
73 | Karl M. Hegbloom has created a | ||
74 | <a href="ftp://ftp.lineo.com/pub/busybox/busybox-0.43-syslog_patch">fix for the problem</a>. | ||
75 | Thanks Karl! | ||
76 | |||
77 | |||
78 | <p> <li> <b>18 April 2000 -- BusyBox 0.43 released (finally!)</b> | ||
79 | <br> | ||
80 | I have finally gotten everything into a state where I feel pretty | ||
81 | good about things. This is definitely the most stable, solid release | ||
82 | so far. A lot of bugs have been fixed, and the following new apps | ||
83 | have been added: sh, basename, dirname, killall, uptime, | ||
84 | freeramdisk, tr, echo, test, and usleep. Tar has been completely | ||
85 | rewritten from scratch. Bss size has also been greatly reduced. | ||
86 | More details are available in the | ||
87 | <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">changelog</a>. | ||
88 | Oh, and as a special bonus, I wrote some fairly comprehensive | ||
89 | <em>documentation</em>, complete with examples and full usage information. | ||
90 | |||
91 | <p> | ||
92 | Many thanks go out to the fine people that have helped by submitting patches | ||
93 | and bug reports; particularly instrumental in helping for this release were | ||
94 | Karl Hegbloom, Pavel Roskin, Friedrich Vedder, Emanuele Caratti, | ||
95 | Bob Tinsley, Nicolas Pitre, Avery Pennarun, Arne Bernin, John Beppu, and Jim Gleason. | ||
96 | There were others so if I somehow forgot to mention you, I'm very sorry. | ||
97 | <p> | ||
98 | |||
99 | You can grab BusyBox 0.43 tarballs <a href="ftp://ftp.lineo.com/pub/busybox/">here</a>. | ||
100 | |||
101 | <p> <li> <b>9 April 2000 -- BusyBox 0.43 pre release</b> | ||
102 | <br> | ||
103 | Unfortunately, I have not yet finished all the things I want to | ||
104 | do for BusyBox 0.43, so I am posting this pre-release for people | ||
105 | to poke at. This contains my complete rewrite of tar, which now weighs in at | ||
106 | 5k (7k with all options turned on) and works for reading and writing | ||
107 | tarballs (which it does correctly for everything I have been able to throw | ||
108 | at it). Tar also (optionally) supports the "--exclude" option (mainly because | ||
109 | the Linux Router Project folks asked for it). This also has a pre-release | ||
110 | of the micro shell I have been writing. This pre-release should be stable | ||
111 | enough for production use -- it just isn't a release since I have some structural | ||
112 | changes I still want to make. | ||
113 | <p> | ||
114 | The pre-release can be found <a href="ftp://ftp.lineo.com/pub/busybox/">here</a>. | ||
115 | Please let me know ASAP if you find <em>any</em> bugs. | ||
116 | |||
117 | <p> <li> <b>28 March 2000 -- Andersen Baby Boy release</b> | ||
118 | <br> | ||
119 | I am pleased to announce that on Tuesday March 28th at 5:48pm, weighing in at 7 | ||
120 | lbs. 12 oz, Micah Erik Andersen was born at LDS Hospital here in Salt Lake City. | ||
121 | He was born in the emergency room less then 5 minutes after we arrived -- and | ||
122 | it was such a relief that we even made it to the hospital at all. Despite the | ||
123 | fact that I was driving at an amazingly unlawful speed and honking at everybody | ||
124 | and thinking decidedly unkind thoughts about the people in our way, my wife | ||
125 | (inconsiderate of my feelings and complete lack of medical training) was lying | ||
126 | down in the back seat saying things like "I think I need to start pushing now" | ||
127 | (which she then proceeded to do despite my best encouraging statements to the | ||
128 | contrary). | ||
129 | <p> | ||
130 | Anyway, I'm glad to note that despite the much-faster-than-we-were-expecting | ||
131 | labor, both Shaunalei and our new baby boy are doing wonderfully. | ||
132 | <p> | ||
133 | So now that I am done with my excuse for the slow release cycle... | ||
134 | Progress on the next release of BusyBox has been slow but steady. I expect | ||
135 | to have a release sometime during the first week of April. This release will | ||
136 | include a number of important changes, including the addition of a shell, a | ||
137 | re-write of tar (to accommodate the Linux Router Project), and syslogd can now | ||
138 | accept multiple concurrent connections, fixing lots of unexpected blocking | ||
139 | problems. | ||
140 | |||
141 | |||
142 | <p> <li> <b>11 February 2000 -- BusyBox 0.42 released</b> | ||
143 | <br> | ||
144 | |||
145 | This is the most solid BusyBox release so far. Many, many | ||
146 | bugs have been fixed. See the | ||
147 | <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">changelog</a> for details. | ||
148 | |||
149 | Of particular interest, init will now cleanly unmount | ||
150 | filesystems on reboot, cp and mv have been rewritten and | ||
151 | behave much better, and mount and umount no longer leak | ||
152 | loop devices. Many thanks go out to Randolph Chung, | ||
153 | Karl M. Hegbloom, Taketoshi Sano, and Pavel Roskin for | ||
154 | their hard work on this release of BusyBox. Please pound | ||
155 | on it and let me know if you find any bugs. | ||
156 | |||
157 | <p> <li> <b>19 January 2000 -- BusyBox 0.41 released</b> | ||
158 | <br> | ||
159 | |||
160 | This release includes bugfixes to cp, mv, logger, true, false, | ||
161 | mkdir, syslogd, and init. New apps include wc, hostid, | ||
162 | logname, tty, whoami, and yes. New features include loop device | ||
163 | support in mount and umount, and better TERM handling by init. | ||
164 | The changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | ||
165 | |||
166 | <p> <li> <b>7 January 2000 -- BusyBox 0.40 released</b> | ||
167 | <br> | ||
168 | |||
169 | This release includes bugfixes to init (now includes inittab support), | ||
170 | syslogd, head, logger, du, grep, cp, mv, sed, dmesg, ls, kill, gunzip, and mknod. | ||
171 | New apps include sort, uniq, lsmod, rmmod, fbset, and loadacm. | ||
172 | In particular, this release fixes an important bug in tar which | ||
173 | in some cases produced serious security problems. | ||
174 | As always, the changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | ||
175 | |||
176 | <p> <li> <b>11 December 1999 -- BusyBox Website</b> | ||
177 | <br> | ||
178 | I have received permission from Bruce Perens (the original author of BusyBox) | ||
179 | to set up this site as the new primary website for BusyBox. This website | ||
180 | will always contain pointers to the latest and greatest, and will also | ||
181 | contain the latest documentation on how to use BusyBox, what it can do, | ||
182 | what arguments its apps support, etc. | ||
183 | |||
184 | <p> <li> <b>10 December 1999 -- BusyBox 0.39 released</b> | ||
185 | <br> | ||
186 | This release includes fixes to init, reboot, halt, kill, and ls, and contains | ||
187 | the new apps ping, hostname, mkfifo, free, tail, du, tee, and head. A full | ||
188 | changelog can be found <a href="ftp://ftp.lineo.com/pub/busybox/Changelog">here</a>. | ||
189 | <p> <li> <b>5 December 1999 -- BusyBox 0.38 released</b> | ||
190 | <br> | ||
191 | This release includes fixes to tar, cat, ls, dd, rm, umount, find, df, | ||
192 | and make install, and includes new apps syslogd/klogd and logger. | ||
193 | </ul> | ||
194 | |||
195 | |||
196 | <!-- Begin Links section --> | ||
197 | |||
198 | <TR><TD BGCOLOR="#ccccc0" ALIGN=center> | ||
199 | <A NAME="links"> | ||
200 | <BIG><B> | ||
201 | Important Links</A> | ||
202 | </B></BIG> | ||
203 | </A> | ||
204 | </TD></TR> | ||
205 | <TR><TD BGCOLOR="#eeeee0"> | ||
206 | |||
207 | <ul> | ||
208 | |||
209 | <li> <a href="http://busybox.lineo.com/">Take me back to http://busybox.lineo.com/</a>. | ||
210 | <p> | ||
211 | |||
212 | <li> <A HREF="http://perens.com/FreeSoftware/"> | ||
213 | Free Software from Bruce Perens</A><br> | ||
214 | The original idea for BusyBox, and all versions up to 0.26 were written | ||
215 | by <A HREF="mailto:bruce@perens.com">Bruce Perens</a>. This is his BusyBox website. | ||
216 | <p> | ||
217 | |||
218 | <li> <A HREF="http://freshmeat.net/appindex/1999/04/11/923859921.html"> | ||
219 | Freshmeat AppIndex record for BusyBox</A> | ||
220 | <p> | ||
221 | |||
222 | <li> <a href="http://opensource.lineo.com/software.html">Other cool embedded software</a>. | ||
223 | <p> | ||
224 | |||
225 | <li> <a href="http://opensource.lineo.com/">opensource.lineo.com</a>. | ||
226 | <p> | ||
227 | |||
228 | <li> <A HREF="http://www.lineo.com/">Lineo</A> is sponsoring BusyBox development. | ||
229 | <p> | ||
230 | |||
231 | </ul> | ||
232 | |||
233 | |||
234 | <!-- End of Table --> | ||
235 | |||
236 | </TD></TR> | ||
237 | </TABLE> | ||
238 | </P> | ||
239 | |||
240 | |||
241 | |||
242 | <!-- Footer --> | ||
243 | <HR> | ||
244 | <TABLE WIDTH="100%"> | ||
245 | <TR> | ||
246 | <TD> | ||
247 | <font size="-1" face="arial, helvetica, sans-serif"> | ||
248 | Mail all comments, insults, suggestions and bribes to | ||
249 | <a href="mailto:andersen@lineo.com">Erik Andersen</a><BR> | ||
250 | The Busybox logo is copyright 1999,2000, Erik Andersen. | ||
251 | </font> | ||
252 | </TD> | ||
253 | |||
254 | <TD> | ||
255 | <a href="http://www.vim.org"><img border=0 width=88 height=32 | ||
256 | src="images/anim.written.in.vi.gif" | ||
257 | alt="This site created with the vi editor"></a> | ||
258 | </TD> | ||
259 | |||
260 | <TD> | ||
261 | <a href="http://www.gimp.org/"><img border=0 width=88 height=38 | ||
262 | src="images/gfx_by_gimp.gif" alt="Graphics by GIMP"></a> | ||
263 | </TD> | ||
264 | |||
265 | <TD> | ||
266 | <a href="http://www.linuxtoday.com"><img width=90 height=36 | ||
267 | src="images/ltbutton2.jpg" alt="Linux Today"></a> | ||
268 | </TD> | ||
269 | |||
270 | <TD> | ||
271 | <p><a href="http://slashdot.org"><img width=90 height=36 | ||
272 | src="images/sdsmall.gif" alt="Slashdot"></a> | ||
273 | </TD> | ||
274 | |||
275 | <TD> | ||
276 | <a href="http://freshmeat.net"><img width=90 height=36 | ||
277 | src="images/fm.mini.jpg" alt="Freshmeat"></a> | ||
278 | </TD> | ||
279 | |||
280 | </TR> | ||
281 | </TABLE> | ||
282 | |||
283 | |||
284 | </BODY> | ||
285 | </HTML> | ||
286 | |||