aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog32
-rw-r--r--coreutils/date.c2
-rw-r--r--modutils/modprobe.c19
-rw-r--r--util-linux/hwclock.c19
4 files changed, 66 insertions, 6 deletions
diff --git a/Changelog b/Changelog
index 023f90d9e..76c7eacb1 100644
--- 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:
@@ -35,7 +38,32 @@
* 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--
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 @@
* 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
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 @@
/* 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>
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 @@
/* 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>