diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-14 21:21:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-14 21:21:08 +0000 |
commit | cb81e6484d1f50ec2761f6294722407b14add525 (patch) | |
tree | 81fb6290ef50af3488a5ee0f97150b6503df6a3f /util-linux | |
parent | 74f270a3177a43b29d98b6c5b6a2c5338be8b98f (diff) | |
download | busybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.tar.gz busybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.tar.bz2 busybox-w32-cb81e6484d1f50ec2761f6294722407b14add525.zip |
Update a bunch of docs. Run a script to update my email addr.
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/Makefile | 2 | ||||
-rw-r--r-- | util-linux/Makefile.in | 2 | ||||
-rw-r--r-- | util-linux/dmesg.c | 4 | ||||
-rw-r--r-- | util-linux/freeramdisk.c | 2 | ||||
-rw-r--r-- | util-linux/mkswap.c | 2 | ||||
-rw-r--r-- | util-linux/more.c | 4 | ||||
-rw-r--r-- | util-linux/mount.c | 4 | ||||
-rw-r--r-- | util-linux/swaponoff.c | 4 | ||||
-rw-r--r-- | util-linux/umount.c | 3 |
9 files changed, 13 insertions, 14 deletions
diff --git a/util-linux/Makefile b/util-linux/Makefile index 41080a930..d2e496231 100644 --- a/util-linux/Makefile +++ b/util-linux/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | # Makefile for busybox | 1 | # Makefile for busybox |
2 | # | 2 | # |
3 | # Copyright (C) 1999-2002 Erik Andersen <andersee@debian.org> | 3 | # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
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/util-linux/Makefile.in b/util-linux/Makefile.in index 28757a336..8cd5f1bd0 100644 --- a/util-linux/Makefile.in +++ b/util-linux/Makefile.in | |||
@@ -1,6 +1,6 @@ | |||
1 | # Makefile for busybox | 1 | # Makefile for busybox |
2 | # | 2 | # |
3 | # Copyright (C) 1999-2002 Erik Andersen <andersee@debian.org> | 3 | # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
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/util-linux/dmesg.c b/util-linux/dmesg.c index fb1639ace..6e0d6947f 100644 --- a/util-linux/dmesg.c +++ b/util-linux/dmesg.c | |||
@@ -11,11 +11,11 @@ | |||
11 | * - added Native Language Support | 11 | * - added Native Language Support |
12 | * | 12 | * |
13 | * from util-linux -- adapted for busybox by | 13 | * from util-linux -- adapted for busybox by |
14 | * Erik Andersen <andersee@debian.org>. I ripped out Native Language | 14 | * Erik Andersen <andersen@codepoet.org>. I ripped out Native Language |
15 | * Support, replaced getopt, added some gotos for redundant stuff. | 15 | * Support, replaced getopt, added some gotos for redundant stuff. |
16 | * | 16 | * |
17 | * Audited and cleaned up on 7 March 2003 to reduce size of | 17 | * Audited and cleaned up on 7 March 2003 to reduce size of |
18 | * check error handling by Erik Andersen <andersee@debian.org> | 18 | * check error handling by Erik Andersen <andersen@codepoet.org> |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <stdio.h> | 21 | #include <stdio.h> |
diff --git a/util-linux/freeramdisk.c b/util-linux/freeramdisk.c index 00dc00841..af00c6678 100644 --- a/util-linux/freeramdisk.c +++ b/util-linux/freeramdisk.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * freeramdisk implementation for busybox | 3 | * freeramdisk implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it> | 5 | * Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it> |
6 | * Adjusted a bit by Erik Andersen <andersee@debian.org> | 6 | * Adjusted a bit by Erik Andersen <andersen@codepoet.org> |
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/util-linux/mkswap.c b/util-linux/mkswap.c index 15db392d2..30a364ced 100644 --- a/util-linux/mkswap.c +++ b/util-linux/mkswap.c | |||
@@ -30,7 +30,7 @@ | |||
30 | * - added Native Language Support | 30 | * - added Native Language Support |
31 | * | 31 | * |
32 | * from util-linux -- adapted for busybox by | 32 | * from util-linux -- adapted for busybox by |
33 | * Erik Andersen <andersee@debian.org>. I ripped out Native Language | 33 | * Erik Andersen <andersen@codepoet.org>. I ripped out Native Language |
34 | * Support, made some stuff smaller, and fitted for life in busybox. | 34 | * Support, made some stuff smaller, and fitted for life in busybox. |
35 | * | 35 | * |
36 | */ | 36 | */ |
diff --git a/util-linux/more.c b/util-linux/more.c index ff0557d22..1ec3007bf 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -3,9 +3,9 @@ | |||
3 | * Mini more implementation for busybox | 3 | * Mini more implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
6 | * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org> | 6 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
7 | * | 7 | * |
8 | * Latest version blended together by Erik Andersen <andersen@lineo.com>, | 8 | * Latest version blended together by Erik Andersen <andersen@codepoet.org>, |
9 | * based on the original more implementation by Bruce, and code from the | 9 | * based on the original more implementation by Bruce, and code from the |
10 | * Debian boot-floppies team. | 10 | * Debian boot-floppies team. |
11 | * | 11 | * |
diff --git a/util-linux/mount.c b/util-linux/mount.c index 49d086c97..d89e286fc 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Mini mount implementation for busybox | 3 | * Mini mount implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
6 | * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org> | 6 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
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 |
@@ -25,7 +25,7 @@ | |||
25 | * | 25 | * |
26 | * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. | 26 | * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. |
27 | * | 27 | * |
28 | * 1999-10-07 Erik Andersen <andersee@debian.org>. | 28 | * 1999-10-07 Erik Andersen <andersen@codepoet.org>. |
29 | * Rewrite of a lot of code. Removed mtab usage (I plan on | 29 | * Rewrite of a lot of code. Removed mtab usage (I plan on |
30 | * putting it back as a compile-time option some time), | 30 | * putting it back as a compile-time option some time), |
31 | * major adjustments to option parsing, and some serious | 31 | * major adjustments to option parsing, and some serious |
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c index b323cb10a..1f3e930a1 100644 --- a/util-linux/swaponoff.c +++ b/util-linux/swaponoff.c | |||
@@ -2,8 +2,8 @@ | |||
2 | /* | 2 | /* |
3 | * Mini swapon/swapoff implementation for busybox | 3 | * Mini swapon/swapoff implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen | 5 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
6 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> | 6 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
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/util-linux/umount.c b/util-linux/umount.c index c11f2e9d7..863d52476 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -2,8 +2,7 @@ | |||
2 | /* | 2 | /* |
3 | * Mini umount implementation for busybox | 3 | * Mini umount implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen | 5 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
6 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> | ||
7 | * | 6 | * |
8 | * This program is free software; you can redistribute it and/or modify | 7 | * 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 | 8 | * it under the terms of the GNU General Public License as published by |