blob: 2d46742e1069360044bee423c867c7885ed45164 [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 Vlasenko40702da2007-11-10 03:24:21 +00004 <li><b>9 November 2007 -- BusyBox 1.8.1 (stable)</b>
5 <p><a href=http://busybox.net/downloads/busybox-1.8.1.tar.bz2>BusyBox 1.8.1</a>.
6 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_8_stable/>svn</a>,
7 <a href=http://busybox.net/downloads/fixes-1.8.1/>patches</a>,
8 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
9
10 <p>This is a bugfix-only release, with fixes to login (PAM), modprobe, syslogd, telnetd, unzip.</p>
11 </li>
12
Denis Vlasenko6cee58e2007-11-04 15:43:26 +000013 <li><b>4 November 2007 -- BusyBox 1.8.0 (unstable)</b>
14 <p><a href=http://busybox.net/downloads/busybox-1.8.0.tar.bz2>BusyBox 1.8.0</a>.
15 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_8_stable/>svn</a>,
16 <a href=http://busybox.net/downloads/fixes-1.8.0/>patches</a>,
17 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
18
19 <p>Note: this is probably the very last release with lash. It will be dropped. Please migrate to hush.
20
21 <p>Applets which had many changes since 1.7.x:
22 <p>httpd:
23 <ul>
24 <li>does not clear environment, CGIs will see all environment variables which were set for httpd
25 <li>fix bug where we were trying to read more POSTDATA than content-length
26 <li>fix trivial bug (spotted by Alex Landau)
27 <li>optional support for partial downloads
28 <li>simplified CGI i/o loop (now it looks good to me)
29 <li>small auth and IPv6 fixes (Kim B. Heino &lt;Kim.Heino at bluegiga.com>)
30 <li>support for proxying connection to other http server (by Alex Landau &lt;landau_alex at yahoo.com>)
31 </ul>
32
33 <p>top:
34 <ul>
35 <li>TOPMEM feature - 's(how sizes)' command
36 <li>don't wait before final bailout (try top -b -n1)
37 <li>fix for command line wrapping
38 </ul>
39
40 <p>Build system improvements: libbusybox mode restored (it was lost in transition to new makefiles).
41
42 <p>Code and data size in comparison with 1.7.3:<pre>
43Equivalent .config, i386 uclibc static builds:
44 text data bss dec hex filename
45 768123 1055 10768 779946 be6aa busybox-1.7.3/busybox
46 759693 974 9420 770087 bc027 busybox-1.8.0/busybox</pre>
47
48 <p>New applets:
49 <ul>
50 <li>microcom: new applet by Vladimir Dronnikov &lt;dronnikov at gmail.ru&gt;
51 <li>kbd_mode: new applet by Loic Grenie &lt;loic.grenie at gmail.com&gt;
52 <li>bzip2: port bzip2 1.0.4 to busybox, 9 kb of code
53 <li>pgrep, pkill: new applets by Loic Grenie &lt;loic.grenie at gmail.com&gt;
54 <li>setsebool: new applet (Yuichi Nakamura &lt;ynakam at hitachisoft.jp&gt;)
55 </ul>
56
57 <p>Other changes since previous release (abridged):
58 <ul>
59 <li>cp: -r and -R imply -d (coreutils compat)
60 <li>cp: detect and prevent infinite recursion
61 <li>cp: make it a bit closer to POSIX, but still refuse to open and overwrite symbolic link
62 <li>hdparm: reduce possibility of numeric overflow in -T
63 <li>hdparm: simplify timing measurement
64 <li>wget: -O FILE is allowed to overwrite existing file (compat)
Denis Vlasenko9fcd7992007-11-05 16:26:34 +000065 <li>wget: allow dots in header field names
66 <li>telnetd: add -K option to close sessions as soon as child exits
Denis Vlasenko6cee58e2007-11-04 15:43:26 +000067 <li>telnetd: don't SIGKILL child when closing the session, kernel will send SIGHUP for us
68 <li>ed: large cleanup, add line editing
69 <li>hush: feeble attempt at making it more NOMMU-friendly
70 <li>hush: fix glob()
71 <li>hush: stop doing manual accounting of open fd's, kernel can do it for us
72 <li>adduser: implement -S and fix uid selection
73 <li>ash: fix prompt expansion (Natanael Copa &lt;natanael.copa at gmail.com&gt;)
74 <li>ash: revert "cat | jobs" fix, it causes more problems than good
75 <li>find: fix -xdev behavior in the presence of two or more nested mount points
76 <li>grep: fix grep -F -e str1 -e str2 (was matching str2 only)
77 <li>grep: optimization: stop on first -e match
78 <li>gunzip: support concatenated gz files
79 <li>inetd: fix bug 1562 "inetd does not set argv[0] properly" (fix by Ilya Panfilov)
80 <li>install: 'support' (by ignoring) -v and -b
81 <li>install: fix bug in "install -c file dir" (tried to copy dir into dir too)
82 <li>ip: tunnel parameter parsing fix by Jean Wolter &lt;jw5 at os.inf.tu-dresden.de&gt;
83 <li>isrv: use monotonic_sec
84 <li>less: make 'f' key page forward
85 <li>libiproute: add missing break statements
86 <li>load_policy: update (Yuichi Nakamura &lt;ynakam at hitachisoft.jp&gt;)
87 <li>logger: fix a problem of losing all argv except first
88 <li>login: do reject wrong passwords with PAM auth
89 <li>losetup: support -f (Loic Grenie &lt;loic.grenie at gmail.com&gt;)
90 <li>fdisk: make fdisk compile on libc without llseek64
91 <li>libbb: by popular request allow PATH to be customized at build time
92 <li>mkswap: selinux support by KaiGai Kohei &lt;kaigai at ak.jp.nec.com&gt;
93 <li>mount: allow (and ignore) -i
94 <li>mount: ignore NFS bg option on NOMMU machines
95 <li>mount: mount helpers support (by Vladimir Dronnikov &lt;dronnikov at gmail.ru&gt;)
96 <li>passwd: handle Ctrl-C, restore termios on Ctrl-C
97 <li>passwd: SELinux support by KaiGai Kohei &lt;kaigai at ak.jp.nec.com&gt;
98 <li>ping: make -I ethN work too (-I addr already worked)
99 <li>ps: fix RSS parsing (rss field in /proc/PID/stat is in pages, not bytes)
100 <li>read_line_input: fix it to not do any fancy editing if echoing is disabled
101 <li>run_parts: make it sort executables by name (required by API)
102 <li>runsv: do not use clock_gettime if !MONOTONIC_CLOCK
103 <li>runsvdir: fix "linear wait time" bug
104 <li>sulogin: remove alarm handling, it is redundant there
Denis Vlasenko9fcd7992007-11-05 16:26:34 +0000105 <li>svlogd: compat: svlogd -tt should timestamp stderr too
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000106 <li>syslogd: bail out if you see null read from Unix socket
107 <li>syslogd: do not need to poll(), we can just block in read()
108 <li>tail: work correctly on /proc files (Kazuo TAKADA &lt;kztakada at sm.sony.co.jp&gt;)
109 <li>tar + gzip/bzip2/etc: support NOMMU machines (by Alex Landau &lt;landau_alex at yahoo.com&gt;)
110 <li>tar: strip leading '/' BEFORE memorizing hardlink's name
111 <li>tftp: fix infinite retry bug
112 <li>umount: support (by ignoring) -i; style fixes
113 <li>unzip: fix endianness bugs
114 <li>vi: don't wait 50 ms before reading ESC sequences
115 <li>watchdog: allow millisecond spec (-t 250ms)
116 <li>zcip: fix unaligned trap on ARM
117 </ul>
118 </p>
119
120 <p><a href=http://busybox.net/~vda/HOWTO_bbox_with_uclibc.txt>How to build static busybox against uclibc</a></p>
121 </li>
122
Denis Vlasenko06200342007-11-04 04:30:20 +0000123 <li><b>4 November 2007 -- BusyBox 1.7.3 (stable)</b>
124 <p><a href=http://busybox.net/downloads/busybox-1.7.3.tar.bz2>BusyBox 1.7.3</a>.
125 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_7_stable/>svn</a>,
126 <a href=http://busybox.net/downloads/fixes-1.7.3/>patches</a>,
127 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
128
129 <p>This is a bugfix-only release, with fixes to ash, httpd, inetd, iptun, logger, login, tail.</p>
Denis Vlasenko06200342007-11-04 04:30:20 +0000130 </li>
131
Denis Vlasenkoe03c77f2007-09-30 00:06:42 +0000132 <li><b>30 September 2007 -- BusyBox 1.7.2 (stable)</b>
133 <p><a href=http://busybox.net/downloads/busybox-1.7.2.tar.bz2>BusyBox 1.7.2</a>.
134 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_7_stable/>svn</a>,
135 <a href=http://busybox.net/downloads/fixes-1.7.2/>patches</a>,
136 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
137
138 <p>This is a bugfix-only release, with fixes to install, find, login, httpd, runsvdir, chcon, setfiles, fdisk and line editing.</p>
Denis Vlasenkoe03c77f2007-09-30 00:06:42 +0000139 </li>
140
Denis Vlasenko27bd8d72007-09-16 19:41:40 +0000141 <li><b>16 September 2007 -- BusyBox 1.7.1 (stable)</b>
142 <p><a href=http://busybox.net/downloads/busybox-1.7.1.tar.bz2>BusyBox 1.7.1</a>.
143 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_7_stable/>svn</a>,
144 <a href=http://busybox.net/downloads/fixes-1.7.1/>patches</a>,
145 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
146
147 <p>This is a bugfix-only release, with fixes to cp, runsv, tar, busybox --install and build system.</p>
Denis Vlasenko27bd8d72007-09-16 19:41:40 +0000148 </li>
149
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000150 <li><b>24 August 2007 -- BusyBox 1.7.0 (unstable)</b>
151 <p><a href=http://busybox.net/downloads/busybox-1.7.0.tar.bz2>BusyBox 1.7.0</a>.
152 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_7_stable/>svn</a>,
153 <a href=http://busybox.net/downloads/fixes-1.7.0/>patches</a>,
154 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
155
156 <p>Applets which had many changes since 1.6.x:
157 <p>httpd:
158 <ul>
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000159 <li>works in standalone mode on NOMMU machines now (partly by Alex Landau &lt;landau_alex at yahoo.com&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000160 <li>indexer example is rewritten in C
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000161 <li>optional support for error pages (by Pierre Metras &lt;genepi at sympatico.ca&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000162 <li>stop reading headers using 1-byte reads
163 <li>new option -v[v]: prints client addresses, HTTP codes returned, URLs
164 <li>extended -p PORT to -p [IP[v6]:]PORT
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000165 <li>sendfile support (by Pierre Metras &lt;genepi at sympatico.ca&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000166 <li>add support for Status: CGI header
167 <li>fix CGI handling bug (we were closing wrong fd)
168 <li>CGI I/O loop still doesn't look 100% ok to me...
169 </ul>
170
171 <p>udhcp[cd]:
172 <ul>
173 <li>add -f "foreground" and -S "syslog" options
Denis Vlasenko46fc23b2007-08-24 11:49:55 +0000174 <li>fixed "ifupdown + udhcpc_without_pidfile_creation" bug
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000175 <li>new config option "Rewrite the lease file at every new acknowledge" (Mats Erik Andersson &lt;mats at blue2net.com&gt; (Blue2Net AB))
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000176 <li>consistently treat server_config.start/end IPs as host-order
177 <li>fix IP parsing for 64bit machines
178 <li>fix unsafe hton macro usage in read_opt()
179 <li>do not chdir to / when daemonizing
180 </ul>
181
Denis Vlasenko46fc23b2007-08-24 11:49:55 +0000182 <p>top, ps, killall, pidof:
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000183 <ul>
184 <li>simpler loadavg processing
185 <li>truncate usernames to 8 chars
186 <li>fix non-CONFIG_DESKTOP ps -ww (by rockeychu)
187 <li>improve /proc/PID/cmdinfo reading code
188 <li>use cmdline, not comm field (fixes problems with re-execed applets showing as processes with name "exe", and not being found by pidof/killall by applet name)
189 <li>reduce CPU usage in decimal conversion (optional) (corresponding speedup on kernel side is accepted in mainline Linux kernel, yay!)
190 <li>make percentile (0.1%) calculations configurable
191 <li>add config option and code for global CPU% display
192 <li>reorder columns, so that [P]PIDs are together and VSZ/%MEM are together - makes more sense
193 </ul>
194
195 <p>Build system improvements: doesn't link against libraries we don't need,
196 generates verbose link output and map file, allows for custom link
Denis Vlasenkocab774d2007-08-24 12:52:04 +0000197 scripts (useful for removing extra padding, among other things).
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000198
199 <p>Code and data size in comparison with 1.6.1:<pre>
200Equivalent .config, i386 glibc dynamic builds:
201 text data bss dec hex filename
202 672671 2768 16808 692247 a9017 busybox-1.6.1/busybox
203 662948 2660 13528 679136 a5ce0 busybox-1.7.0/busybox
204 662783 2631 13416 678830 a5bae busybox-1.7.0/busybox.customld
205
206Same .config built against static uclibc:
207 765021 1059 11020 777100 bdb8c busybox-1.7.0/busybox_uc</pre>
208
209 <p>Code/data shrink done in applets: crond, hdparm, dd, cal, od, nc, expr, uuencode,
210 test, slattach, diff, ping, tr, syslogd, hwclock, zcip, find, pidof, ash, uudecode,
211 runit/*, in libbb.
212
213 <p>New applets:
214 <ul>
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000215 <li>pscan, expand, unexpand (from Tito &lt;farmatito at tiscali.it&gt;)
216 <li>setfiles, restorecon (by Yuichi Nakamura &lt;ynakam at hitachisoft.jp&gt;)
217 <li>chpasswd (by Alexander Shishkin &lt;virtuoso at slind.org&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000218 <li>slattach, ttysize
219 </ul>
220
221 <p>Unfortunately, not much work is done on shells. This was mostly stalled
222 by lack of time (read: laziness) on my part to learn how to adapt existing
223 qemu-runnable image for a NOMMU architechture (available on qemu website)
224 for local testing of cross-compiled busybox on my machine.
225
226 <p>Other changes since previous release (abridged):
227 <ul>
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000228 <li>addgroup: disallow addgroup -g num user group; make -g 0 work (Tito &lt;farmatito at tiscali.it&gt;)
229 <li>adduser: close /etc/{passwd,shadow} before calling passwd etc. Spotted by Natanael Copa &lt;natanael.copa at gmail.com&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000230 <li>arping: -i should be -I, fixed
231 <li>ash: make "jobs | cat" work like in bash (was giving empty output)
232 <li>ash: recognize -l as --login equivalent; do not recognize +-login
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000233 <li>ash: fix buglet in DEBUG code (Nguyen Thai Ngoc Duy &lt;pclouds at gmail.com&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000234 <li>ash: fix SEGV if type has zero parameters
235 <li>awk: fix -F 'regex' bug (miscounted fields if last field is empty)
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000236 <li>catv: catv without arguments was trying to use environ as argv (Alex Landau &lt;landau_alex at yahoo.com&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000237 <li>catv: don't die on open error (emit warning)
238 <li>chown/chgrp: completely match coreutils 6.8 wrt symlink handling
239 <li>correct_password: do not print "no shadow passwd..." message
240 <li>crond: don't start sendmail with absolute path, don't report obsolete version (report true bbox version)
241 <li>dd: fix bug where we assume count=INT_MAX when count is unspecified
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000242 <li>devfsd: sanitization by Tito &lt;farmatito at tiscali.it&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000243 <li>echo: fix non-fancy echo
244 <li>fdisk: make it work with big disks (read: typical today's disks) even if CONFIG_LFS is unset
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000245 <li>find: -context support for SELinux (KaiGai Kohei &lt;kaigai at kaigai.gr.jp&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000246 <li>find: add conditional support for -maxdepth and -regex, make -size match GNU find
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000247 <li>find: fix build failure on certain configs (found by Cristian Ionescu-Idbohrn &lt;cristian.ionescu-idbohrn at axis.com&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000248 <li>fsck_minix: make it print bb version, not it's own (outdated/irrelevant) one
249 <li>grep: implement -m MAX_MATCHES, fix buglets with context printing
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000250 <li>grep: fix selection done by FEATURE_GREP_EGREP_ALIAS (Maxime Bizon &lt;mbizon at freebox.fr&gt; (Freebox))
251 <li>hush: add missing dependencies (Maxime Bizon &lt;mbizon at freebox.fr&gt; (Freebox))
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000252 <li>hush: fix read builtin to not read ahead past EOL and to not use insane amounts of stack
Bernhard Reutner-Fischer2062fc42007-08-24 14:32:23 +0000253 <li>ifconfig: make it work with ifaces with interface no. &gt; 255
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000254 <li>ifup/ifdown: make location of ifstate configurable
255 <li>ifupdown: make netmask parsing smaller and more strict (was accepting 255.0.255.0, 255.1234.0.0 etc...)
256 <li>install: fix -s (strip) option, fix install a b /a/link/to/dir
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000257 <li>libbb: consolidate ARRAY_SIZE macro (Walter Harms &lt;wharms at bfs.de&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000258 <li>libbb: make /etc/network parsing configurable. -200 bytes when off
259 <li>libbb: nuke BB_GETOPT_ERROR, always die if there are mutually exclusive options
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000260 <li>libbb: xioctl and friends by Tito &lt;farmatito at tiscali.it&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000261 <li>login: optional support for PAM
262 <li>login: make /etc/nologin support configurable (-240 bytes)
263 <li>login: ask passwords even for wrong usernames
264 <li>md5_sha1_sum: fix mishandling when run as /bin/md5sum
265 <li>mdev: add support for firmware loading
266 <li>mdev: work even when CONFIG_SYSFS_DEPRECATED in kernel is off
Bernhard Reutner-Fischer52226772007-08-25 11:16:18 +0000267 <li>modprobe: add scanning of /lib/modules/`uname -r`/modules.symbols (by Yann E. MORIN &lt;yann.morin.1998 at anciens.enib.fr&gt;)
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000268 <li>more: fixes by Tristan Schmelcher &lt;tpkschme at engmail.uwaterloo.ca&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000269 <li>nc: make connecting to IPv4 from IPv6-enabled hosts easier (was requiring -s local_addr)
270 <li>passwd: fix bug "updating shadow even if user's record is in passwd"
271 <li>patch: fix -p -1 handling
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000272 <li>patch: fix bad line ending handling (Nguyen Thai Ngoc Duy &lt;pclouds at gmail.com&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000273 <li>ping: display roundtrip times with 1/1000th of ms, not 1/10 ms precision.
Bernhard Reutner-Fischer2062fc42007-08-24 14:32:23 +0000274 <li>ping: fix incorrect handling of -I (Iouri Kharon &lt;bc-info at styx.cabel.net&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000275 <li>ping: fix non-fancy ping6
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000276 <li>printenv: fix "printenv VAR1 VAR2" bug (spotted by Kalyanatejaswi Balabhadrapatruni &lt;kalyanatejaswi at yahoo.co.in&gt;)
277 <li>ps: fix -Z (by Yuichi Nakamura &lt;ynakam at hitachisoft.jp&gt;)
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000278 <li>rpm: add optional support for bz2 data. +50 bytes of code
279 <li>rpm: fix bogus "package is not installed" case
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000280 <li>sed: fix 'q' command handling (by Nguyen Thai Ngoc Duy &lt;pclouds at gmail.com&gt;)
281 <li>start_stop_daemon: NOMMU fixes by Alex Landau &lt;landau_alex at yahoo.com&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000282 <li>stat: fix option -Z SEGV
283 <li>strings: strings a b was processing a twice, fix that
284 <li>svlogd: fix timestamping, do not warn if config is missing
285 <li>syslogd, logread: get rid of head pointer, fix logread bug in the process
286 <li>syslogd: do not convert tabs to ^I, set syslog IPC buffer to mode 0644
287 <li>tar: improve OLDGNU compat, make old SUN compat configurable
288 <li>test: fix testing primary expressions like '"-u" = "-u"'
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000289 <li>uudecode: fix to base64 decode by Jorgen Cederlof &lt;jcz at google.com&gt;
290 <li>vi: multiple fixes by Natanael Copa &lt;natanael.copa at gmail.com&gt;
Denis Vlasenkoe1022a92007-08-24 10:28:55 +0000291 <li>wget: fix bug in base64 encoding (bug 1404). +10 bytes
292 <li>wget: lift 256 chars limitation on terminal width
293 <li>wget, zcip: use monotonic_sec instead of gettimeofday
294 </ul>
295 </p>
296 </li>
297
Denis Vlasenko16b7cb42007-06-30 17:12:14 +0000298 <li><b>30 June 2007 -- BusyBox 1.6.1 (stable)</b>
299 <p><a href=http://busybox.net/downloads/busybox-1.6.1.tar.bz2>BusyBox 1.6.1</a>.
300 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_6_stable/>svn</a>,
301 <a href=http://busybox.net/downloads/fixes-1.6.1/>patches</a>,
302 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
303
304 <p>This is a bugfix-only release, with fixes to echo, hush, and wget.</p>
305 </li>
306
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000307 <li><b>1 June 2007 -- BusyBox 1.6.0 (unstable)</b>
308 <p><a href=http://busybox.net/downloads/busybox-1.6.0.tar.bz2>BusyBox 1.6.0</a>.
Bernhard Reutner-Fischer66db2642007-06-09 09:12:45 +0000309 (<a href=http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_6_stable/>svn</a>,
310 <a href=http://busybox.net/downloads/fixes-1.6.0/>patches</a>,
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000311 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
312
313 <p>Since this is a x.x.0 release, it probably does not deserve "stable"
314 label. Please help making 1.6.1 stable by testing 1.6.0.</p>
315 <p>Note that hush shell had many changes and (hopefully) is much improved now,
316 but there is a possibility that it regressed in some obscure cases. Please
317 report any such cases.</p>
318 <p>lash users please note: lash is going to be deprecated in busybox 1.7.0
319 and removed in the more distant future. Please migrate to hush.</p>
320 <p><a href=http://busybox.net/~vda/mem_usage-1.6.0.txt>Memory usage has decreased, but we can do better still</a></p>
321 <p>Other changes since previous release:
322 <ul>
323<li>NOFORK: audit small applets and mark some of them as NOFORK. Put big scary warnings in relevant places
324<li>NOFORK: factor out NOFORK/NOEXEC code from find. Use NOFORK/NOEXEC in find and xargs
325<li>NOFORK: remove potential xmalloc from NOFORK path in bb_full_fd_action
326<li>NOMMU: random fixes; compressed --help now works for NOMMU
327<li>SELinux: load_policy applet
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000328<li>[u]mount: extend -t option (Roy Marples &lt;uberlord at gentoo.org&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000329<li>addgroup: clean up, fix adding users to existing groups and make it optional (Tito)
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000330<li>adduser: don't bomb out if shadow password file doesn't exist (from Tito &lt;farmatito at tiscali.it&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000331<li>applet.c: do not even try to read config if run by real root; fix suid config handling
332<li>ash: fix infinite loop on exit if tty is not there anymore
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000333<li>ash: fix kill -l (by Mats Erik Andersson &lt;mats.andersson64 at comhem.se&gt;)
334<li>ash: implement type -p, costs less than 10 bytes (patch by Mats Erik Andersson &lt;mats.andersson64 at comhem.se&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000335<li>awk: don't segfault on printf(%*s). Closes bug 1337
336<li>awk: guard against empty environment
337<li>awk: some 'lineno' vars were shorts, made them ints (code got smaller)
338<li>cat: stop using stdio.h opens
339<li>config system: clarify PREFER_APPLETS/SH_STANDALONE effects in help text
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000340<li>cryptpw: new applet (by Thomas Lundquist &lt;lists at zelow.no&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000341<li>cttyhack: new applet
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000342<li>dd: NOEXEC fix; fix skip= parse error (spotted by Dirk Clemens &lt;develop at cle-mens.de&gt;)
343<li>deluser: add optional support for removing users from groups (by Tito &lt;farmatito at tiscali.it&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000344<li>diff: fix SEGV (NULL deref) in diff -N
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000345<li>diff: fix segfault on empty dirs (Peter Korsgaard &lt;peter.korsgaard at barco.com&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000346<li>dnsd: fix several buglets, make smaller; openlog(), so that applet's name is logged
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000347<li>dpkg: run_package_script() returns 0 if all ok and non-zero if failure. The result code was checked incorrectly in two places. (from Kim B. Heino &lt;Kim.Heino at bluegiga.com&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000348<li>dpkg: use bitfields which are a bit closer to typical short/char. Code size -800 bytes
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000349<li>dumpleases: getopt32()-ization (from Mats Erik Andersson &lt;mats.andersson64 at comhem.se&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000350<li>e2fsprogs: stop using statics in chattr. Minor code shrinkage (-130 bytes)
351<li>ether-wake: close bug 1317. Reorder fuctions to avoid forward refs while at it
352<li>ether-wake: save a few more bytes of code
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000353<li>find: -group, -depth (Natanael Copa &lt;natanael.copa at gmail.com&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000354<li>find: add support for -delete, -path (by Natanael Copa)
355<li>find: fix -prune. Add big comment about it
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000356<li>find: improve usage text (Natanael Copa &lt;natanael.copa at gmail.com&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000357<li>find: missed 'static' on const data; size and prune were mixed up; use index_in_str_array
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000358<li>find: un-DESKTOPize (Kai Schwenzfeier &lt;niteblade at gmx.net&gt;)
359<li>find_root_device: teach to deal with /dev/ subdirs (by Kirill K. Smirnov &lt;lich at math.spbu.ru&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000360<li>find_root_device: use lstat - don't follow links
361<li>getopt32: fix llist_t options ordering. llist_rev is now unused
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000362<li>getopt: use getopt32 for option parsing - inspired by patch by Mats Erik Andersson &lt;mats.andersson64 at comhem.se&gt;
363<li>hdparm: fix multisector mode setting (from Toni Mirabete &lt;amirabete at catix.cat&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000364<li>hdparm: make -T -t code smaller (-194 bytes), and output prettier
365<li>ifupdown: make it possible to use DHCP clients different from udhcp
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000366<li>ifupdown: reread state file before rewriting it. Fixes "ifup started another ifup" state corruption bug. Patch by Natanael Copa &lt;natanael.copa at gmail.com&gt;
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000367<li>ifupdown: small optimization (avoid doing useless work if we are not going to update state file)
368<li>ip: fix compilation if FEATURE_TR_CLASSES is off
369<li>ip: mv ip*_main into ip.c; use a dispatcher to save on needless duplication. Saves a minor 12b
370<li>ip: rewrite the ip applet to be less bloaty. Convert to index_in_(sub)str_array()
371<li>ip: set the scope properly. Thanks to Jean Wolter
372<li>iplink: shrink iplink; sanitize libiproute a bit (-916 bytes)
373<li>iproute: shrink a bit (-200 bytes)
374<li>kill: know much more signals; make code smaller; use common code for kill applet and ash kill builtin
375<li>klogd: remove dependency on syslogd
376<li>lash: "forking" applets are actually can be treated the same way as "non-forked". Also save a bit of space on trailing NULL array elements.
377<li>lash: fix kill buglet (didn't properly recognize ESRCH)
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000378<li>lash: make -c work; crush buffer overrun and free of non-malloced ptr (from Mats Erik Andersson &lt;mats.andersson64 at comhem.se&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000379<li>lash: recognize and use NOFORK applets
380<li>less: fix case when regex search finds nothing; fix very obscure memory corruption bug; fix less &lt;HUGEFILE + [End] busy loop
381<li>libbb: add xsendto, xunlink, xpipe
382<li>libbb: fix segfault in reset_ino_dev_hashtable() when *hashtable was NULL
383<li>libbb: make pidfile writing configurable
384<li>libbb: make xsocket die with address family printed (if VERBOSE_RESOLUTION_ERRORS=y)
385<li>libbb: rework NOMMU helper API so that it makes more sense and easier to use
386<li>libiproute: audit callgraph, shortcut error paths into die() functions
387<li>lineedit: do not try to open NULL history file
388<li>lineedit: nuke two unused variables and code which sets them
389<li>login: remove setpgrp call (makes it work from shell prompt again); sanitize stdio descriptors (we are suid, need to be careful!)
390<li>login: shrink login and set_environment by ~100 bytes
391<li>mount: fix incorrect usage of strtok (inadvertently used NULL sometimes)
392<li>mount: fix mounting of symlinks (mount from util-linux allows that)
393<li>msh: data/bss reduction (more than 9k of it); fix "underscore bug" (a_b=1111 didn't work); fix obscure case with backticks and closed fd 1
394<li>nc: port nc 1.10 to busybox
395<li>netstat: fix for bogus state value for raw sockets
396<li>netstat: introduce -W: wide, ipv6-friendly output; shrink by ~500 bytes
397<li>nmeter: should die if stdout doesn't like him anymore
398<li>patch: do not try to delete same file twice
399<li>ping: fix wrong sign extension of packet id (bug 1373)
400<li>ps: add -o tty and -o rss support; make a bit smaller; work around libc bug: printf("%.*s\n", MAX_INT, buffer)
401<li>run_parts: rewrite
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000402<li>run_parts: do not check path portion of a name for "bad chars". Needed for ifupdown. Patch by Gabriel L. Somlo &lt;somlo at cmu.edu&gt;
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000403<li>sed: fix escaped newlines in -f
404<li>split: new applet
405<li>stat: remove superfluous bss user (flags) and manually unswitch some areas
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000406<li>stty: fix option parsing bug (spotted by Sascha Hauer &lt;s.hauer at pengutronix.de&gt;)
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000407<li>svlogd: fix 'SEGV on uninitialized data' and make it honor TERM
408<li>tail: fix SEGV on "tail -N"
Bernhard Reutner-Fischer6a7b7ce2007-08-24 14:30:59 +0000409<li>ipsvd: tcpsvd,udpsvd are new applets, GPL-ed 'clones' of Dan Bernstein's tcpserver. Author: Gerrit Pape &lt;pape at smarden.org&gt;, http://smarden.sunsite.dk/ipsvd/
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000410<li>test: close bug 1371; plug a memory leak; code size reduction
411<li>tftp: code diet, and I think retransmits were broken
412<li>tr: fix bug where we did not reject invalid classes like '[[:alpha'. debloat while at it
413<li>udhcp: MAC_BCAST_ADDR and blank_chaddr are in fact constant, move to rodata; use pipe instead of socketpair
414<li>udhcp[cd]: stop using atexit magic fir pidfile removal; stop deleting our own pidfile if we daemonize
415<li>xargs: shrink code, ~80 bytes; simplify word list management
416<li>zcip: make it work on NOMMU (+ improve NOMMU support machinery)
417 </ul>
418 </p>
419 </li>
420
421 <li><b>20 May 2007 -- BusyBox 1.5.1 (stable)</b>
Denis Vlasenkofe52a742007-05-20 17:12:43 +0000422 <p><a href=http://busybox.net/downloads/busybox-1.5.1.tar.bz2>BusyBox 1.5.1</a>.
423 (<a href=http://busybox.net/downloads/fixes-1.5.1/>patches</a>,
424 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
425
426 <p>This is a bugfix-only release, with fixes to hdparm, hush, ifupdown, ps
427 and sed.</p>
428 </li>
429
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000430 <li><b>23 March 2007 -- BusyBox 1.5.0 (unstable)</b>
Denis Vlasenko7d108232007-03-22 23:31:29 +0000431 <p><a href=http://busybox.net/downloads/busybox-1.5.0.tar.bz2>BusyBox 1.5.0</a>.
Denis Vlasenkofdf63a32007-04-07 09:35:56 +0000432 (<a href=http://busybox.net/downloads/fixes-1.5.0/>patches</a>,
433 <a href=http://busybox.net/fix.html>how to add a patch</a>)</p>
Denis Vlasenko9eb51ad2007-03-31 10:32:27 +0000434
Denis Vlasenko7d108232007-03-22 23:31:29 +0000435 <p>Since this is a x.x.0 release, it probably does not deserve "stable"
436 label. Please help making 1.5.1 stable by testing 1.5.0.</p>
437 <p>Notable changes since previous release:
438 <ul>
439 <li>find: added support for -user, -not, fixed -mtime, -mmin, -perm
440 <li>[de]archivers: merge common logic into one module
441 <li>ping[6]: unified code for both
442 <li>less: regex search improved
443 <li>ash: more readable code, testsuite added
444 <li>sed: several very obscure bugs fixed
445 <li>chown: -H, -L, -P support (required by POSIX)
446 <li>tar: handle (broken) checksums a-la Sun; tar restores mode again
447 <li>grep: implement -w, "implement" -a and -I by ignoring them
448 <li>cp: more sane behavior when overwriting existing files
449 <li>init: stop doing silly things with the console (-400 bytes)
450 <li>httpd: make httpd usable for NOMMU CPUs; fix POSTDATA handling bugs
451 <li>httpd: run interpreter for configured file extensions in any dir,
452 not only in /cgi-bin/
453 <li>chrt: new applet
454 <li>SELinux: SELinux-related code and -Z option added to several applets,
455 new SELinux-specific applets: chcon, runcon.
456 <li>Build system: produces link map, uses -Wwrite-strings to catch
457 improper usage of string constants.
458 <li>Data and bss section usage audited and reduced - should help NOMMU
459 targets.
460 <li>Applets with bug fixes: gunzip, vi, syslogd, dpkg, ls, adjtimex, resize,
461 sv, printf, diff, awk, sort, dpkg, diff, tftp
462 <li>Applets with usability improvements: swapon, more, ifup/ifdown, hwclock,
463 udhcpd, start_stop_daemon, cmp
464 <li>Applets with code cleaned up: telnet, fdisk, fsck_minix, mkfs_minix,
465 syslogd, swapon, runsv, svlogd, klogd
466 </ul>
467 </p>
468 </li>
469
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000470 <li><b>18 March 2007 -- BusyBox 1.4.2 (stable)</b>
Denis Vlasenko1c86a292007-03-18 18:21:44 +0000471 <p><a href=http://busybox.net/downloads/busybox-1.4.2.tar.bz2>BusyBox 1.4.2</a>.
472 </p>
473
474 <p>This release includes only trivial fixes accumulated since 1.4.1.
475 </p>
476 </li>
477
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000478 <li><b>25 January 2007 -- BusyBox 1.4.1 (stable)</b>
Denis Vlasenko5ff8f3d2007-01-26 23:35:12 +0000479 <p><a href=http://busybox.net/downloads/busybox-1.4.1.tar.bz2>BusyBox 1.4.1</a>.
480 (<a href=http://busybox.net/downloads/fixes-1.4.1/>patches</a>)</p>
Denis Vlasenko30abe972007-01-25 21:10:43 +0000481
482 <p>This release includes only trivial fixes accumulated since 1.4.0.
483 </p>
484 </li>
485
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000486 <li><b>20 January 2007 -- BusyBox 1.4.0 (stable)</b>
Denis Vlasenko52848ee2007-01-22 23:39:08 +0000487 <p><a href=http://busybox.net/downloads/busybox-1.4.0.tar.bz2>BusyBox 1.4.0</a>.
488 (<a href=http://busybox.net/downloads/fixes-1.4.0/>patches</a>)</p>
Denis Vlasenko31273582007-01-20 20:38:57 +0000489
490 <p>Since this is a x.x.0 release, it probably is a bit less "stable"
491 than usual.</p>
492 <p>Changes since previous release:
493 <ul>
494 <li>e2fsprogs are mostly removed from busybox. Some smaller parts remain,
495 the rest of it sits disabled in e2fsprogs/old_e2fsprogs/*, because
496 it's too bloated. Really. I'm afraid it's about the only way we can
497 ever get e2fsprogs cleaned up.
498 <li>less: many improvements. Now can display binary files
499 (although I expect it to have trouble with displays where 8bit chars
500 don't have 1-to-1 char/glyph relationship). Regexp search is not buggy
501 anymore. Less does not read entire input up-front. Reads input
502 as it appears (yay!). Works rather nice as man pager. I recommend it
503 for general use now.
504 <li>IPv6: generic support is in place, many networking applets are
505 upgraded to be IPv6 capable. Probably some work remains, but it is
506 already much better than what we had previously.
507 <li>arp: new applet (thanks to Eric Spakman).
508 <li>fakeidentd: non-forking standalone server part was taking ~90%
509 of the applet. Factored it out (in fact, rewrote it).
510 <li>syslogd: mostly rewritten.
511 <li>decompress_unzip, gzip: sanitized a bit.
512 <li>sed: better hadling of NULs
513 <li>httpd: stop adding our own "Content-type:" to CGI output
514 <li>chown: user.grp works again.
515 <li>minor bugfixes to: passwd, date, tftp, start_stop_daemon, tar,
516 ps, ifupdown, time, su, stty, awk, ping[6], sort,...
517 </ul>
518 </p>
519 </li>
520
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000521 <li><b>20 January 2007 -- BusyBox 1.3.2 (stable)</b>
Bernhard Reutner-Fischerb3f3c232007-01-20 21:46:20 +0000522 <p><a href=http://busybox.net/downloads/busybox-1.3.2.tar.bz2>BusyBox 1.3.2</a>.</p>
Denis Vlasenko31273582007-01-20 20:38:57 +0000523
524 <p>This release includes only one trivial fix accumulated since 1.3.1
525 </p>
526 </li>
527
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000528 <li><b>27 December 2006 -- BusyBox 1.3.1 (stable)</b>
Denis Vlasenko9cd7a242006-12-27 07:57:29 +0000529 <p><a href=http://busybox.net/downloads/busybox-1.3.1.tar.bz2>BusyBox 1.3.1</a>.
Denis Vlasenkoc1a33992006-12-28 21:44:43 +0000530 (<a href=http://busybox.net/downloads/fixes-1.3.1/>patches</a>)</p>
Denis Vlasenkof959bee2006-12-27 05:06:27 +0000531
532 <p>Closing 2006 with new release. It includes only trivial fixes accumulated since 1.3.0
533 </p>
534 </li>
535
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000536 <li><b>14 December 2006 -- BusyBox 1.3.0 (stable)</b>
Denis Vlasenko79e77cd2006-12-15 22:10:07 +0000537 <p><a href=http://busybox.net/downloads/busybox-1.3.0.tar.bz2>BusyBox 1.3.0</a>.
538 (<a href=http://busybox.net/downloads/fixes-1.3.0/>patches</a>)</p>
Denis Vlasenkof7b0d4a2006-12-14 00:22:51 +0000539
540 <p>This release has CONFIG_DESKTOP option which enables features
541 needed for busybox usage on desktop machine. For example, find, chmod
542 and chown get several less frequently used options, od is significantly
543 bigger but matches GNU coreutils, etc. Intended to eventually make
544 busybox a viable alternative for "standard" utilities for slightly
545 adventurous desktop users.
546 <p>Changes since previous release:
547 <ul>
548 <li>find: taking many more of standard options
549 <li>ps: POSIX-compliant -o implemented
550 <li>cp: added -s, -l
551 <li>grep: added -r, fixed -h
552 <li>watch: make it exec child like standard one does (was totally
553 incompatible)
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000554 <li>tar: fix limitations which were preventing bbox tar usage
Denis Vlasenkoba092332006-12-27 09:47:53 +0000555 on big directories: long names and linknames, pax headers
Denis Vlasenkof7b0d4a2006-12-14 00:22:51 +0000556 (Linux kernel tarballs have that). Fixed a number of obscure bugs.
557 Raised max file limit (now 64Gb). Security fixes (/../ attacks).
558 <li>httpd: added -i (inetd), -f (foreground), support for
559 directory indexer CGI (example is included), bugfixes.
560 <li>telnetd: fixed/improved IPv6 support, inetd+standalone support,
561 other fixes. Useful IPv6 stuff factored out into libbb.
562 <li>runit/*: new applets adapted from http://smarden.sunsite.dk/runit/
563 (these are my personal favorite small-and-beautiful toys)
564 <li>minor bugfixes to: login, dd, mount, umount, chmod, chown, ln, udhcp,
565 fdisk, ifconfig, sort, tee, mkswap, wget, insmod.
566 </ul>
567 <p>Note that GnuPG key used to sign this release is different.
568 1.2.2.1 is also signed post-factum now. Sorry for the mess.
569 </p>
570 </li>
571
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000572 <li><b>29 October 2006 -- BusyBox 1.2.2.1 (fix)</b>
Denis Vlasenko41be5b82006-10-29 19:34:49 +0000573 <p><a href=http://busybox.net/downloads/busybox-1.2.2.1.tar.bz2>BusyBox 1.2.2.1</a>.</p>
Denis Vlasenko8d463072006-10-29 19:30:55 +0000574
575 <p>Added compile-time warning that static linking against glibc
576 produces buggy executables.
577 </li>
578
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000579 <li><b>24 October 2006 -- BusyBox 1.2.2 (stable)</b>
Rob Landley44c79172006-10-24 21:46:19 +0000580 <p>It's a bit overdue, but
581 <a href=http://busybox.net/downloads/busybox-1.2.2.tar.bz2>here is
582 BusyBox 1.2.2</a>.</p>
583
584 <p>This release has dozens of fixes backported from the ongoing development
585 branch. There are a couple of bugfixes to sed, two fixes to documentation
586 generation (BusyBox.html shouldn't have USE() macros in it anymore), fix
587 umount to report the right errno on failure and to umount block devices by
588 name with newer kernels, fix mount to handle symlinks properly, make mdev
589 delete device nodes when called for hotplug remove, fix a segfault
590 in traceroute, a minor portability fix to md5sum option parsing, a build
591 fix for httpd with old gccs, an options parsing tweak to hdparm, make test
592 fail gracefully when getgroups() returns -1, fix a race condition in
593 modprobe when two instances run at once (hotplug does this), make "tar xf
594 foo.tar dir/dir" extract all subdirectories, make our getty initialize the
595 terminal more like mingetty, an selinux build fix, an endianness fix in
596 ping6, fix for zcip defending addresses, clean up some global variables in
597 gzip to save memory, fix sulogin -tNNN, a help text tweak, several warning
598 fixes and build fixes, fixup dnsd a bit, and a partridge in a pear tree.</p>
599
600 <p>As <a href=http://lwn.net/Articles/202106/>Linux Weekly News noted</a>,
601 this is my (Rob's) last release of BusyBox. The new maintainer is Denis
602 Vlasenko, I'm off to do <a href=http://landley.net/code>other things</a>.
603 </p>
604 </li>
605
Denis Vlasenkoa0d75082007-06-01 14:40:03 +0000606 <li><b>29 September 2006 -- New license email address.</b>
Rob Landley530c3ef2006-09-29 22:43:12 +0000607 <p>The email address gpl@busybox.net is now the recommended way to contact
608 the Software Freedom Law Center to report BusyBox license violations.</p>
609
Rob Landley2aced7e2006-07-31 23:56:26 +0000610 <li><b>31 July 2006 -- BusyBox 1.2.1 (stable)</b>
611 <p>Since nobody seems to have objected too loudly over the weekend, I
612 might as well point you all at
613 <a href="http://busybox.net/downloads/busybox-1.2.1.tar.bz2">Busybox
614 1.2.1</a>, a bugfix-only release with no new features.</p>
615
616 <p>It has three shell fixes (two to lash: going "var=value" without
617 saying "export" should now work, plus a missing null pointer check, and
618 one to ash when redirecting output to a file that fills up.) Fix three
619 embarassing thinkos in the new dmesg command. Two build tweaks
620 (dependencies for the compressed usage messages and running make in the
621 libbb subdirectory). One fix to tar so it can extract git-generated
622 tarballs (rather than barfing on the pax extensions). And a partridge
623 in a pear... Ahem.</p>
624
625 <p>But wait, there's more! A passwd changing fix so an empty
626 gecos field doesn't trigger a false objection that the new passwd contains
627 the gecos field. Make all our setuid() and setgid() calls check the return
628 value in case somebody's using per-process resource limits that prevent
629 a user from having too many processes (and thus prevent a process from
630 switching away from root, in which case the process will now _die_ rather
631 than continue with root privileges). A fix to adduser to make sure that
632 /etc/group gets updated. And a fix to modprobe to look for modules.conf
633 in the right place on 2.6 kernels.</p>
634
Rob Landley01772ae2006-06-30 22:40:13 +0000635 <li><b>30 June 2006 -- BusyBox 1.2.0</b>
636 <p>The -devel branch has been stabilized and the result is
637 <a href="http://busybox.net/downloads/busybox-1.2.0.tar.bz2">Busybox
638 1.2.0</a>. Lots of stuff changed, I need to work up a decent changelog
639 over the weekend.</p>
640
641 <p>I'm still experimenting with how long is best for the development
642 cycle, and since we've got some largeish projects queued up I'm going to
643 try a longer one. Expect 1.3.0 in December. (Expect 1.2.1 any time
644 we fix enough bugs. :)</p>
645
Rob Landley1df45cf2006-07-08 18:11:00 +0000646 <p>Update: Here are <a href="http://busybox.net/downloads/busybox-1.2.0.fixes.patch">the first few bug fixes</a> that will go into 1.2.1.</p>
647
Rob Landleyc27c04c2006-05-17 19:59:24 +0000648 <li><b>17 May 2006 -- BusyBox 1.1.3 (stable)</b>
Rob Landleyd2ccc2b2006-05-17 21:04:53 +0000649 <p><a href="http://busybox.net/downloads/busybox-1.1.3.tar.bz2">BusyBox
Rob Landleyc27c04c2006-05-17 19:59:24 +0000650 1.1.3</a> is another bugfix release. It makes passwd use salt, fixes a
651 memory freeing bug in ls, fixes "build all sources at once" mode, makes
652 mount -a not abort on the first failure, fixes msh so ctrl-c doesn't kill
653 background processes, makes patch work with patch hunks that don't have a
654 timestamp, make less's text search a lot more robust (the old one could
655 segfault), and fixes readlink -f when built against uClibc.</p>
656
657 <p>Expect 1.2.0 sometime next month, which won't be a bugfix release.</p>
658
Rob Landleybb5b2ff2006-04-10 20:04:32 +0000659 <li><b>10 April 2006 -- BusyBox 1.1.2 (stable)</b>
660 <p>You can now download <a href="http://busybox.net/downloads/busybox-1.1.2.tar.bz2">BusyBox 1.1.2</a>, a bug fix release consisting of 11 patches
661 backported from the development branch: Some build fixes, several fixes
662 for mount and nfsmount, a fix for insmod on big endian systems, a fix for
663 find -xdev, and a fix for comm. Check the file "changelog" in the tarball
664 for more info.</p>
665
666 <p>The next new development release (1.2.0) is slated for June. A 1.1.3
667 will be released before then if more bug fixes crop up. (The new plan is
668 to have a 1.x.0 new development release every 3 months, with 1.x.y stable
669 bugfix only releases based on that as appropriate.)</p>
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000670
Rob Landley0949d302006-03-27 22:43:40 +0000671 <li><b>27 March 2006 -- Software Freedom Law Center representing BusyBox and uClibc</b>
672 <p>One issue Erik Andersen wanted to resolve when handing off BusyBox
673 maintainership to Rob Landley was license enforcement. BusyBox and
674 uClibc's existing license enforcement efforts (pro-bono representation
675 by Erik's father's law firm, and the
Bernhard Reutner-Fischer3515f6e2006-04-10 19:16:50 +0000676 <a href="http://www.busybox.net/shame.html">Hall of Shame</a>), haven't
Rob Landley0949d302006-03-27 22:43:40 +0000677 scaled to match the popularity of the projects. So we put our heads
678 together and did the obvious thing: ask Pamela Jones of
679 <a href="http://www.groklaw.net">Groklaw</a> for suggestions. She
680 referred us to the fine folks at softwarefreedom.org.</p>
681
682 <p>As a result, we're pleased to announce that the
683 <a href="http://www.softwarefreedom.org">Software Freedom Law Center</a>
684 has agreed to represent BusyBox and uClibc. We join a number of other
685 free and open source software projects (such as
Bernhard Reutner-Fischer3515f6e2006-04-10 19:16:50 +0000686 <a href="http://lwn.net/Articles/141806/">X.org</a>,
Rob Landley0949d302006-03-27 22:43:40 +0000687 <a href="http://lwn.net/Articles/135413/">Wine</a>, and
Bernhard Reutner-Fischeraf07a002006-04-16 20:56:03 +0000688 <a href="http://plone.org/foundation/newsitems/software-freedom-law-center-support/">Plone</a>
Rob Landley0949d302006-03-27 22:43:40 +0000689 in being represented by a fairly cool bunch of lawyers, which is not a
690 phrase you get to use every day.</p>
691
Rob Landley5fba2502006-03-23 03:08:09 +0000692 <li><b>22 March 2006 -- BusyBox 1.1.1</b>
693 <p>The new maintainer is Rob Landley, and the new release is <a href="http://busybox.net/downloads/busybox-1.1.1.tar.bz2">BusyBox 1.1.1</a>. Expect a "what's new" document in a few days. (Also, Erik and I have have another announcement pending...)</p>
Rob Landley0949d302006-03-27 22:43:40 +0000694 <p>Update: Rather than put out an endless stream of 1.1.1.x releases,
695 the various small fixes have been collected together into a
696 <a href="http://busybox.net/downloads/busybox-1.1.1.fixes.patch">patch</a>,
Rob Landley28ff9662006-03-27 23:22:16 +0000697 and new fixes will be appended to that as needed. Expect 1.1.2 around
698 June.</p>
Rob Landley5fba2502006-03-23 03:08:09 +0000699 </li>
Rob Landley734a7792006-01-14 07:43:22 +0000700 <li><b>11 January 2006 -- 1.1.0 is out</b>
701 <p>The new stable release is
702 <a href="http://www.busybox.net/downloads/busybox-1.1.0.tar.bz2">BusyBox
703 1.1.0</a>. It has a number of improvements, including several new applets.
Bernhard Reutner-Fischer3515f6e2006-04-10 19:16:50 +0000704 (It also has <a href="http://www.busybox.net/lists/busybox/2006-January/017733.html">a few rough spots</a>,
Rob Landley734a7792006-01-14 07:43:22 +0000705 but we're trying out a "release early, release often" strategy to see how
706 that works. Expect 1.1.1 sometime in March.)</p>
Eric Andersen539eef62003-12-10 12:08:20 +0000707
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000708 <li><b>Old News</b><p>
Eric Andersen539eef62003-12-10 12:08:20 +0000709 <a href="/oldnews.html">Click here to read older news</a>
Rob Landleyd879ffb2006-06-27 21:29:56 +0000710 </p>
711 </li>
Eric Andersen539eef62003-12-10 12:08:20 +0000712
713
714</ul>
715
716<!--#include file="footer.html" -->
717