- updated a few copyright/left file headers
authorRobert Griebl <griebl@gmx.de>
Mon, 5 Aug 2002 02:57:12 +0000 (02:57 -0000)
committerRobert Griebl <griebl@gmx.de>
Mon, 5 Aug 2002 02:57:12 +0000 (02:57 -0000)
- documented most of my 0.61 changes in the ChangeLog

Changelog
coreutils/date.c
modutils/modprobe.c
util-linux/hwclock.c

index 023f90d9e04ed60df495af110bde28bf600f7287..76c7eacb1fadd63e9b8a257bf00be2a32615a48d 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -7,7 +7,10 @@
     New Applets:
        * Erik Andersen -- Merged several applets from tinylogin,
            namely adduser, addgroup, deluser, delgroup, getty.
-
+       * Robert Griebl <sandman@handhelds.org>
+           -- reimplemented tinylogin applets: su, login
+           -- added hwclock
+           -- added uncompress
 
     Other Changes:
 
        * Tim Riker <Tim@Rikers.org>
            -- fix and shrink uuencode
            -- allow tty* in inittab if exist, serial console is not the issue
-
+       * Robert Griebl <sandman@handhelds.org>
+           -- added suid/sgid handling with 3 modes to busybox:
+              1) completly disabled
+              2) tinylogin like
+              3) runtime configureable via /etc/busybox.conf
+
+           -- modprobe: complete rewrite, supports modules.dep, parses 
+                        modules.conf for alias and options and can be called 
+                        from the kernel.
+           -- tar: support for -z when creating archives
+           -- wget: support for -Y|--proxy=on/off and --passive-ftp
+           -- vi: support for ":x" 
+           -- date: support for -I (ISO format)
+           -- find: support for -xdev
+           -- mount: support for -t in list mode, parsing of /etc/filesystems
+           -- ash: support for --login (bash like)
+           -- route: support for -e
+           -- netstat: support for -e and -r
+           -- head/tail: support for old style -[0-9] options
+           -- sed: support for ! and \CregexpC
+           -- pidof: support for -s
+           -- nslookup: support for user specified name server
+           
+           -- logger: fixed logging of '<' characters
+           -- ash: fixed crash when run in a rxvt window
+           
         -Erik Andersen, --not yet released--
 
 
index 4bd308b8649fef78b074a289ed28e7c4b2c7f8da..a9188a1ce1c72da2680c35ab568eda3a2b3d24b2 100644 (file)
@@ -3,6 +3,8 @@
  * Mini date implementation for busybox
  *
  * by Matthew Grant <grantma@anathoth.gen.nz>
+ * 
+ * iso-format handling added by Robert Griebl <griebl@gmx.de>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 1f4aebbd7c8042fee30a900862da6c815e4ca1be..c0469833ffd5ad94dfd59576eea1bee04f4af03e 100644 (file)
@@ -1,9 +1,24 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Modprobe written from scratch for BusyBox
- * copyright (c) 2002 by Robert Griebl, griebl@gmx.de
  *
- */
+ * Copyright (c) 2002 by Robert Griebl, griebl@gmx.de
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+*/
 
 #include <sys/utsname.h>
 #include <getopt.h>
index 88222e6ba43392ed01e48aca364686f79f2e300b..412995cb17b43acad8d611d0d12798d0705fec48 100644 (file)
@@ -1,9 +1,24 @@
 /* vi: set sw=4 ts=4: */
 /*
- * really dumb hwclock implementation for busybox
+ * Mini hwclock implementation for busybox
+ *
  * Copyright (C) 2002 Robert Griebl <griebl@gmx.de>
  *
- */
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+*/
 
 
 #include <sys/utsname.h>