diff options
author | Robert Griebl <griebl@gmx.de> | 2002-08-05 02:57:12 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-08-05 02:57:12 +0000 |
commit | 6859d761d36f57668da44c4cb9281b45c463e65d (patch) | |
tree | c1581f23b9ed8a30275d90bce0e84c77f0f40d90 | |
parent | 0d833ca7fdf8500956191947dee4eb9bda49e86d (diff) | |
download | busybox-w32-6859d761d36f57668da44c4cb9281b45c463e65d.tar.gz busybox-w32-6859d761d36f57668da44c4cb9281b45c463e65d.tar.bz2 busybox-w32-6859d761d36f57668da44c4cb9281b45c463e65d.zip |
- updated a few copyright/left file headers
- documented most of my 0.61 changes in the ChangeLog
-rw-r--r-- | Changelog | 32 | ||||
-rw-r--r-- | coreutils/date.c | 2 | ||||
-rw-r--r-- | modutils/modprobe.c | 19 | ||||
-rw-r--r-- | util-linux/hwclock.c | 19 |
4 files changed, 66 insertions, 6 deletions
@@ -7,7 +7,10 @@ | |||
7 | New Applets: | 7 | New Applets: |
8 | * Erik Andersen -- Merged several applets from tinylogin, | 8 | * Erik Andersen -- Merged several applets from tinylogin, |
9 | namely adduser, addgroup, deluser, delgroup, getty. | 9 | namely adduser, addgroup, deluser, delgroup, getty. |
10 | 10 | * Robert Griebl <sandman@handhelds.org> | |
11 | -- reimplemented tinylogin applets: su, login | ||
12 | -- added hwclock | ||
13 | -- added uncompress | ||
11 | 14 | ||
12 | Other Changes: | 15 | Other Changes: |
13 | 16 | ||
@@ -35,7 +38,32 @@ | |||
35 | * Tim Riker <Tim@Rikers.org> | 38 | * Tim Riker <Tim@Rikers.org> |
36 | -- fix and shrink uuencode | 39 | -- fix and shrink uuencode |
37 | -- allow tty* in inittab if exist, serial console is not the issue | 40 | -- allow tty* in inittab if exist, serial console is not the issue |
38 | 41 | * Robert Griebl <sandman@handhelds.org> | |
42 | -- added suid/sgid handling with 3 modes to busybox: | ||
43 | 1) completly disabled | ||
44 | 2) tinylogin like | ||
45 | 3) runtime configureable via /etc/busybox.conf | ||
46 | |||
47 | -- modprobe: complete rewrite, supports modules.dep, parses | ||
48 | modules.conf for alias and options and can be called | ||
49 | from the kernel. | ||
50 | -- tar: support for -z when creating archives | ||
51 | -- wget: support for -Y|--proxy=on/off and --passive-ftp | ||
52 | -- vi: support for ":x" | ||
53 | -- date: support for -I (ISO format) | ||
54 | -- find: support for -xdev | ||
55 | -- mount: support for -t in list mode, parsing of /etc/filesystems | ||
56 | -- ash: support for --login (bash like) | ||
57 | -- route: support for -e | ||
58 | -- netstat: support for -e and -r | ||
59 | -- head/tail: support for old style -[0-9] options | ||
60 | -- sed: support for ! and \CregexpC | ||
61 | -- pidof: support for -s | ||
62 | -- nslookup: support for user specified name server | ||
63 | |||
64 | -- logger: fixed logging of '<' characters | ||
65 | -- ash: fixed crash when run in a rxvt window | ||
66 | |||
39 | -Erik Andersen, --not yet released-- | 67 | -Erik Andersen, --not yet released-- |
40 | 68 | ||
41 | 69 | ||
diff --git a/coreutils/date.c b/coreutils/date.c index 4bd308b86..a9188a1ce 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -3,6 +3,8 @@ | |||
3 | * Mini date implementation for busybox | 3 | * Mini date implementation for busybox |
4 | * | 4 | * |
5 | * by Matthew Grant <grantma@anathoth.gen.nz> | 5 | * by Matthew Grant <grantma@anathoth.gen.nz> |
6 | * | ||
7 | * iso-format handling added by Robert Griebl <griebl@gmx.de> | ||
6 | * | 8 | * |
7 | * 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 |
8 | * 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/modutils/modprobe.c b/modutils/modprobe.c index 1f4aebbd7..c0469833f 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -1,9 +1,24 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * Modprobe written from scratch for BusyBox | 3 | * Modprobe written from scratch for BusyBox |
4 | * copyright (c) 2002 by Robert Griebl, griebl@gmx.de | ||
5 | * | 4 | * |
6 | */ | 5 | * Copyright (c) 2002 by Robert Griebl, griebl@gmx.de |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | * | ||
21 | */ | ||
7 | 22 | ||
8 | #include <sys/utsname.h> | 23 | #include <sys/utsname.h> |
9 | #include <getopt.h> | 24 | #include <getopt.h> |
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 88222e6ba..412995cb1 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c | |||
@@ -1,9 +1,24 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * really dumb hwclock implementation for busybox | 3 | * Mini hwclock implementation for busybox |
4 | * | ||
4 | * Copyright (C) 2002 Robert Griebl <griebl@gmx.de> | 5 | * Copyright (C) 2002 Robert Griebl <griebl@gmx.de> |
5 | * | 6 | * |
6 | */ | 7 | * This program is free software; you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | * | ||
21 | */ | ||
7 | 22 | ||
8 | 23 | ||
9 | #include <sys/utsname.h> | 24 | #include <sys/utsname.h> |