blob: d3e45be7c7a7319bc9d83ec45668278fce6613b6 [file] [log] [blame]
Eric Andersen539eef62003-12-10 12:08:20 +00001<!--#include file="header.html" -->
2
Eric Andersen539eef62003-12-10 12:08:20 +00003<ul>
Denis Vlasenkob6fe1002008-06-05 01:17:49 +00004 <li><b>8 May 2008 -- BusyBox 1.10.3 (stable)</b>
5 <p><a href=http://busybox.net/downloads/busybox-1.10.3.tar.bz2>BusyBox 1.10.3</a>.
6 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_10_stable/>svn</a>,
7 <a href=http://busybox.net/downloads/fixes-1.10.3/>patches</a>,
8 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
9 <p>
10 Bugfix-only release for 1.10.x branch. It contains fixes for dnsd, fuser, hush,
11 ip, mdev and syslogd.
12 <p>
13 <a href=http://busybox.net/~vda/HOWTO_bbox_with_uclibc.txt>How to build static busybox against uclibc</a>
14 <p>
15 The email address gpl@busybox.net is the recommended way to contact
16 the Software Freedom Law Center to report BusyBox license violations.
17 </p>
18
Denis Vlasenko35d16832008-05-08 15:36:54 +000019 <li><b>8 May 2008 -- BusyBox 1.10.2 (stable)</b>
20 <p><a href=http://busybox.net/downloads/busybox-1.10.2.tar.bz2>BusyBox 1.10.2</a>.
21 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_10_stable/>svn</a>,
22 <a href=http://busybox.net/downloads/fixes-1.10.2/>patches</a>,
23 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
24 <p>
25 Bugfix-only release for 1.10.x branch. It contains fixes for echo, httpd, pidof,
26 start-stop-daemon, tar, taskset, tab completion in shells, build system.
27 <p>Please note that mdev was backported from current svn trunk. Please
28 report if you encounter any problems with it.
Denis Vlasenko35d16832008-05-08 15:36:54 +000029 </p>
30
Denis Vlasenko9a7af9f2008-04-19 04:28:21 +000031 <li><b>19 April 2008 -- BusyBox 1.10.1 (stable)</b>
32 <p><a href=http://busybox.net/downloads/busybox-1.10.1.tar.bz2>BusyBox 1.10.1</a>.
33 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_10_stable/>svn</a>,
34 <a href=http://busybox.net/downloads/fixes-1.10.1/>patches</a>,
35 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
36 <p>
37 Bugfix-only release for 1.10.x branch. It contains fixes for
38 fuser, init, less, nameif, tail, taskset, tcpudp, top, udhcp.
Denis Vlasenko9a7af9f2008-04-19 04:28:21 +000039
Denis Vlasenko74f82082008-03-21 20:50:37 +000040 <li><b>21 March 2008 -- BusyBox 1.10.0 (unstable)</b>
41 <p><a href=http://busybox.net/downloads/busybox-1.10.0.tar.bz2>BusyBox 1.10.0</a>.
42 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_10_stable/>svn</a>,
43 <a href=http://busybox.net/downloads/fixes-1.10.0/>patches</a>,
44 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
45
46 <p>Sizes of busybox-1.9.2 and busybox-1.10.0 (with almost full config, static uclibc build):<pre>
47 text data bss dec hex filename
48 781405 679 7500 789584 c0c50 busybox-1.9.2
49 773551 640 7372 781563 becfb busybox-1.10.0
50</pre>
51 <p>Top 10 stack users:<pre>
52busybox-1.9.2: busybox-1.10.0:
53echo_dg 4116 bb_full_fd_action 4112
54bb_full_fd_action 4112 find_list_entry2 4096
55discard_dg 4108 readlink_main 4096
56discard_dg 4096 ipaddr_list_or_flush 3900
57echo_stream 4096 iproute_list_or_flush 3680
58discard_stream 4096 insmod_main 3152
59find_list_entry2 4096 fallbackSort 2952
60readlink_main 4096 do_iproute 2492
61ipaddr_list_or_flush 3900 cal_main 2464
62iproute_list_or_flush 3680 readhere 2308
63</pre>
64
65 <p>New applets: brctl, chat (by Vladimir Dronnikov &lt;dronnikov AT gmail.com&gt;),
66 findfs, ifenslave (closes bug 115), lpd (by Vladimir Dronnikov &lt;dronnikov AT gmail.com&gt;),
67 lpr+lpq (by Walter Harms), script (by Pascal Bellard &lt;pascal.bellard AT ads-lu.com&gt;),
68 sendmail (Vladimir Dronnikov &lt;dronnikov AT gmail.com&gt;), tac, tftpd.
69
70 <p>Made NOMMU-compatible: crond, crontab, ifupdown, inetd, init, runsv, svlogd, tcpsvd, udpsvd.
71
72 <p>Changes since previous release:
73 <ul>
74 <li>globally: add -Wunused-parameter
75 <li>globally: add optimization barrier to all "G trick" locations
76 <li>adduser/addgroup: check username for invalid chars (by Tito &lt;farmatito AT tiscali.it&gt;)
77 <li>adduser: optional support for long options. Closes bug 2134
78 <li>ash: handle "A=1 A=2 B=$A; echo $B". Closes bug 947
79 <li>ash: make ash -c "if set -o barfoo 2&gt;/dev/null; then echo foo; else echo bar; fi" work. Closes bug 1142
80 <li>build system: don't use "gcc -o /dev/null", old gcc can delete /dev/null in this case
81 <li>build system: fixes for cross-compiling on an OS X host
82 <li>build system: make it do without "od -t"
83 <li>build system: pass CFLAGS to link stage too. Closes bug 1376
84 <li>build system: add CONFIG_NOMMU
85 <li>cp: add ENABLE_FEATURE_VERBOSE_CP_MESSAGE. Closes bug 1470
86 <li>crontab: almost complete rewrite
87 <li>dnsd: properly set _src_ IP:port on outgoing UDP packets
88 <li>dpkg: fix bug where existence check was reversed
89 <li>eject: add -s for SCSI- and USB-devices (Nico Erfurth)
90 <li>fdisk: fix a case where break was reached only for DOS labels
91 <li>fsck: don't kill pid -1! (Roy Marples &lt;roy at marples.name&gt;)
92 <li>fsck_minix: fix bug in map_block2: s/(blknr &gt;= 256 * 256)/(blknr &lt; 256 * 256)/
93 <li>fuser: substantial rewrite
94 <li>getopt: add support for "a+" specifier for nonnegative int parameters. By Vladimir Dronnikov &lt;dronnikov at gmail.com&gt;
95 <li>getty: don't try to detect parity on local lines (Joakim Tjernlund &lt;Joakim.Tjernlund at transmode.se&gt;)
96 <li>halt: write wtmp entry if wtmp support is enabled
97 <li>httpd: "HEAD" support. Closes bug 1530
98 <li>httpd: fix bug 2004: wrong argv when interpreter is invoked
99 <li>httpd: fix bug where we did chdir("") if CGI path had only one "/"
100 <li>httpd: fix for POST upload
101 <li>httpd: support for "I:index.xml" syntax (Peter Korsgaard &lt;jacmet AT uclibc.org&gt;)
102 <li>hush: fix a case where none of pipe members could be started because of fork failure
103 <li>hush: more correct handling of piping
104 <li>hush: reinstate `cmd` handling for NOMMU
105 <li>hush: report [v]fork failures
106 <li>hush: set CLOEXEC on script file being executed
107 <li>hush: try to add a bit more of vfork-friendliness
108 <li>inetd: make "udp nowait" work
109 <li>inetd: make inetd IPv6-capable
110 <li>init: add FEATURE_KILL_REMOVED (Eugene Bordenkircher &lt;eugebo AT gmail.com&gt;)
111 <li>init: allow last line of config file to be not terminated by "\n"
112 <li>init: do not die if "/dev/null" is missing
113 <li>init: fix bug 1111: restart actions were not splitting words
114 <li>init: wait for orphaned children too while waiting for sysinit-like processes (harald-tuxbox AT arcor.de)
115 <li>ip route: "ip route" was misbehaving (extra argv+1 ate 1st env var)
116 <li>last: do not go into endless loop on read error
117 <li>less,klogd,syslogd,nc,tcpudp: exit on signal by killing itself, not exit(1)
118 <li>less: "examine" command will not bomb out on bad file name now
119 <li>less: fix bug where backspace wasn't actually deleting chars
120 <li>less: make it a bit more resistant against status line corruption
121 <li>less: improve search when data is not supplied fast enough by stdin - now will try reading for 1-2 seconds before declaring that there is no match. This fixes a very common annoyance with long manpages
122 <li>less: update line input so that it doesn't interfere with screen update. Makes "man bash", [enter], [/], &lt;enter search pattern&gt;, [enter] more usable - manpage now draws even as you enter the pattern!
123 <li>libbb: filename completion matches dangling symlinks too
124 <li>libbb: fix getopt state corruption for NOFORK applets
125 <li>libbb: full_read/write now will report partial data counts prior to error
126 <li>libbb: intrduce and use safe_gethostname. By Tito &lt;farmatito AT tiscali.it&gt;
127 <li>libbb: introduce and use nonblock_safe_read(). Yay! Our shells are immune from this nasty O_NONBLOCK now!
128 <li>login,su: avoid clearing environment with some options, as was intended
129 <li>microcom: read more than 1 byte from device, if possible
130 <li>microcom: split -d (delay) option away from -t
131 <li>mktemp: support -p DIR (Timo Teras &lt;timo.teras at iki.fi&gt;)
132 <li>mount: #ifdef out MOUNT_LABEL code parts if it is not selected
133 <li>mount: add another mount helper call method
134 <li>mount: allow and ignore _netdev option
135 <li>mount: make -f work even without mtab support (Cristian Ionescu-Idbohrn &lt;cristian.ionescu-idbohrn at axis.com&gt;)
136 <li>mount: optional support for -vv verbosity
137 <li>mount: plug a hole where FEATURE_MOUNT_HELPERS could allow execution of arbitrary command
138 <li>mount: recognize "dirsync" (closes bug 835)
139 <li>mount: sanitize environment if called by non-root
140 <li>mount: support for mount by label. Closes bug 1143
141 <li>mount: with -vv -f, say what mount() calls we were going to make
142 <li>msh: create testsuite (based on hush one)
143 <li>msh: don't use floating point in "times" builtin
144 <li>msh: fix Ctrl-C handling with line editing
145 <li>msh: fix for bug 846 ("break" didn't work second time)
146 <li>msh: glob0/glob1/glob2/glob3 were just a sorting routine, removed
147 <li>msh: instead of fixing "ls | cd", "cd | ls" etc disallow builtins in pipes. They make no sense there anyway
148 <li>msh: stop trying to parse variables in "msh SCRIPT VAR=val param". They are passed as ordinary parameters
149 <li>netstat: print control chars as "^C" etc
150 <li>nmeter: fix bug where %[mf] behaves as %[mt]
151 <li>nohup: compat patch by Christoph Gysin &lt;mailinglist.cache at gmail.com&gt;
152 <li>od: handle /proc files (which have filesize 0) correctly
153 <li>patch: don't trash permissions of patched file
154 <li>ps: add conditional support for -o [e]time
155 <li>ps: fix COMMAND column adjustment; overflow in USER and VSZ columns
156 <li>reset: call "stty sane". Closes bug 1414
157 <li>rmdir: optional long options support for Debian users. By Roberto Gordo Saez &lt;roberto.gordo AT gmail.com&gt;
158 <li>run-parts: add --reverse
159 <li>script: correctly handle buffered "tail" of output
160 <li>sed: "n" command must reset "we had successful subst" flag. Closes bug 1214
161 <li>sort: -z outputs NUL terminated lines. Closes bug 1591
162 <li>stty: fix mishandling of control keywords (Ralf Friedl &lt;Ralf.Friedl AT online.de&gt;)
163 <li>switch_root: stop at first non-option. Closes bug 1425
164 <li>syslogd: avoid excessive time() system calls
165 <li>syslogd: don't die if remote host's IP cannot be resolved. Retry resolutions every two minutes instead
166 <li>syslogd: fix shmat error check
167 <li>syslogd: optional support for dropping dups. Closes bug 436
168 <li>syslogd: send "\n"-terminated messages over the network. Fully closes bug 1574
169 <li>syslogd: tighten up hostname handling
170 <li>tail: fix "tail -c 20 /dev/huge_disk" (was taking ages)
171 <li>tar: compat: handle tarballs with only one zero block at the end
172 <li>tar: autodetection of gz/bz2 compressed tarballs. Closes bug 992
173 <li>tar: real support for -p. By Natanael Copa &lt;natanael.copa at gmail.com&gt;
174 <li>tcpudp: narrow down time window where we have no wildcard socket
175 <li>telnetd: use login always, not "sometimes login, sometimes shell"
176 <li>test: fix mishandling of "test ! arg1 op arg2 more args"
177 <li>trylink: instead of build error, disable --gc-sections if GLIBC and STATIC are selected
178 <li>udhcp: make file paths configurable
179 <li>udhcp: optional support for non-standard DHCP ports
180 <li>udhcp: set correct op byte in the packet for DHCPDECLINE
181 <li>udhcpc: filter unwanted packets in kernel (Cristian Ionescu-Idbohrn &lt;cristian.ionescu-idbohrn AT axis.com&gt;)
182 <li>udhcpc: fix wrong options in decline and release packets (Jonas Danielsson &lt;jonas.danielsson AT axis.com&gt;)
183 <li>umount: do not complain several times about the same mountpoint
184 <li>umount: do not try to free loop device or erase mtab if remounted ro
185 <li>umount: instead of non-standard -D, use -d with opposite meaning. Closes bug 1604
186 <li>unlzma: shrink by Pascal Bellard &lt;pascal.bellard AT ads-lu.com&gt;
187 <li>unzip: do not try to read entire compressed stream at once (it can be huge)
188 <li>unzip: handle short reads correctly
189 <li>vi: many fixes
190 <li>zcip: don't chdir to root
Denis Vlasenkob9d0f0c2008-03-21 21:22:24 +0000191 <li>zcip: open ARP socket before openlog (else we can trash syslog socket)
Denis Vlasenko74f82082008-03-21 20:50:37 +0000192 </ul>
193 </p>
194
Bernhard Reutner-Fischera4e55ab2008-04-19 09:33:22 +0000195 <li><b>21 March 2008 -- BusyBox old stable releases</b>
Denis Vlasenko68d09692008-03-21 18:41:21 +0000196 <p>
Denis Vlasenko45911a62008-03-21 20:06:42 +0000197 Bugfix-only releases for four past branches. Links to locations
Denis Vlasenko31567c12008-03-21 18:52:18 +0000198 for future hot patches are in parentheses.
Denis Vlasenko68d09692008-03-21 18:41:21 +0000199 <p>
200 <a href=http://busybox.net/downloads/busybox-1.9.2.tar.bz2>1.9.2</a>
201 (<a href=http://busybox.net/downloads/fixes-1.9.2/>patches</a>),
202 <a href=http://busybox.net/downloads/busybox-1.8.3.tar.bz2>1.8.3</a>
203 (<a href=http://busybox.net/downloads/fixes-1.8.3/>patches</a>),
204 <a href=http://busybox.net/downloads/busybox-1.7.5.tar.bz2>1.7.5</a>
205 (<a href=http://busybox.net/downloads/fixes-1.7.5/>patches</a>),
206 <a href=http://busybox.net/downloads/busybox-1.5.2.tar.bz2>1.5.2</a>
207 (<a href=http://busybox.net/downloads/fixes-1.5.2/>patches</a>).
208 <p>
209 <a href=http://busybox.net/fix.html>How to add a patch.</a>
210 <p>
211 <a href=http://busybox.net/~vda/HOWTO_bbox_with_uclibc.txt>How to build static busybox against uclibc</a>
212 <p>
213 The email address gpl@busybox.net is the recommended way to contact
Denis Vlasenko31567c12008-03-21 18:52:18 +0000214 the Software Freedom Law Center to report BusyBox license violations.
215 </p>
Denis Vlasenko68d09692008-03-21 18:41:21 +0000216
Eric Andersen539eef62003-12-10 12:08:20 +0000217
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000218 <li><b>Old News</b><p>
Eric Andersen539eef62003-12-10 12:08:20 +0000219 <a href="/oldnews.html">Click here to read older news</a>
Rob Landleyd879ffb2006-06-27 21:29:56 +0000220 </p>
221 </li>
Eric Andersen539eef62003-12-10 12:08:20 +0000222
223
224</ul>
225
226<!--#include file="footer.html" -->
227