aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-10 22:23:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-10 22:23:20 +0000
commit6f05874b9dc4623512878566d144b0905700525d (patch)
tree381df8987d2b7d2c27473c34237d44b516835515 /docs
parent2211d5268cc6fc5575f758a9835070fae5ffc405 (diff)
downloadbusybox-w32-6f05874b9dc4623512878566d144b0905700525d.tar.gz
busybox-w32-6f05874b9dc4623512878566d144b0905700525d.tar.bz2
busybox-w32-6f05874b9dc4623512878566d144b0905700525d.zip
webpage: announce 1.13.0 and 1.12.2
Diffstat (limited to 'docs')
-rw-r--r--docs/busybox.net/news.html104
1 files changed, 101 insertions, 3 deletions
diff --git a/docs/busybox.net/news.html b/docs/busybox.net/news.html
index 84705db15..0aead811c 100644
--- a/docs/busybox.net/news.html
+++ b/docs/busybox.net/news.html
@@ -22,6 +22,107 @@
22 </p> 22 </p>
23 </li> 23 </li>
24 24
25 <li><b>10 November 2008 -- BusyBox 1.13.0 (unstable), BusyBox 1.12.2 (stable)</b>
26 <p><a href="http://busybox.net/downloads/busybox-1.13.0.tar.bz2">BusyBox 1.13.0</a>.
27 (<a href="http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_13_stable/">svn</a>,
28 <a href="http://busybox.net/downloads/fixes-1.13.0/">patches</a>,
29 <a href="http://busybox.net/fix.html">how to add a patch</a>)</p>
30 <p><a href="http://busybox.net/downloads/busybox-1.12.2.tar.bz2">BusyBox 1.12.2</a>.
31 (<a href="http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_12_stable/">svn</a>,
32 <a href="http://busybox.net/downloads/fixes-1.12.2/">patches</a>,
33 <a href="http://busybox.net/fix.html">how to add a patch</a>)</p>
34
35 <p>Sizes of busybox-1.12.2 and busybox-1.13.0 (with equivalent config, static uclibc build):<pre>
36 text data bss dec hex filename
37 778291 551 7856 786698 c010a busybox-1.12.2/busybox
38 778981 551 7852 787384 c03b8 busybox-1.13.0/busybox
39</pre>
40
41 <p>New applets: blkid, devmem
42
43 <p>Changes since previous release:
44 <ul>
45 <li>mail applets: total overhaul. Vladimir as usual</li>
46 <li>ash: fix "while kill -0 $child; do true; done" looping forever</li>
47 <li>ash: fix NOEXEC mode - we were forgetting to pass environment</li>
48 <li>ash: fix a bug in standalone mode (corrupted getopt state)</li>
49 <li>ash: optionally support "&gt;&amp;file" and "&amp;&gt;file" redirections</li>
50 <li>awk: bitwise ops cast oprands and results to unsigned long, not signed. closes bug 4774</li>
51 <li>awk: fix typo in atan2 code. closes bug 5594</li>
52 <li>awk: improve handling of negative numbers in bitwise ops; fix handling of octal costants</li>
53 <li>awk: support hex constants</li>
54 <li>basename: fix error code (again)</li>
55 <li>cpio: emit TRAILER even when hard links were found. By Pascal Bellard (pascal.bellard AT ads-lu.com)</li>
56 <li>crontab: do not destroy STDIN_FILENO, editor may need it (crontab -e)</li>
57 <li>dc: support for bases 2 and 8, by Nate Case (ncase AT xes-inc.com)</li>
58 <li>dhcpc: treat "discover...select...discover..." loop the same way as "discover...discover...discover..."</li>
59 <li>dpkg: add dpkg -l PACKAGE_PATTERN. By Peter Korsgaard</li>
60 <li>fbset: fix mode matching code: original code may trigger false positive.</li>
61 <li>findfs: fix LUKS and FAT detection routines; do not exit if corrupted FAT fs makes us try to seek past the end</li>
62 <li>grep: fix 'echo aaa | grep -o a' + ENABLE_EXTRA_COMPAT case. By Natanael Copa</li>
63 <li>grep: fix EXTRA_COMPAT grep to honor -E and -i</li>
64 <li>gunzip: restore mtime</li>
65 <li>halt: reinstate -w even if !FEATURE_WTMP</li>
66 <li>hexdump: fix SEGV in hexdump -e ""</li>
67 <li>httpd: pass "Accept:" and "Accept-Language:" header to CGI scripts (Alina Friedrichsen)</li>
68 <li>hush: fix environment and memory leaks</li>
69 <li>hush: fix trashing of environment by local env vars: a=a; a=b cmd; - a was unset</li>
70 <li>id: improve compatibility with coreutils. By Tito Ragusa</li>
71 <li>inetd: fix a case when we have zero services</li>
72 <li>inetd: use config parser. by Vladimir</li>
73 <li>init: set stderr to NONBLOCK</li>
74 <li>insmod: fix detection of open failure</li>
75 <li>install: support -D</li>
76 <li>ip: fix ip route rejecting dotted quads as prefix</li>
77 <li>ip: route metric support (Natanael Copa)</li>
78 <li>iplink: accept shorthands for "address" keyword: "ip link set address 00:11:22:33:44:55"</li>
79 <li>kbd_mode: support -C TTY</li>
80 <li>kill[all[5]]: accept -s SIG too. By Steve Bennett (steveb AT workware.net.au)</li>
81 <li>klogd: handle many lines at once. By Steve Bennett (steveb AT workware.net.au)</li>
82 <li>less: support -I to be able to search case-insensitively</li>
83 <li>less: add optional line number toggle and resizing on window resize</li>
84 <li>libbb: do not reject floating point strings like ".15"</li>
85 <li>lineedit: fix bug 5824 "since rev 23530 fdisk and ed don't work any more"</li>
86 <li>lineedit: fix problems with empty commands in history</li>
87 <li>login: fix /etc/nologin handling</li>
88 <li>man: fix inconsistencies in handling $MANPATH</li>
89 <li>mdev: support match by major,minor. See bug 4714</li>
90 <li>modprobe-small: make insmod command line compatible</li>
91 <li>modprobe-small: support "blacklist" keyword in /etc/modules/MODULE_NAME</li>
92 <li>modprobe: fix a segfault when modprobe is called with no arguments at all</li>
93 <li>modutils/*: rewrite by Timo Teras (timo.teras AT iki.fi)</li>
94 <li>mount: fix "-o parm1 -o parm2" not accumulating</li>
95 <li>nmeter: 4k buffers are too small for /proc files, make them dynamically sized with 16k upper limit</li>
96 <li>ping: SO_RCVBUF must be bigger than packet size, otherwise large ping packets might fail to be received</li>
97 <li>route: fix for 64-bit BE machines by Seonghun Lim (wariua AT gmail.com)</li>
98 <li>rpm: fix incompatibilities which prevented rpm -i foo.src.rpm</li>
99 <li>runsvdir: support runsvdir-as-init</li>
100 <li>setarch: do not try to use non-existent data in argv[]</li>
101 <li>setfont: support -m and -C, support -m TEXTUAL_MAP (by Vladimir)</li>
102 <li>setup_environment: cd $HOME regardless of clear_env value</li>
103 <li>slattach: preserve speed in non-raw mode. By Matthieu Castet (matthieu.castet AT parrot.com)</li>
104 <li>start_stop_daemon: accept (and ignore) -R PARAM</li>
105 <li>sv: make default service dir configurable (Vladimir wants it)</li>
106 <li>sysctl: fix bug 3894 (by Kryzhanovskyy Maksym)</li>
107 <li>tar: fix bug 3844: non-root tar does not preserve perms</li>
108 <li>telnetd: handle emacs M-DEL and IAC-NOP. by Jim Cathey (jcathey AT ciena.com)</li>
109 <li>top: fix "top -d 1" (bug 5144)</li>
110 <li>top: optional SMP support by Vineet Gupta (vineetg76 AT gmail.com)</li>
111 <li>trylink: make messages less confusing</li>
112 <li>unzip: handle "central directory". needed for OpenOffice, gmail attachment .zips etc</li>
113 <li>vi: Rob's algorithm of reading and matching ESC sequences (nice work btw!)</li>
114 <li>vi: deal with EOF/error on stdin and with input NULs</li>
115 <li>vi: fix uninitialized last_search_pattern (bug 5794)</li>
116 <li>vi: handle chars 0x80, 0x81 etc correctly</li>
117 <li>volume identification: abolish /proc/partitions and /proc/cdroms scanning. It does not catch volume managers and such. Simply scan /dev/* for any block devices</li>
118 <li>watchdog: WDIOC_SETTIMEOUT accepts seconds, not milliseconds</li>
119 <li>watchdog: add -T option</li>
120 </ul>
121 <p>
122 The email address gpl@busybox.net is the recommended way to contact
123 the Software Freedom Law Center to report BusyBox license violations.
124 </p>
125
25 <li><b>28 September 2008 -- BusyBox 1.12.1 (stable), BusyBox 1.11.3 (stable)</b> 126 <li><b>28 September 2008 -- BusyBox 1.12.1 (stable), BusyBox 1.11.3 (stable)</b>
26 <p><a href="http://busybox.net/downloads/busybox-1.12.1.tar.bz2">BusyBox 1.12.1</a>. 127 <p><a href="http://busybox.net/downloads/busybox-1.12.1.tar.bz2">BusyBox 1.12.1</a>.
27 (<a href="http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_12_stable/">svn</a>, 128 (<a href="http://busybox.net/cgi-bin/viewcvs.cgi/branches/busybox_1_12_stable/">svn</a>,
@@ -178,9 +279,6 @@
178 <li>xargs: fix -e default to match newer GNU xargs, add SUS mandated -E (closes bug 4414)</li> 279 <li>xargs: fix -e default to match newer GNU xargs, add SUS mandated -E (closes bug 4414)</li>
179 <li>other fixes and code size reductions in many applets</li> 280 <li>other fixes and code size reductions in many applets</li>
180 </ul> 281 </ul>
181 <p>
182 The email address gpl@busybox.net is the recommended way to contact
183 the Software Freedom Law Center to report BusyBox license violations.
184 </p> 282 </p>
185 283
186 <li><b>12 July 2008 -- BusyBox 1.11.1 (stable)</b> 284 <li><b>12 July 2008 -- BusyBox 1.11.1 (stable)</b>