From 6cee58e9cfedfa09ede3f5499eb5f635fc2bb77c Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 4 Nov 2007 15:43:26 +0000 Subject: Announce 1.8.0 --- Config.in | 4 +- Makefile | 2 +- archival/bz/blocksort.c | 18 ++++---- docs/busybox.net/news.html | 111 ++++++++++++++++++++++++++++++++++++++++++++- loginutils/adduser.c | 4 +- modutils/insmod.c | 2 +- networking/Config.in | 14 +++--- 7 files changed, 132 insertions(+), 23 deletions(-) diff --git a/Config.in b/Config.in index 74f8beae9..fa48ddd63 100644 --- a/Config.in +++ b/Config.in @@ -186,10 +186,10 @@ config FEATURE_SUID_CONFIG The file has to be owned by user root, group root and has to be writeable only by root: - (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf) + (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf) The busybox executable has to be owned by user root, group root and has to be setuid root for this to work: - (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox) + (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox) Robert 'sandman' Griebl has more information here: . diff --git a/Makefile b/Makefile index 6808e7d0f..6587d901e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 1 PATCHLEVEL = 8 SUBLEVEL = 0 -EXTRAVERSION = .svn +EXTRAVERSION = NAME = Unnamed # *DOCUMENTATION* diff --git a/archival/bz/blocksort.c b/archival/bz/blocksort.c index aaed883de..cddbfcbea 100644 --- a/archival/bz/blocksort.c +++ b/archival/bz/blocksort.c @@ -703,17 +703,17 @@ void mainQSort3(uint32_t* ptr, /*---------------------------------------------*/ /* Pre: - * nblock > N_OVERSHOOT - * block32 exists for [0 .. nblock-1 +N_OVERSHOOT] - * ((uint8_t*)block32) [0 .. nblock-1] holds block - * ptr exists for [0 .. nblock-1] + * nblock > N_OVERSHOOT + * block32 exists for [0 .. nblock-1 +N_OVERSHOOT] + * ((uint8_t*)block32) [0 .. nblock-1] holds block + * ptr exists for [0 .. nblock-1] * * Post: - * ((uint8_t*)block32) [0 .. nblock-1] holds block - * All other areas of block32 destroyed - * ftab[0 .. 65536] destroyed - * ptr [0 .. nblock-1] holds sorted order - * if (*budget < 0), sorting was abandoned + * ((uint8_t*)block32) [0 .. nblock-1] holds block + * All other areas of block32 destroyed + * ftab[0 .. 65536] destroyed + * ptr [0 .. nblock-1] holds sorted order + * if (*budget < 0), sorting was abandoned */ #define BIGFREQ(b) (ftab[((b)+1) << 8] - ftab[(b) << 8]) diff --git a/docs/busybox.net/news.html b/docs/busybox.net/news.html index 5e546f4a4..c8cf331c2 100644 --- a/docs/busybox.net/news.html +++ b/docs/busybox.net/news.html @@ -1,6 +1,116 @@