Fix up copyright msgs.  Bump version to 0.49 in preparation for
a release.  Update the website with release details.
 -Erik
diff --git a/Changelog b/Changelog
index 2ec2c36..c4be93a 100644
--- a/Changelog
+++ b/Changelog
@@ -1,10 +1,15 @@
-0.49pre
+0.49
 
 	* Matt Kraai -- new sort.c
+	* Matt Kraai -- new tail.c
 	* Glenn McGrath -- new 'dpkg-deb' applet
 	* Glenn McGrath -- new ar code
+	* spoon -- new watchdog applet
+	* Vladimir N. Oleynik <dzo@simtreas.ru> -- fixed cmdedit.c so now 
+	    scrolling and tab completion in lash work properly.  Also several
+	    byte saving optimizations.
 	* Erik Andersen -- disabled many less commonly used applets by default
-	* ?? -- more thrashing about to get clean perror_msg usage
+	* Mark Whitley -- more thrashing about to get clean perror_msg usage
 	* Matt Kraai -- new command line munging
 	* Larry Doolittle -- keep some locales from messing up busybox.sh
 	* Matt Kraai -- cleaned up dd and tail with new parse_number routine
@@ -35,10 +40,18 @@
 	* Mark Whitley -- Updates to style guide
 	* Mark Whitley -- Big cleanup in utility.c: style guide compliance,
 	    de-macro-ifying some variables and functions
-	* Matt Kraai -- new tail.c
+	* Erik Andersen -- ls now honors BB_FEATURE_AUTOWIDTH so it can find
+	    the width and height of the console.
+	* Erik Andersen -- insmod now ignores -L and accepts the -o option.
+	* Erik Andersen -- updates so you can now select from the Makefile
+	    whether or not to use the system's passwd and group functions.
+	    Since most systems use GNU libc, this can save you from having to
+	    install the /etc/nsswitch.conf configuration file and the required
+	    libnss_* libraries.  Adds 1.5k.  You can now, also, disable this, 
+	    causing busybox to use the system's pwd.h and grp.h functions.
 
 
-	 -Erik Andersen, <not released yet>
+	 -Erik Andersen, 27 January 2001
 
 0.48
 
diff --git a/LICENSE b/LICENSE
index 49c7157..8e5a143 100644
--- a/LICENSE
+++ b/LICENSE
@@ -18,7 +18,7 @@
 Copyright 1998 Charles P. Wright <cpwright@villagenet.com>
 
 Tons of new stuff as noted in header files
-Copyright (C) 1999 by Lineo, inc. and written by 
+Copyright (C) 1999,2000,2001 by Lineo, inc. and written by 
 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
 
 
diff --git a/Makefile b/Makefile
index 159e5d5..4026d61 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,6 @@
 # Makefile for busybox
 #
-# Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
-# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
+# Copyright (C) 1999,2000,2001 Erik Andersen <andersee@debian.org>
 #
 # 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
@@ -19,7 +18,7 @@
 #
 
 PROG      := busybox
-VERSION   := 0.49pre
+VERSION   := 0.49
 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
 export VERSION
 
diff --git a/README b/README
index ccd5505..afe2f6f 100644
--- a/README
+++ b/README
@@ -11,8 +11,9 @@
 BusyBox has been written with size-optimization and limited resources in mind.
 It is also extremely modular so you can easily include or exclude commands (or
 features) at compile time. This makes it easy to customize your embedded
-systems. To create a working system, just add a kernel and an editor (such as
-e3 (http://www.sax.de/~adlibiti) or elvis-tiny).
+systems. To create a working system, just add /dev, a kernel, and an editor,
+such as nano, e3, or elvis-tiny.  For a really minimal system, you can even use
+the busybox shell (not Bourne compatible, but very small and quite usable).
 
 BusyBox was originally written to support the Debian Rescue/Install disks, but
 it also makes an excellent environment for any small or embedded system.
@@ -27,7 +28,7 @@
 used by 'make install' to create symlinks to the busybox binary for all
 compiled in functions.  By default, 'make install' will place the symlink
 forest into `pwd`/_install unless you have defined the PREFIX environment
-variable (i.e., make PREFIX="/tmp/foo" install)
+variable (i.e., 'make PREFIX=/tmp/foo install')
 
 ----------------
     
diff --git a/TODO b/TODO
index 2adbc4b..3e0121b 100644
--- a/TODO
+++ b/TODO
@@ -8,7 +8,16 @@
 
 * We _were_ going to split networking apps into a new package called 
     netkit-tiny.  Per discussions on the mailing list, this isn't going
-    to happen.  False alarm.  Sorry about the confusion.
+    to happen.  False alarm.  Sorry about the confusion.  
+
+* The busybox shell, lash, is really too weak for serious use, although it is
+    possible to run simple systems with it.  BusyBox 0.49 was supposed to have
+    a new shell, updated to understand full Bourne grammer.  Well, that simply
+    didn't happen in time for the release.  A rewrite is in progress that will
+    result in a new shell that understands the full Bourne grammar.  This new
+    shell is being championed by Larry Doolittle <ldoolitt@recycle.lbl.gov>, and
+    could use your help.  Please see the work in progress at
+	http://doolittle.faludi.com/~larry/parser.html
 
  -Erik
 
@@ -22,12 +31,6 @@
 
 -----------------------
 
-The Busybox lash shell needs to be taught Bourne shell grammer.  This
-is planned for the next release of Busybox.  Look out ash, we are coming
-for you...
-
------------------------
-
 Running the following:
 
     rm -f busybox && make LDFLAGS+=-nostdlib 2>&1 | \
@@ -40,23 +43,6 @@
 
 -----------------------
 
-Currently, busybox bypasses libc NSS.  Some folks might want that,
-so perhaps adding in the option to choose whether to go to libc for
-things like getpwnam() or whether to use the busybox version might 
-be nice.
-
------------------------
-
-Most wanted list:
-
-    [andersen@slag busybox]$ grep -l getgroups *.[ch]
-    test.c
-
-Policy violation.  getgroups uses libc nss, which is unlikely
-to be present in an embedded system.
-
------------------------
-
 Compile with debugging on, run 'nm --size-sort ./busybox'
 and then start with the biggest things and make them smaller...
 
diff --git a/archival/tar.c b/archival/tar.c
index 2c7169b..3082914 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -6,7 +6,7 @@
  * ground up.  It still has remnents of the old code lying about, but it is
  * very different now (i.e. cleaner, less global variables, etc)
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Based in part in the tar implementation in sash
diff --git a/basename.c b/basename.c
index 0caae39..cba003d 100644
--- a/basename.c
+++ b/basename.c
@@ -2,7 +2,7 @@
 /*
  * Mini basename implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/busybox.spec b/busybox.spec
index beb12fe..6bccd37 100644
--- a/busybox.spec
+++ b/busybox.spec
@@ -1,5 +1,5 @@
 Name: busybox
-Version: 0.49pre
+Version: 0.49
 Release: 1
 Group: System/Utilities
 Summary: BusyBox is a tiny suite of Unix utilities in a multi-call binary.
diff --git a/cat.c b/cat.c
index a1b8782..134245c 100644
--- a/cat.c
+++ b/cat.c
@@ -2,7 +2,7 @@
 /*
  * Mini Cat implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c
index 08ea6ee..cccda98 100644
--- a/chmod_chown_chgrp.c
+++ b/chmod_chown_chgrp.c
@@ -3,7 +3,7 @@
  * Mini chown/chmod/chgrp implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/chroot.c b/chroot.c
index e6f1d03..cd8101e 100644
--- a/chroot.c
+++ b/chroot.c
@@ -3,7 +3,7 @@
  * Mini chroot implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/clear.c b/clear.c
index 98eef1d..dab4b05 100644
--- a/clear.c
+++ b/clear.c
@@ -3,7 +3,7 @@
  * Mini clear implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/cmp.c b/cmp.c
index a4b6c7d..dd70261 100644
--- a/cmp.c
+++ b/cmp.c
@@ -3,7 +3,7 @@
  * Mini cmp implementation for busybox
  *
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/console-tools/clear.c b/console-tools/clear.c
index 98eef1d..dab4b05 100644
--- a/console-tools/clear.c
+++ b/console-tools/clear.c
@@ -3,7 +3,7 @@
  * Mini clear implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/console-tools/reset.c b/console-tools/reset.c
index 861bd43..294cab3 100644
--- a/console-tools/reset.c
+++ b/console-tools/reset.c
@@ -3,7 +3,7 @@
  * Mini reset implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *        and Kent Robotti <robotti@metconnect.com>
  *
diff --git a/coreutils/basename.c b/coreutils/basename.c
index 0caae39..cba003d 100644
--- a/coreutils/basename.c
+++ b/coreutils/basename.c
@@ -2,7 +2,7 @@
 /*
  * Mini basename implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/cat.c b/coreutils/cat.c
index a1b8782..134245c 100644
--- a/coreutils/cat.c
+++ b/coreutils/cat.c
@@ -2,7 +2,7 @@
 /*
  * Mini Cat implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index e6f1d03..cd8101e 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -3,7 +3,7 @@
  * Mini chroot implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/cmp.c b/coreutils/cmp.c
index a4b6c7d..dd70261 100644
--- a/coreutils/cmp.c
+++ b/coreutils/cmp.c
@@ -3,7 +3,7 @@
  * Mini cmp implementation for busybox
  *
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/cut.c b/coreutils/cut.c
index 262390e..ed68657 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -1,7 +1,7 @@
 /*
  * cut.c - minimalist version of cut
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/df.c b/coreutils/df.c
index 0408f9f..7a24fed 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -2,7 +2,7 @@
 /*
  * Mini df implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  * based on original code by (I think) Bruce Perens <bruce@pixar.com>.
  *
diff --git a/coreutils/dirname.c b/coreutils/dirname.c
index 333f08d..2e11a69 100644
--- a/coreutils/dirname.c
+++ b/coreutils/dirname.c
@@ -2,7 +2,7 @@
 /*
  * Mini dirname implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/du.c b/coreutils/du.c
index 9cc2a67..c56afbc 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -3,7 +3,7 @@
  * Mini du implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -187,7 +187,7 @@
 	return status;
 }
 
-/* $Id: du.c,v 1.35 2001/01/27 08:24:37 andersen Exp $ */
+/* $Id: du.c,v 1.36 2001/01/27 09:33:38 andersen Exp $ */
 /*
 Local Variables:
 c-file-style: "linux"
diff --git a/coreutils/head.c b/coreutils/head.c
index 71aa825..7d87f32 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -3,7 +3,7 @@
  * Mini head implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/ln.c b/coreutils/ln.c
index d6bf644..54e81f4 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -2,7 +2,7 @@
 /*
  * Mini ln implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c
index eb6e7db..2345d88 100644
--- a/coreutils/mkdir.c
+++ b/coreutils/mkdir.c
@@ -2,7 +2,7 @@
 /*
  * Mini mkdir implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/rm.c b/coreutils/rm.c
index 302599e..ce293a2 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -3,7 +3,7 @@
  * Mini rm implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/rmdir.c b/coreutils/rmdir.c
index 8c2165e..86346dd 100644
--- a/coreutils/rmdir.c
+++ b/coreutils/rmdir.c
@@ -3,7 +3,7 @@
  * Mini rmdir implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/tee.c b/coreutils/tee.c
index f0eca07..aa3098c 100644
--- a/coreutils/tee.c
+++ b/coreutils/tee.c
@@ -2,7 +2,7 @@
 /*
  * Mini tee implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/touch.c b/coreutils/touch.c
index fa2f3b6..e174baa 100644
--- a/coreutils/touch.c
+++ b/coreutils/touch.c
@@ -3,7 +3,7 @@
  * Mini touch implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 2288559..84f1ed2 100644
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -3,7 +3,7 @@
  * Mini uniq implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
diff --git a/cp_mv.c b/cp_mv.c
index 41b981b..dbd2fdd 100644
--- a/cp_mv.c
+++ b/cp_mv.c
@@ -3,7 +3,7 @@
  * Mini `cp' and `mv' implementation for BusyBox.
  *
  *
- * Copyright (C) 1999 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Copyright (C) 2000 by BitterSweet Enterprises, LLC. (GPL)
diff --git a/cut.c b/cut.c
index 262390e..ed68657 100644
--- a/cut.c
+++ b/cut.c
@@ -1,7 +1,7 @@
 /*
  * cut.c - minimalist version of cut
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/debian/changelog b/debian/changelog
index e69d1b4..e1170c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-busybox (0.49pre-1) unstable; urgency=low
+busybox (0.49-1) unstable; urgency=low
 
-  * Not released yet....
+  * Lots more source updates and bug fixes.  See changelog for details.
 
- -- Erik Andersen <andersee@debian.org>  Wed, 20 Jan 2000 08:00:07 -0700
+ -- Erik Andersen <andersee@debian.org>  Sat, 27 Jan 2001 01:45:53 -0700
 
 busybox (0.48-1) unstable; urgency=low
 
diff --git a/df.c b/df.c
index 0408f9f..7a24fed 100644
--- a/df.c
+++ b/df.c
@@ -2,7 +2,7 @@
 /*
  * Mini df implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  * based on original code by (I think) Bruce Perens <bruce@pixar.com>.
  *
diff --git a/dirname.c b/dirname.c
index 333f08d..2e11a69 100644
--- a/dirname.c
+++ b/dirname.c
@@ -2,7 +2,7 @@
 /*
  * Mini dirname implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/docs/busybox.net/index.html b/docs/busybox.net/index.html
index cbeb038..e54a768 100644
--- a/docs/busybox.net/index.html
+++ b/docs/busybox.net/index.html
@@ -38,17 +38,17 @@
 BusyBox combines tiny versions of many common UNIX utilities into a single
 small executable. It provides minimalist replacements for most of the utilities
 you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,
-tar, etc.  BusyBox provides a fairly complete POSIX environment for any small
-or embedded system.  The utilities in BusyBox generally have fewer options than
-their full-featured GNU cousins; however, the options that are included provide 
+tar, etc. BusyBox provides a fairly complete POSIX environment for any small or
+embedded system. The utilities in BusyBox generally have fewer options than
+their full featured GNU cousins; however, the options that are included provide
 the expected functionality and behave very much like their GNU counterparts.
 <p>
 BusyBox has been written with size-optimization and limited resources in mind.
 It is also extremely modular so you can easily include or exclude commands (or
-features) at compile time.  This makes it easy to customize your embedded
-systems.  To create a working system, just add a kernel, a shell (such as ash),
-and an editor (such as elvis-tiny or ae).  For a really minimal system, just
-the the busybox shell (not a POSIX shell, but very small and quite usable).
+features) at compile time. This makes it easy to customize your embedded
+systems. To create a working system, just add /dev, a kernel, and an editor,
+such as nano, e3, or elvis-tiny.  For a really minimal system, you can even use
+the busybox shell (not Bourne compatible, but very small and quite usable).
 <p>
 
 BusyBox is now maintained by 
@@ -60,7 +60,7 @@
 <a href="http://www.gnu.org/copyleft/gpl.html">GNU GENERAL PUBLIC LICENSE</a>
 <p>
 
-<H3>NEW!</h3>
+<H3>Mailing List Information</h3>
 BusyBox now has a <a href="http://opensource.lineo.com/lists/busybox/">mailing list</a>!
 To subscribe, go and visit <a href="http://opensource.lineo.com/mailman/listinfo/busybox">this page</a>.
 
@@ -77,6 +77,30 @@
 
 <ul>
 
+    <p> <li> <b>27 January 2001 -- BusyBox 0.49 released</b>
+    <br>
+
+	     Several new applets, lots of bug fixes, cleanups, and many smaller 
+	     things made nicer.  Several cleanups and improvements to the shell.
+	     For a list of the most interesting changes 
+	     you might want to look at the <a href="ftp://oss.lineo.com/busybox/Changelog">changelog</a>. 
+	     <p>
+	     Special thanks go out to Matt Kraai and Larry Doolittle for all their
+	     work on this release, and for keeping on top of things while I've been 
+	     out of town.
+	     <p>
+	     <em>Special Note</em><br>
+
+	     BusyBox 0.49 was supposed to have replaced lash, the BusyBox
+	     shell, with a new shell that understands full Bourne shell/Posix shell grammer.
+	     Well, that simply didn't happen in time for this release.  A new
+	     shell that will eventually replace lash is already under
+	     construction.  This new shell is being developed by Larry
+	     Doolittle, and could use all of our help.  Please see the work in
+	     progress on <a href="http://doolittle.faludi.com/~larry/parser.html">Larry's website</a> 
+	     and help out if you can.  This shell will be included in the next 
+	     release of BusyBox.
+
     <p> <li> <b>13 December 2000 -- BusyBox 0.48 released</b>
     <br>
 
@@ -96,19 +120,6 @@
 	     this release, especially Matt Kraai, Larry Doolittle, and Kent Robotti.
 
 
-    <p> <li> <b>26 September 2000 -- BusyBox 0.47 released</b>
-    <br>
-
-	     This release fixes lots of bugs (including an ugly bug in 0.46
-	     syslogd that could fork-bomb your system).  Added several new
-	     apps: rdate, wget, getopt, dos2unix, unix2dos, reset, unrpm, 
-	     renice, xargs, and expr.  syslogd now supports network logging.
-	     There are the usual tar updates.  Most apps now use getopt for
-	     more correct option parsing.
-	     See the <a href="ftp://oss.lineo.com/busybox/Changelog">changelog</a> 
-	     for complete details.
-
-
     <p> <li> <b>Old News</b>
     <br>
 	     For the old news, visit <a href="http://busybox.lineo.com/oldnews.html">the old news page</a>.
diff --git a/docs/busybox.net/oldnews.html b/docs/busybox.net/oldnews.html
index 4002ea1..c55fcfd 100644
--- a/docs/busybox.net/oldnews.html
+++ b/docs/busybox.net/oldnews.html
@@ -41,6 +41,19 @@
     <p> <li> <b>Take me back to the <a href="http://busybox.lineo.com/">BusyBox</a> web site.</b>
     <hr>
 
+    <p> <li> <b>26 September 2000 -- BusyBox 0.47 released</b>
+    <br>
+
+	     This release fixes lots of bugs (including an ugly bug in 0.46
+	     syslogd that could fork-bomb your system).  Added several new
+	     apps: rdate, wget, getopt, dos2unix, unix2dos, reset, unrpm, 
+	     renice, xargs, and expr.  syslogd now supports network logging.
+	     There are the usual tar updates.  Most apps now use getopt for
+	     more correct option parsing.
+	     See the <a href="ftp://oss.lineo.com/busybox/Changelog">changelog</a> 
+	     for complete details.
+
+
     <p> <li> <b>11 July 2000 -- BusyBox 0.46 released</b>
     <br>
 
diff --git a/du.c b/du.c
index 9cc2a67..c56afbc 100644
--- a/du.c
+++ b/du.c
@@ -3,7 +3,7 @@
  * Mini du implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -187,7 +187,7 @@
 	return status;
 }
 
-/* $Id: du.c,v 1.35 2001/01/27 08:24:37 andersen Exp $ */
+/* $Id: du.c,v 1.36 2001/01/27 09:33:38 andersen Exp $ */
 /*
 Local Variables:
 c-file-style: "linux"
diff --git a/editors/sed.c b/editors/sed.c
index 95aad79..73a9ad3 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -1,7 +1,7 @@
 /*
  * sed.c - very minimalist version of sed
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/examples/busybox.spec b/examples/busybox.spec
index beb12fe..6bccd37 100644
--- a/examples/busybox.spec
+++ b/examples/busybox.spec
@@ -1,5 +1,5 @@
 Name: busybox
-Version: 0.49pre
+Version: 0.49
 Release: 1
 Group: System/Utilities
 Summary: BusyBox is a tiny suite of Unix utilities in a multi-call binary.
diff --git a/find.c b/find.c
index 59a5b83..f60c45a 100644
--- a/find.c
+++ b/find.c
@@ -3,7 +3,7 @@
  * Mini find implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/findutils/find.c b/findutils/find.c
index 59a5b83..f60c45a 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -3,7 +3,7 @@
  * Mini find implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/findutils/grep.c b/findutils/grep.c
index e9ff91b..320655b 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -1,7 +1,7 @@
 /*
  * Mini grep implementation for busybox using libc regex.
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/findutils/which.c b/findutils/which.c
index b900a0b..981a8ac 100644
--- a/findutils/which.c
+++ b/findutils/which.c
@@ -2,7 +2,7 @@
 /*
  * Which implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/findutils/xargs.c b/findutils/xargs.c
index 1473f44..89bcfc1 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -1,7 +1,7 @@
 /*
  * Mini xargs implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  * Remixed by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
diff --git a/free.c b/free.c
index 4dd99ab..17dd386 100644
--- a/free.c
+++ b/free.c
@@ -2,7 +2,7 @@
 /*
  * Mini free implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/grep.c b/grep.c
index e9ff91b..320655b 100644
--- a/grep.c
+++ b/grep.c
@@ -1,7 +1,7 @@
 /*
  * Mini grep implementation for busybox using libc regex.
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/head.c b/head.c
index 71aa825..7d87f32 100644
--- a/head.c
+++ b/head.c
@@ -3,7 +3,7 @@
  * Mini head implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/insmod.c b/insmod.c
index b82728a..57a152c 100644
--- a/insmod.c
+++ b/insmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini insmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>
  * and Ron Alder <alder@lineo.com>
  *
@@ -81,7 +81,7 @@
 #ifndef MODUTILS_MODULE_H
 static const int MODUTILS_MODULE_H = 1;
 
-#ident "$Id: insmod.c,v 1.43 2001/01/27 08:24:37 andersen Exp $"
+#ident "$Id: insmod.c,v 1.44 2001/01/27 09:33:38 andersen Exp $"
 
 /* This file contains the structures used by the 2.0 and 2.1 kernels.
    We do not use the kernel headers directly because we do not wish
@@ -287,7 +287,7 @@
 #ifndef MODUTILS_OBJ_H
 static const int MODUTILS_OBJ_H = 1;
 
-#ident "$Id: insmod.c,v 1.43 2001/01/27 08:24:37 andersen Exp $"
+#ident "$Id: insmod.c,v 1.44 2001/01/27 09:33:38 andersen Exp $"
 
 /* The relocatable object is manipulated using elfin types.  */
 
diff --git a/lash.c b/lash.c
index 54d6b3a..bd69456 100644
--- a/lash.c
+++ b/lash.c
@@ -2,7 +2,7 @@
 /*
  * lash -- the BusyBox Lame-Ass SHell
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is
diff --git a/ln.c b/ln.c
index d6bf644..54e81f4 100644
--- a/ln.c
+++ b/ln.c
@@ -2,7 +2,7 @@
 /*
  * Mini ln implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/logger.c b/logger.c
index d286f34..1ab868d 100644
--- a/logger.c
+++ b/logger.c
@@ -2,7 +2,7 @@
 /*
  * Mini logger implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/lsmod.c b/lsmod.c
index 4157558..ab84455 100644
--- a/lsmod.c
+++ b/lsmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini lsmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
diff --git a/miscutils/readlink.c b/miscutils/readlink.c
index 98f1dea..57f43d1 100644
--- a/miscutils/readlink.c
+++ b/miscutils/readlink.c
@@ -3,7 +3,7 @@
  * Mini readlink implementation for busybox
  *
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/mkdir.c b/mkdir.c
index eb6e7db..2345d88 100644
--- a/mkdir.c
+++ b/mkdir.c
@@ -2,7 +2,7 @@
 /*
  * Mini mkdir implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/modutils/insmod.c b/modutils/insmod.c
index b82728a..57a152c 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini insmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>
  * and Ron Alder <alder@lineo.com>
  *
@@ -81,7 +81,7 @@
 #ifndef MODUTILS_MODULE_H
 static const int MODUTILS_MODULE_H = 1;
 
-#ident "$Id: insmod.c,v 1.43 2001/01/27 08:24:37 andersen Exp $"
+#ident "$Id: insmod.c,v 1.44 2001/01/27 09:33:38 andersen Exp $"
 
 /* This file contains the structures used by the 2.0 and 2.1 kernels.
    We do not use the kernel headers directly because we do not wish
@@ -287,7 +287,7 @@
 #ifndef MODUTILS_OBJ_H
 static const int MODUTILS_OBJ_H = 1;
 
-#ident "$Id: insmod.c,v 1.43 2001/01/27 08:24:37 andersen Exp $"
+#ident "$Id: insmod.c,v 1.44 2001/01/27 09:33:38 andersen Exp $"
 
 /* The relocatable object is manipulated using elfin types.  */
 
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index 4157558..ab84455 100644
--- a/modutils/lsmod.c
+++ b/modutils/lsmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini lsmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
diff --git a/modutils/rmmod.c b/modutils/rmmod.c
index ff08c4c..3a66af8 100644
--- a/modutils/rmmod.c
+++ b/modutils/rmmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini rmmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/networking/nslookup.c b/networking/nslookup.c
index 1f37e31..8bfcd57 100644
--- a/networking/nslookup.c
+++ b/networking/nslookup.c
@@ -2,7 +2,7 @@
 /*
  * Mini nslookup implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -170,4 +170,4 @@
 	return EXIT_SUCCESS;
 }
 
-/* $Id: nslookup.c,v 1.19 2001/01/27 08:24:37 andersen Exp $ */
+/* $Id: nslookup.c,v 1.20 2001/01/27 09:33:38 andersen Exp $ */
diff --git a/nslookup.c b/nslookup.c
index 1f37e31..8bfcd57 100644
--- a/nslookup.c
+++ b/nslookup.c
@@ -2,7 +2,7 @@
 /*
  * Mini nslookup implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -170,4 +170,4 @@
 	return EXIT_SUCCESS;
 }
 
-/* $Id: nslookup.c,v 1.19 2001/01/27 08:24:37 andersen Exp $ */
+/* $Id: nslookup.c,v 1.20 2001/01/27 09:33:38 andersen Exp $ */
diff --git a/procps/free.c b/procps/free.c
index 4dd99ab..17dd386 100644
--- a/procps/free.c
+++ b/procps/free.c
@@ -2,7 +2,7 @@
 /*
  * Mini free implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/procps/ps.c b/procps/ps.c
index aac064c..08597fe 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -2,8 +2,8 @@
 /*
  * Mini ps implementation(s) for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.  Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.  
+ * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  *
  * This contains _two_ implementations of ps for Linux.  One uses the
diff --git a/procps/uptime.c b/procps/uptime.c
index 4463b94..213a398 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -2,7 +2,7 @@
 /*
  * Mini uptime implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/ps.c b/ps.c
index aac064c..08597fe 100644
--- a/ps.c
+++ b/ps.c
@@ -2,8 +2,8 @@
 /*
  * Mini ps implementation(s) for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.  Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.  
+ * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  *
  * This contains _two_ implementations of ps for Linux.  One uses the
diff --git a/readlink.c b/readlink.c
index 98f1dea..57f43d1 100644
--- a/readlink.c
+++ b/readlink.c
@@ -3,7 +3,7 @@
  * Mini readlink implementation for busybox
  *
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/reset.c b/reset.c
index 861bd43..294cab3 100644
--- a/reset.c
+++ b/reset.c
@@ -3,7 +3,7 @@
  * Mini reset implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *        and Kent Robotti <robotti@metconnect.com>
  *
diff --git a/rm.c b/rm.c
index 302599e..ce293a2 100644
--- a/rm.c
+++ b/rm.c
@@ -3,7 +3,7 @@
  * Mini rm implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/rmdir.c b/rmdir.c
index 8c2165e..86346dd 100644
--- a/rmdir.c
+++ b/rmdir.c
@@ -3,7 +3,7 @@
  * Mini rmdir implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/rmmod.c b/rmmod.c
index ff08c4c..3a66af8 100644
--- a/rmmod.c
+++ b/rmmod.c
@@ -2,7 +2,7 @@
 /*
  * Mini rmmod implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/sed.c b/sed.c
index 95aad79..73a9ad3 100644
--- a/sed.c
+++ b/sed.c
@@ -1,7 +1,7 @@
 /*
  * sed.c - very minimalist version of sed
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/sh.c b/sh.c
index 54d6b3a..bd69456 100644
--- a/sh.c
+++ b/sh.c
@@ -2,7 +2,7 @@
 /*
  * lash -- the BusyBox Lame-Ass SHell
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is
diff --git a/shell/lash.c b/shell/lash.c
index 54d6b3a..bd69456 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -2,7 +2,7 @@
 /*
  * lash -- the BusyBox Lame-Ass SHell
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is
diff --git a/swaponoff.c b/swaponoff.c
index d792c70..8a9134c 100644
--- a/swaponoff.c
+++ b/swaponoff.c
@@ -3,7 +3,7 @@
  * Mini swapon/swapoff implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/sysklogd/logger.c b/sysklogd/logger.c
index d286f34..1ab868d 100644
--- a/sysklogd/logger.c
+++ b/sysklogd/logger.c
@@ -2,7 +2,7 @@
 /*
  * Mini logger implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 3c36f68..8eb74c6 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -2,7 +2,7 @@
 /*
  * Mini syslogd implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
diff --git a/syslogd.c b/syslogd.c
index 3c36f68..8eb74c6 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -2,7 +2,7 @@
 /*
  * Mini syslogd implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Copyright (C) 2000 by Karl M. Hegbloom <karlheg@debian.org>
diff --git a/tar.c b/tar.c
index 2c7169b..3082914 100644
--- a/tar.c
+++ b/tar.c
@@ -6,7 +6,7 @@
  * ground up.  It still has remnents of the old code lying about, but it is
  * very different now (i.e. cleaner, less global variables, etc)
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * Based in part in the tar implementation in sash
diff --git a/tee.c b/tee.c
index f0eca07..aa3098c 100644
--- a/tee.c
+++ b/tee.c
@@ -2,7 +2,7 @@
 /*
  * Mini tee implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/touch.c b/touch.c
index fa2f3b6..e174baa 100644
--- a/touch.c
+++ b/touch.c
@@ -3,7 +3,7 @@
  * Mini touch implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/true_false.c b/true_false.c
index 155b262..187f680 100644
--- a/true_false.c
+++ b/true_false.c
@@ -3,7 +3,7 @@
  * Mini true/false implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/umount.c b/umount.c
index dfd5825..3772d55 100644
--- a/umount.c
+++ b/umount.c
@@ -3,7 +3,7 @@
  * Mini umount implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/uniq.c b/uniq.c
index 2288559..84f1ed2 100644
--- a/uniq.c
+++ b/uniq.c
@@ -3,7 +3,7 @@
  * Mini uniq implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by John Beppu <beppu@lineo.com>
  * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
diff --git a/uptime.c b/uptime.c
index 4463b94..213a398 100644
--- a/uptime.c
+++ b/uptime.c
@@ -2,7 +2,7 @@
 /*
  * Mini uptime implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c
index d792c70..8a9134c 100644
--- a/util-linux/swaponoff.c
+++ b/util-linux/swaponoff.c
@@ -3,7 +3,7 @@
  * Mini swapon/swapoff implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/util-linux/umount.c b/util-linux/umount.c
index dfd5825..3772d55 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.c
@@ -3,7 +3,7 @@
  * Mini umount implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/which.c b/which.c
index b900a0b..981a8ac 100644
--- a/which.c
+++ b/which.c
@@ -2,7 +2,7 @@
 /*
  * Which implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
diff --git a/xargs.c b/xargs.c
index 1473f44..89bcfc1 100644
--- a/xargs.c
+++ b/xargs.c
@@ -1,7 +1,7 @@
 /*
  * Mini xargs implementation for busybox
  *
- * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  * Remixed by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
  *