From 9ff245f6a03d1046e9265ded4dd16a4daa9f177f Mon Sep 17 00:00:00 2001
From: Bernhard Reutner-Fischer
Date: Fri, 22 Aug 2008 08:45:01 +0000
Subject: - move some older news to the news archive (the main page was once
again over 30kib big)
---
docs/busybox.net/oldnews.html | 291 ++++++++++++++++++++++++++++++++++++++++--
1 file changed, 283 insertions(+), 8 deletions(-)
(limited to 'docs/busybox.net/oldnews.html')
diff --git a/docs/busybox.net/oldnews.html b/docs/busybox.net/oldnews.html
index ee51143b0..2a7182c60 100644
--- a/docs/busybox.net/oldnews.html
+++ b/docs/busybox.net/oldnews.html
@@ -1,7 +1,288 @@
+
Analog Devices, Inc. provided
+ a
+ Blackfin development board free of charge.
+ Blackfin
+ is a NOMMU processor, and its availability for testing is invaluable.
+ If you are an embedded device developer,
+ please note that Analog Devices has entire Linux distribution available
+ for download for this board. Visit
+ http://blackfin.uclinux.org/
+ for more information.
+
getopt: add support for "a+" specifier for nonnegative int parameters. By Vladimir Dronnikov <dronnikov at gmail.com>
+
getty: don't try to detect parity on local lines (Joakim Tjernlund <Joakim.Tjernlund at transmode.se>)
+
halt: write wtmp entry if wtmp support is enabled
+
httpd: "HEAD" support. Closes bug 1530
+
httpd: fix bug 2004: wrong argv when interpreter is invoked
+
httpd: fix bug where we did chdir("") if CGI path had only one "/"
+
httpd: fix for POST upload
+
httpd: support for "I:index.xml" syntax (Peter Korsgaard <jacmet AT uclibc.org>)
+
hush: fix a case where none of pipe members could be started because of fork failure
+
hush: more correct handling of piping
+
hush: reinstate `cmd` handling for NOMMU
+
hush: report [v]fork failures
+
hush: set CLOEXEC on script file being executed
+
hush: try to add a bit more of vfork-friendliness
+
inetd: make "udp nowait" work
+
inetd: make inetd IPv6-capable
+
init: add FEATURE_KILL_REMOVED (Eugene Bordenkircher <eugebo AT gmail.com>)
+
init: allow last line of config file to be not terminated by "\n"
+
init: do not die if "/dev/null" is missing
+
init: fix bug 1111: restart actions were not splitting words
+
init: wait for orphaned children too while waiting for sysinit-like processes (harald-tuxbox AT arcor.de)
+
ip route: "ip route" was misbehaving (extra argv+1 ate 1st env var)
+
last: do not go into endless loop on read error
+
less,klogd,syslogd,nc,tcpudp: exit on signal by killing itself, not exit(1)
+
less: "examine" command will not bomb out on bad file name now
+
less: fix bug where backspace wasn't actually deleting chars
+
less: make it a bit more resistant against status line corruption
+
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
+
less: update line input so that it doesn't interfere with screen update. Makes "man bash", [enter], [/], <enter search pattern>, [enter] more usable - manpage now draws even as you enter the pattern!
+
libbb: filename completion matches dangling symlinks too
+
libbb: fix getopt state corruption for NOFORK applets
+
libbb: full_read/write now will report partial data counts prior to error
+
libbb: intrduce and use safe_gethostname. By Tito <farmatito AT tiscali.it>
+
libbb: introduce and use nonblock_safe_read(). Yay! Our shells are immune from this nasty O_NONBLOCK now!
+
login,su: avoid clearing environment with some options, as was intended
+
microcom: read more than 1 byte from device, if possible
+
microcom: split -d (delay) option away from -t
+
mktemp: support -p DIR (Timo Teras <timo.teras at iki.fi>)
+
mount: #ifdef out MOUNT_LABEL code parts if it is not selected
+
mount: add another mount helper call method
+
mount: allow and ignore _netdev option
+
mount: make -f work even without mtab support (Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn at axis.com>)
+
mount: optional support for -vv verbosity
+
mount: plug a hole where FEATURE_MOUNT_HELPERS could allow execution of arbitrary command
+
mount: recognize "dirsync" (closes bug 835)
+
mount: sanitize environment if called by non-root
+
mount: support for mount by label. Closes bug 1143
+
mount: with -vv -f, say what mount() calls we were going to make
+
msh: create testsuite (based on hush one)
+
msh: don't use floating point in "times" builtin
+
msh: fix Ctrl-C handling with line editing
+
msh: fix for bug 846 ("break" didn't work second time)
+
msh: glob0/glob1/glob2/glob3 were just a sorting routine, removed
+
msh: instead of fixing "ls | cd", "cd | ls" etc disallow builtins in pipes. They make no sense there anyway
+
msh: stop trying to parse variables in "msh SCRIPT VAR=val param". They are passed as ordinary parameters
+
netstat: print control chars as "^C" etc
+
nmeter: fix bug where %[mf] behaves as %[mt]
+
nohup: compat patch by Christoph Gysin <mailinglist.cache at gmail.com>
+
od: handle /proc files (which have filesize 0) correctly
+
patch: don't trash permissions of patched file
+
ps: add conditional support for -o [e]time
+
ps: fix COMMAND column adjustment; overflow in USER and VSZ columns
+
reset: call "stty sane". Closes bug 1414
+
rmdir: optional long options support for Debian users. By Roberto Gordo Saez <roberto.gordo AT gmail.com>
+
run-parts: add --reverse
+
script: correctly handle buffered "tail" of output
+
sed: "n" command must reset "we had successful subst" flag. Closes bug 1214