From 5dcb43a5d1ea07e6b58770741882a4b0b82bb29d Mon Sep 17 00:00:00 2001
From: Denis Vlasenko
Date: Wed, 15 Apr 2009 02:13:14 +0000
Subject: [PATCH] website: announce 1.14.0 and 1.13.4 Makefile: bump version to
1.14.0
---
Makefile | 2 +-
docs/busybox.net/news.html | 160 +++++++++++++++++++++++++++++++++++++
libbb/Kbuild | 1 +
scripts/defconfig | 4 +-
4 files changed, 164 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 5b8cad8f6..0d6e17d04 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
VERSION = 1
PATCHLEVEL = 14
SUBLEVEL = 0
-EXTRAVERSION = .svn
+EXTRAVERSION =
NAME = Unnamed
# *DOCUMENTATION*
diff --git a/docs/busybox.net/news.html b/docs/busybox.net/news.html
index 8c33438d3..8f756f088 100644
--- a/docs/busybox.net/news.html
+++ b/docs/busybox.net/news.html
@@ -22,6 +22,166 @@
+ 15 April 2009 -- BusyBox 1.14.0 (unstable), BusyBox 1.13.4 (stable)
+ BusyBox 1.14.0.
+ (svn,
+ patches,
+ how to add a patch)
+ BusyBox 1.13.4.
+ (svn,
+ patches,
+ how to add a patch)
+
+ Sizes of busybox-1.13.4 and busybox-1.14.0 (with equivalent config, static uclibc build):
+ text data bss dec hex filename
+ 785501 483 7036 793020 c19bc busybox.1.13.4/busybox
+ 788380 467 6960 795807 c249f busybox.1.14.0/busybox
+ 15361 0 0 15361 3c01 busybox.1.13.4/shell/hush.o
+ 20724 0 0 20724 50f4 busybox.1.14.0/shell/hush.o
+
+ Most of growth is in hush. The rest shrank a bit.
+
+
New applets:
+
+ - flash_eraseall: by Sebastian Andrzej Siewior (bigeasy AT linutronix.de)
+ - acpid,mkdosfs (aka mkfs.vfat),tunctl: by Vladimir
+ - ftpd: by Adam Tkac
+ - timeout: by Roberto Foglietta
+ - ionice: adapted from Linux kernel' example by Walter Harms
+ - mkpasswd: synonym to cryptpw. mkpasswd is in Debian, OTOH cryptpw was added to busybox earlier. Trying to make both camps happy by making those two applets just aliases. They are command-line compatible
+
+
+ Changes since previous release:
+
+
lash and msh are deprecated, please migrate to hush.
+
+
hush had many, many fixes and features added: here documents, arithmetic evaluation, function support, and all this works on NOMMU too, safely: 100kb-sized `command` and heredocs. Here document support, arithmetic evaluation, improved ${var} ops, other fixes are by Mike Frysinger (vapier AT gentoo.org).
+
+
Other changes:
+
+ - libbb: unify concurrent-safe update of /etc/{passwd,group,[g]shadow}. By Tito (farmatito AT tiscali.it)
+ - libbb/sha1/256/512: major code shrink
+ - libbb/lineedit: make history saving/loading concurrent-safe
+ - libbb: shrink linked list ops. By xmaks AT email.cz
+ - libbb: str2sockaddr shuld accept [IPv6] addr without port - wget 'ftp://[::1]/file' needs that to work
+ - libbb: make bb_info_msg do atomic, unbuffered writes
+ - adduser: allow adding to group 0; don't _create_ /etc/shadow, only append data if it exists
+ - ash: fix mishandled ^C
+ - ash: fix "ash -c 'exec 1>&0'" complaining that fd 0 is busy
+ - ash: fix $IFS handling in read. Closes bug 235
+ - ash: fix a case where we close wrong descriptor
+ - ash: fix bad interaction between ash -c '....&' and bash compat
+ - ash: fix miscalculation of memory needed for eval tree. Found by Timo Teras (timo.teras AT iki.fi)
+ - ash: in dotrap(), do not clear gotsig[] for SIGINT if there is no handler for it, otherwise raise interrupt gets confused later
+ - ash: make dot command search current directory first, as bash does
+ - ash: make evaltree save/restore int suppression depth. Hopefully this fixes bug 189
+ - ash: printf builtin with no arguments should not exit
+ - awk: fix long field separators case. By Ian Wienand (ianw AT vmware.com)
+ - awk: in BEGIN section $0 should be "", not "0"
+ - awk: make "struct global" hack more robust wrt alignment. Closes bug 131
+ - brctl: fix compilation on 2.4.x kernels
+ - chat: treat timeout more correctly
+ - chat: recognize RECORD directive
+ - cksum, printenv: report errors via exitcode
+ - cpio: add -p, -0 and -L options
+ - crond,crontab: make cron directory location configurable
+ - crond: correct more of logfile to 0666 (as usual, umask allows user to remove unwanted bits)
+ - crond: put tasks in separate process groups
+ - dc: fix the "base 2" patch omission of base not being set
+ - depmod: accept and ignore -r. Linux kernel build needs this
+ - depmod: fix -b option. By timo.teras AT iki.fi
+ - udhcpd,dumpleases: write and use 64-bit current time in lease file. without it, determination of remaining lease time is unreliable
+ - udhcpd: remember and record hostnames
+ - dhcprelay: fix usage text. Simplify and make code more readable
+ - dumpleases: fix -a option; show hostnames
+ - udhcpc: fix a problem where we don't open listening socket fast enough
+ - udhcpc: stop filtering environment passed to the script
+ - udhcpd: add code which rejects lease files with suspicious or old timestamp
+ - udhcpd: disable opton to have absolute lease times in lease file (that does not work with dumpleases)
+ - dnsd: fix a number of bugs. Ideas by Ming-Ching Tiew (mctiew AT yahoo.com)
+ - dpkg: better and shorter code to compare versions. Taken from "official" dpkg by Eugene T. Bordenkircher (eugebo AT gmail.com)
+ - du: fix "du /dir /dir" case
+ - env: support -uVAR=VAL
+ - expand: fix incorrect expansion exactly on tab boundary; shrink the code
+ - expr: a bit more robust handling of regexps with groups. Closes bug 87
+ - find: support --mindepth
+ - getty: fix handling of speed 0; stop using non-portable way of setting speeds
+ - grep: support -z
+ - gzip: fix gzip -dc bug caused by using stale getopt state
+ - head: report file open errors with exitcode 1 (was happily returning 0)
+ - httpd: set $HOST to Host: header value. By Tobias Poschwatta (tp AT fonz.de)
+ - ifupdown: allow options to udhcpc to be configurable from .config
+ - init: do not eat last char in messages; do not print duplicate "init:" prefix to syslog
+ - init: fix a bug where on reload order of entries might be wrong
+ - init: major improvement in documentation and signal handling. Lots of nasty, but hard to trip, races are fixed
+ - init: reinstate proper handling of !ENABLE_FEATURE_USE_INITTAB
+ - init: remove wait loop on restart, it may be dangerous
+ - init: test for vt terminal with VT_OPENQRY, assume that anything else is TERM=vt102, not TERM=linux. Closes bug 195
+ - inotifyd: add x, o, and u events
+ - inotifyd: fix buffer overflow and "unreaped zombies" problem
+ - inotifyd: exit if x event happened for all files
+ - inotifyd: conserve resourses by closing unused inotify descriptors
+ - insmod/modprobe: do not pass NULL to kernel as module parameter
+ - ip: in "ip rule add from all table 1", "all" is taken as 0.0.0.0/32, whereas "any" and "default" would be 0.0.0.0/0. They must be all 0.0.0.0/0. Closes bug 57
+ - iproute: fix ipXXX utilities trying to parse their applet name as their 1st parameter
+ - klogctl: fix a problem where we don't terminate read data with '\0' and then misinterpret it
+ - ls: do not follow links with -s. Closes bug 33
+ - ls: implement -Q and -g (-g was accepted but ignored)
+ - ls: make readlink error to not disrupt output (try ls -l /proc/self/fd)
+ - man: better check for duplicated MANPATH
+ - mdev: add support for - ("dont stop here") char
+ - mdev: if /sys/class/block exists, don't scan /sys/block
+ - mdev: ignore events with "$SUBSYSTEM" == "firmware" && "$ACTION" == "remove"
+ - mdev: provide $SUBSYSTEM. By Vladimir
+ - modprobe/insmod for 2.4: support compressed modules. By Guenter (lists AT gknw.net)
+ - modprobe: emit "can't open 'modules.dep': (errno)" instead of "module not found"
+ - modprobe: rework/speedup by Timo Teras (timo.teras AT iki.fi)
+ - modutils-24: fix bad interaction of xzalloc with xrealloc_vector
+ - mount: support "-O option"
+ - mount: stop trying to mount swap partitions
+ - mount: fix CIFS support
+ - mountpoint: add -n option. By Vladimir
+ - nslookup: allow usage of IPv6 addresses or hostnames for DNS server name; allow for port specification. Tested to work: "nslookup google.com [::1]:5353". glibc + IPv6 address of DNS server still does not work
+ - popmaildir: fix several grave bugs with using memory past end of malloc block
+ - printf: fix 1.12.0 breakage (from %*d fix), it was misinterpreting "*"
+ - printf: make integer format strings print long long-sized values
+ - rmmod: fix bug 263 "modutils/rmmod can't remove modules with dash in name on 2.4 kernels"
+ - sendmail: document and fix usage of fd #4, fix check for helper failure
+ - sendmail: update by Vladimir
+ - seq: add -w support. By Natanael Copa
+ - seq: add support for "-s separator"
+ - stat: make stat -f show filesystem "ID:" as coreutils does
+ - sysctl: fix another corner case with "dots and slashes"
+ - sysctl: fix broken -p [file]. Closes bug 231
+ - sysctl: support recursing if name is a directory: "sysctl net.ipv4.conf". Patch by xmaks AT email.cz
+ - syslogd: comment out file locking; make signal handling syncronous
+ - syslogd: create logfile with 0666 (affected by umask as usual), not 0600
+ - tail: fix tail +N syntax not working. Closes bug 221
+ - tar: do not change new tarfile's mode, GNU tar doesn't do it
+ - tar: support GNU tar's "base256" encoding
+ - telnetd: correctly output 0xff char
+ - telnetd: do not advertise TELNET_LFLOW, we do not support it properly
+ - tftp: when we infer local name from remote (-r [/]path/path/file), strip path. This mimics wget and is generally more intuitive
+ - timeout: fix parsing of -t NUM on MMU
+ - top: make it work again on 2.4 kernels. Closes bug 125
+ - tr: fix overflow in expand and complement, fix stop after [:class:]
+ - tr: support -C as synonym to -c
+ - tr: support [:xdigit:], fix handling of ranges and [x]'s
+ - traceroute: rewrite. Do not emit raw IP packets, instead send UDP or ICMP packets and rely on the kernel to form IP headers, select source IP and interface
+ - uname: add support for -i and -o, fix printing of unknown -p value with -a option
+ - uname: support long options
+ - unexpand: fix incorrect expansion
+ - unzip: fix thinko with le/be conv and size. Closes bug 129
+ - vi: fix several instances of major goof: when text grows, text[] might get reallocated! We were keeping around pointers to old place
+ - vi: speedup and code shrink. By Walter Harms
+ - volume_id: abort early on read failures. Should help with probing missing fdd's
+ - volumeid: fix bug 249 "findfs finds the wrong partition"
+ - wget: --post-data support. By Harald Kuthe (harald-tuxbox AT arcor.de)
+ - wget: fix --header handling
+ - wget: more robust EINTR detection
+
+
+
8 March 2009 -- BusyBox 1.13.3 (stable)
BusyBox 1.13.3.
(svn,
diff --git a/libbb/Kbuild b/libbb/Kbuild
index 57d5d21cf..8fddabdba 100644
--- a/libbb/Kbuild
+++ b/libbb/Kbuild
@@ -122,6 +122,7 @@ lib-$(CONFIG_LOSETUP) += loop.o
lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o
lib-$(CONFIG_ADDGROUP) += update_passwd.o
lib-$(CONFIG_ADDUSER) += update_passwd.o
+lib-$(CONFIG_DELGROUP) += update_passwd.o
lib-$(CONFIG_DELUSER) += update_passwd.o
lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o
lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o
diff --git a/scripts/defconfig b/scripts/defconfig
index 50a6a33ab..a3ab58878 100644
--- a/scripts/defconfig
+++ b/scripts/defconfig
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Busybox version: 1.14.0.svn
-# Mon Apr 13 16:22:36 2009
+# Busybox version: 1.14.0
+# Wed Apr 15 04:12:17 2009
#
CONFIG_HAVE_DOT_CONFIG=y
--
2.25.1