aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-10-24 21:46:19 +0000
committerRob Landley <rob@landley.net>2006-10-24 21:46:19 +0000
commit44c7917cab43713a034622bfb6e464de92cf8f1c (patch)
treeb907ec82d8c1329b60276e4579dcf757d7910daf
parentd35d540217b0e481031d896624bec2eed2cc580f (diff)
downloadbusybox-w32-44c7917cab43713a034622bfb6e464de92cf8f1c.tar.gz
busybox-w32-44c7917cab43713a034622bfb6e464de92cf8f1c.tar.bz2
busybox-w32-44c7917cab43713a034622bfb6e464de92cf8f1c.zip
Put up BusyBox 1.2.2 and get out of Denis' way. Also minor tweak to
autodocifier.pl so USAGE_ macros that haven't been converted to USE_ yet get correctly stripped out when generating BusyBox.html.
-rw-r--r--README4
-rwxr-xr-xdocs/autodocifier.pl1
-rw-r--r--docs/busybox.net/footer.html2
-rw-r--r--docs/busybox.net/news.html29
-rw-r--r--docs/busybox_footer.pod2
5 files changed, 33 insertions, 5 deletions
diff --git a/README b/README
index 08c3f1d41..0ed196a53 100644
--- a/README
+++ b/README
@@ -194,5 +194,5 @@ Supported hardware:
194 194
195Please feed suggestions, bug reports, insults, and bribes back to the busybox 195Please feed suggestions, bug reports, insults, and bribes back to the busybox
196maintainer: 196maintainer:
197 Rob Landley 197 Denis Vlasenko
198 <rob@landley.net> 198 <vda.linux@googlemail.com>
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl
index 4acb6bdc8..3aa838eb4 100755
--- a/docs/autodocifier.pl
+++ b/docs/autodocifier.pl
@@ -25,6 +25,7 @@ sub beautify {
25 my $text2 = $text; 25 my $text2 = $text;
26 $text =~ s/SKIP_\w+\(.*?"\s*\)//sxg; 26 $text =~ s/SKIP_\w+\(.*?"\s*\)//sxg;
27 $text =~ s/USE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg; 27 $text =~ s/USE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg;
28 $text =~ s/USAGE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg;
28 last if ( $text2 eq $text ); 29 last if ( $text2 eq $text );
29 } 30 }
30 $text =~ s/"\s*"//sg; 31 $text =~ s/"\s*"//sg;
diff --git a/docs/busybox.net/footer.html b/docs/busybox.net/footer.html
index 319a300ff..5f2335a2b 100644
--- a/docs/busybox.net/footer.html
+++ b/docs/busybox.net/footer.html
@@ -16,7 +16,7 @@
16 <br> 16 <br>
17 Mail all comments, insults, suggestions and bribes to 17 Mail all comments, insults, suggestions and bribes to
18 <br> 18 <br>
19 Rob Landley <a href="mailto:rob@landley.net">rob@landley.net</a><br> 19 Denis Vlasenko <a href="mailto:vda.linux@googlemail.com">vda.linux@googlemail.com</a><br>
20 </font> 20 </font>
21 </td> 21 </td>
22 22
diff --git a/docs/busybox.net/news.html b/docs/busybox.net/news.html
index b82e32032..7f8307d9d 100644
--- a/docs/busybox.net/news.html
+++ b/docs/busybox.net/news.html
@@ -2,7 +2,34 @@
2 2
3 3
4<ul> 4<ul>
5 <li><b>Sep 29, 2006 -- New license email address.</b> 5 <li><b>24 October, 2006 -- BusyBox 1.2.2 (stable)</b>
6 <p>It's a bit overdue, but
7 <a href=http://busybox.net/downloads/busybox-1.2.2.tar.bz2>here is
8 BusyBox 1.2.2</a>.</p>
9
10 <p>This release has dozens of fixes backported from the ongoing development
11 branch. There are a couple of bugfixes to sed, two fixes to documentation
12 generation (BusyBox.html shouldn't have USE() macros in it anymore), fix
13 umount to report the right errno on failure and to umount block devices by
14 name with newer kernels, fix mount to handle symlinks properly, make mdev
15 delete device nodes when called for hotplug remove, fix a segfault
16 in traceroute, a minor portability fix to md5sum option parsing, a build
17 fix for httpd with old gccs, an options parsing tweak to hdparm, make test
18 fail gracefully when getgroups() returns -1, fix a race condition in
19 modprobe when two instances run at once (hotplug does this), make "tar xf
20 foo.tar dir/dir" extract all subdirectories, make our getty initialize the
21 terminal more like mingetty, an selinux build fix, an endianness fix in
22 ping6, fix for zcip defending addresses, clean up some global variables in
23 gzip to save memory, fix sulogin -tNNN, a help text tweak, several warning
24 fixes and build fixes, fixup dnsd a bit, and a partridge in a pear tree.</p>
25
26 <p>As <a href=http://lwn.net/Articles/202106/>Linux Weekly News noted</a>,
27 this is my (Rob's) last release of BusyBox. The new maintainer is Denis
28 Vlasenko, I'm off to do <a href=http://landley.net/code>other things</a>.
29 </p>
30 </li>
31
32 <li><b>29 September, 2006 -- New license email address.</b>
6 <p>The email address gpl@busybox.net is now the recommended way to contact 33 <p>The email address gpl@busybox.net is now the recommended way to contact
7 the Software Freedom Law Center to report BusyBox license violations.</p> 34 the Software Freedom Law Center to report BusyBox license violations.</p>
8 35
diff --git a/docs/busybox_footer.pod b/docs/busybox_footer.pod
index da4ffa7f8..b2835f6bc 100644
--- a/docs/busybox_footer.pod
+++ b/docs/busybox_footer.pod
@@ -25,7 +25,7 @@ use of any NSS support files or libraries.
25 25
26=head1 MAINTAINER 26=head1 MAINTAINER
27 27
28Rob Landley <rob@landley.net> 28Denis Vlasenko <vda.linux@googlemail.com>
29 29
30=head1 AUTHORS 30=head1 AUTHORS
31 31