aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-04-25 05:11:19 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-04-25 05:11:19 +0000
commitc6992feee37fff107298f81697756db6beadb87d (patch)
tree8317cbcc27649d7e541e7bddb3fdd09d1543e2da
parentb94669543df39440415d734ad2932a83651471e9 (diff)
downloadbusybox-w32-c6992feee37fff107298f81697756db6beadb87d.tar.gz
busybox-w32-c6992feee37fff107298f81697756db6beadb87d.tar.bz2
busybox-w32-c6992feee37fff107298f81697756db6beadb87d.zip
Update my email address, document some of my tasks in the AUTHORS file
-rw-r--r--AUTHORS14
-rw-r--r--archival/ar.c2
-rw-r--r--archival/bunzip2.c2
-rw-r--r--archival/gunzip.c2
-rw-r--r--archival/libunarchive/decompress_unzip.c2
-rw-r--r--archival/tar.c2
-rw-r--r--coreutils/fold.c2
-rw-r--r--coreutils/install.c2
-rw-r--r--coreutils/uudecode.c2
-rw-r--r--docs/busybox_footer.pod4
-rw-r--r--editors/patch.c2
-rw-r--r--editors/sed.c2
-rw-r--r--init/minit.c2
-rw-r--r--init/msvc.c2
-rw-r--r--init/pidfilehack.c2
-rw-r--r--networking/ftpgetput.c2
-rw-r--r--networking/ifupdown.c2
-rw-r--r--networking/nameif.c2
-rw-r--r--networking/udhcp/ChangeLog2
19 files changed, 27 insertions, 25 deletions
diff --git a/AUTHORS b/AUTHORS
index ab5650fb9..a90456ca9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -9,7 +9,7 @@ incorect, _please_ let me know.
9----------- 9-----------
10 10
11Emanuele Aina <emanuele.aina@tiscali.it> 11Emanuele Aina <emanuele.aina@tiscali.it>
12 run-parts 12 run-parts
13 13
14Erik Andersen <andersen@codepoet.org> 14Erik Andersen <andersen@codepoet.org>
15 Tons of new stuff, major rewrite of most of the 15 Tons of new stuff, major rewrite of most of the
@@ -40,7 +40,7 @@ Dave Cinege <dcinege@psychosis.com>
40 various fixes, Linux Router Project maintenance 40 various fixes, Linux Router Project maintenance
41 41
42Jordan Crouse <jordan@cosmicpenguin.net> 42Jordan Crouse <jordan@cosmicpenguin.net>
43 ipcalc 43 ipcalc
44 44
45Magnus Damm <damm@opensource.se> 45Magnus Damm <damm@opensource.se>
46 tftp client 46 tftp client
@@ -66,13 +66,15 @@ Matt Kraai <kraai@alumni.cmu.edu>
66 documentation, bugfixes, test suite 66 documentation, bugfixes, test suite
67 67
68Stephan Linz <linz@li-pro.net> 68Stephan Linz <linz@li-pro.net>
69 ipcalc, Red Hat equivalence 69 ipcalc, Red Hat equivalence
70 70
71John Lombardo <john@deltanet.com> 71John Lombardo <john@deltanet.com>
72 tr 72 tr
73 73
74Glenn McGrath <bug1@optushome.com.au> 74Glenn McGrath <bug1@iinet.net.au>
75 ar, dpkg, dpkg-deb 75 Common unarchving code and unarchiving applets, ifupdown, ftpgetput,
76 nameif, sed, patch, fold, install, uudecode.
77 Various bugfixes, review and apply numerous patches.
76 78
77Manuel Novoa III <mjn3@codepoet.org> 79Manuel Novoa III <mjn3@codepoet.org>
78 cat, head, mkfifo, mknod, rmdir, sleep, tee, tty, uniq, usleep, wc, yes, 80 cat, head, mkfifo, mknod, rmdir, sleep, tee, tty, uniq, usleep, wc, yes,
@@ -123,5 +125,5 @@ Enrique Zanardi <ezanardi@ull.es>
123 tarcat (since removed), loadkmap, various fixes, Debian maintenance 125 tarcat (since removed), loadkmap, various fixes, Debian maintenance
124 126
125Tito Ragusa <farmatito@tiscali.it> 127Tito Ragusa <farmatito@tiscali.it>
126 devfsd and size optimizations in strings, openvt and deallocvt. 128 devfsd and size optimizations in strings, openvt and deallocvt.
127 129
diff --git a/archival/ar.c b/archival/ar.c
index ddf3fdadb..b058b9ec1 100644
--- a/archival/ar.c
+++ b/archival/ar.c
@@ -3,7 +3,7 @@
3 * Mini ar implementation for busybox 3 * Mini ar implementation for busybox
4 * 4 *
5 * Copyright (C) 2000 by Glenn McGrath 5 * Copyright (C) 2000 by Glenn McGrath
6 * Written by Glenn McGrath <bug1@optushome.com.au> 1 June 2000 6 * Written by Glenn McGrath <bug1@iinet.net.au> 1 June 2000
7 * 7 *
8 * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar. 8 * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.
9 * 9 *
diff --git a/archival/bunzip2.c b/archival/bunzip2.c
index ba422723c..5be9da517 100644
--- a/archival/bunzip2.c
+++ b/archival/bunzip2.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Modified for busybox by Glenn McGrath <bug1@optushome.com.au> 2 * Modified for busybox by Glenn McGrath <bug1@iinet.net.au>
3 * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no> 3 * Added support output to stdout by Thomas Lundquist <thomasez@zelow.no>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This program is free software; you can redistribute it and/or modify
diff --git a/archival/gunzip.c b/archival/gunzip.c
index 2c4dc49a4..beb7bd12e 100644
--- a/archival/gunzip.c
+++ b/archival/gunzip.c
@@ -12,7 +12,7 @@
12 * handling. 12 * handling.
13 * 13 *
14 * General cleanup to better adhere to the style guide and make use of standard 14 * General cleanup to better adhere to the style guide and make use of standard
15 * busybox functions by Glenn McGrath <bug1@optushome.com.au> 15 * busybox functions by Glenn McGrath <bug1@iinet.net.au>
16 * 16 *
17 * This program is free software; you can redistribute it and/or modify 17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by 18 * it under the terms of the GNU General Public License as published by
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c
index 35fcfeec8..e8cf54bff 100644
--- a/archival/libunarchive/decompress_unzip.c
+++ b/archival/libunarchive/decompress_unzip.c
@@ -12,7 +12,7 @@
12 * command line handling. 12 * command line handling.
13 * 13 *
14 * General cleanup to better adhere to the style guide and make use of standard 14 * General cleanup to better adhere to the style guide and make use of standard
15 * busybox functions by Glenn McGrath <bug1@optushome.com.au> 15 * busybox functions by Glenn McGrath <bug1@iinet.net.au>
16 * 16 *
17 * read_gz interface + associated hacking by Laurence Anderson 17 * read_gz interface + associated hacking by Laurence Anderson
18 * 18 *
diff --git a/archival/tar.c b/archival/tar.c
index 8d2ccca77..9d50a101d 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -3,7 +3,7 @@
3 * Mini tar implementation for busybox 3 * Mini tar implementation for busybox
4 * 4 *
5 * Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg 5 * Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg
6 * Glenn McGrath <bug1@optushome.com.au> 6 * Glenn McGrath <bug1@iinet.net.au>
7 * 7 *
8 * Note, that as of BusyBox-0.43, tar has been completely rewritten from the 8 * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
9 * ground up. It still has remnants of the old code lying about, but it is 9 * ground up. It still has remnants of the old code lying about, but it is
diff --git a/coreutils/fold.c b/coreutils/fold.c
index df5110755..68f24e61a 100644
--- a/coreutils/fold.c
+++ b/coreutils/fold.c
@@ -4,7 +4,7 @@
4 Copyright (C) 91, 1995-2002 Free Software Foundation, Inc. 4 Copyright (C) 91, 1995-2002 Free Software Foundation, Inc.
5 5
6 Modified for busybox based on coreutils v 5.0 6 Modified for busybox based on coreutils v 5.0
7 Copyright (C) 2003 Glenn McGrath <bug1@optushome.com.au> 7 Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
8 8
9 This program is free software; you can redistribute it and/or modify 9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by 10 it under the terms of the GNU General Public License as published by
diff --git a/coreutils/install.c b/coreutils/install.c
index 305e02b0d..36dc1d618 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (C) 2003 by Glenn McGrath <bug1@optushome.com.au> 2 * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c
index 96da7caf3..57d4e8371 100644
--- a/coreutils/uudecode.c
+++ b/coreutils/uudecode.c
@@ -1,6 +1,6 @@
1/* 1/*
2 * GPLv2 2 * GPLv2
3 * Copyright 2003, Glenn McGrath <bug1@optushome.com.au> 3 * Copyright 2003, Glenn McGrath <bug1@iinet.net.au>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as published 6 * it under the terms of the GNU General Public License version 2 as published
diff --git a/docs/busybox_footer.pod b/docs/busybox_footer.pod
index 64785ecd1..9ee36f554 100644
--- a/docs/busybox_footer.pod
+++ b/docs/busybox_footer.pod
@@ -156,7 +156,7 @@ John Lombardo <john@deltanet.com>
156 156
157=for html <br> 157=for html <br>
158 158
159Glenn McGrath <bug1@optushome.com.au> 159Glenn McGrath <bug1@iinet.net.au>
160 160
161 ar, dpkg, dpkg-deb 161 ar, dpkg, dpkg-deb
162 162
@@ -252,5 +252,5 @@ Tito Ragusa <farmatito@tiscali.it>
252 252
253=cut 253=cut
254 254
255# $Id: busybox_footer.pod,v 1.16 2004/04/13 16:31:41 andersen Exp $ 255# $Id: busybox_footer.pod,v 1.17 2004/04/25 05:11:14 bug1 Exp $
256 256
diff --git a/editors/patch.c b/editors/patch.c
index e3745ef39..6a68d2ef8 100644
--- a/editors/patch.c
+++ b/editors/patch.c
@@ -1,7 +1,7 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * busybox patch applet to handle the unified diff format. 3 * busybox patch applet to handle the unified diff format.
4 * Copyright (C) 2003 Glenn McGrath <bug1@optushome.com.au> 4 * Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify 6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by 7 * it under the terms of the GNU General Public License as published by
diff --git a/editors/sed.c b/editors/sed.c
index 750f41acd..df6a8b40d 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -5,7 +5,7 @@
5 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley 5 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
6 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org> 6 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
7 * Copyright (C) 2002 Matt Kraai 7 * Copyright (C) 2002 Matt Kraai
8 * Copyright (C) 2003 by Glenn McGrath <bug1@optushome.com.au> 8 * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
9 * Copyright (C) 2003,2004 by Rob Landley <rob@landley.net> 9 * Copyright (C) 2003,2004 by Rob Landley <rob@landley.net>
10 * 10 *
11 * This program is free software; you can redistribute it and/or modify 11 * This program is free software; you can redistribute it and/or modify
diff --git a/init/minit.c b/init/minit.c
index 6645dc6ce..8269ac112 100644
--- a/init/minit.c
+++ b/init/minit.c
@@ -1,6 +1,6 @@
1/* 1/*
2 * minit version 0.9.1 by Felix von Leitner 2 * minit version 0.9.1 by Felix von Leitner
3 * ported to busybox by Glenn McGrath <bug1@optushome.com.au> 3 * ported to busybox by Glenn McGrath <bug1@iinet.net.au>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
diff --git a/init/msvc.c b/init/msvc.c
index d72ddce1e..8a091b346 100644
--- a/init/msvc.c
+++ b/init/msvc.c
@@ -1,6 +1,6 @@
1/* 1/*
2 * minit version 0.9.1 by Felix von Leitner 2 * minit version 0.9.1 by Felix von Leitner
3 * ported to busybox by Glenn McGrath <bug1@optushome.com.au> 3 * ported to busybox by Glenn McGrath <bug1@iinet.net.au>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
diff --git a/init/pidfilehack.c b/init/pidfilehack.c
index a2d905b55..aa2fc0ac5 100644
--- a/init/pidfilehack.c
+++ b/init/pidfilehack.c
@@ -1,6 +1,6 @@
1/* 1/*
2 * minit version 0.9.1 by Felix von Leitner 2 * minit version 0.9.1 by Felix von Leitner
3 * ported to busybox by Glenn McGrath <bug1@optushome.com.au> 3 * ported to busybox by Glenn McGrath <bug1@iinet.net.au>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index 47ffb5d98..2ef0b2c44 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -5,7 +5,7 @@
5 * Mini implementation of FTP to retrieve a remote file. 5 * Mini implementation of FTP to retrieve a remote file.
6 * 6 *
7 * Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com> 7 * Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com>
8 * Copyright (C) 2002 Glenn McGrath <bug1@optushome.com.au> 8 * Copyright (C) 2002 Glenn McGrath <bug1@iinet.net.au>
9 * 9 *
10 * Based on wget.c by Chip Rosenthal Covad Communications 10 * Based on wget.c by Chip Rosenthal Covad Communications
11 * <chip@laserlink.net> 11 * <chip@laserlink.net>
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index de65d29f3..ebf528d71 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -1,7 +1,7 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * ifupdown for busybox 3 * ifupdown for busybox
4 * Copyright (c) 2002 Glenn McGrath <bug1@optushome.com.au> 4 * Copyright (c) 2002 Glenn McGrath <bug1@iinet.net.au>
5 * Copyright (c) 2003-2004 Erik Andersen <andersen@codepoet.org> 5 * Copyright (c) 2003-2004 Erik Andersen <andersen@codepoet.org>
6 * 6 *
7 * Based on ifupdown v 0.6.4 by Anthony Towns 7 * Based on ifupdown v 0.6.4 by Anthony Towns
diff --git a/networking/nameif.c b/networking/nameif.c
index dcc5ec097..10f13b4bc 100644
--- a/networking/nameif.c
+++ b/networking/nameif.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * Written 2000 by Andi Kleen. 4 * Written 2000 by Andi Kleen.
5 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua> 5 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
6 * Glenn McGrath <bug1@optushome.com.au> 6 * Glenn McGrath <bug1@iinet.net.au>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
diff --git a/networking/udhcp/ChangeLog b/networking/udhcp/ChangeLog
index 2feffc776..bf2982f4b 100644
--- a/networking/udhcp/ChangeLog
+++ b/networking/udhcp/ChangeLog
@@ -14,7 +14,7 @@
14+ use /dev/urandom to seed xid's (instead of time(0)) (me) 14+ use /dev/urandom to seed xid's (instead of time(0)) (me)
15+ fixed renew behavior (me) 15+ fixed renew behavior (me)
16+ udhcp now fits nicely into busybox 16+ udhcp now fits nicely into busybox
17 (Glenn McGrath <bug1@optushome.com.au> as well as myself) 17 (Glenn McGrath <bug1@iinet.net.au> as well as myself)
18+ updated client manpage (me) 18+ updated client manpage (me)
19+ both client and server now use sockets for signal handling, 19+ both client and server now use sockets for signal handling,
20 hopefully, this will be the last needed change in signal 20 hopefully, this will be the last needed change in signal