Change license statements (and clean up headers) on some of the files that
authorRob Landley <rob@landley.net>
Fri, 22 Sep 2006 02:52:41 +0000 (02:52 -0000)
committerRob Landley <rob@landley.net>
Fri, 22 Sep 2006 02:52:41 +0000 (02:52 -0000)
Erik or I are primary copyright holders on.

20 files changed:
applets/individual.c
editors/sed.c
findutils/find.c
init/halt.c
init/init_shared.c
loginutils/deluser.c
miscutils/last.c
miscutils/time.c
procps/free.c
procps/pidof.c
procps/ps.c
procps/uptime.c
util-linux/dmesg.c
util-linux/freeramdisk.c
util-linux/mdev.c
util-linux/mkswap.c
util-linux/pivot_root.c
util-linux/swaponoff.c
util-linux/switch_root.c
util-linux/umount.c

index bc5f528d78964c97396bd67104c856a9dfee6074..911f760a67aa124ab4648e3f41b4d260485d6e37 100644 (file)
@@ -2,7 +2,7 @@
  *
  * Copyright 2005 Rob Landley <rob@landley.net
  *
- * Licensed under GPLv2 or later, see file License in this tarball for details
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details
  */
 
 const char *bb_applet_name;
index f8e3720b598047e9599864b3eb6c759d435464ea..98437585c8209941061b18931ff04b636e58a676 100644 (file)
@@ -10,7 +10,7 @@
  *
  * MAINTAINER: Rob Landley <rob@landley.net>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 /* Code overview.
index aa915fa0f55d79f5507f96e7b0801ed9d5df8d63..7e3613af45797d2cf66c058e7e61891350997ff2 100644 (file)
@@ -7,7 +7,7 @@
  * Reworked by David Douthitt <n9ubh@callsign.net> and
  *  Matt Kraai <kraai@alumni.carnegiemellon.edu>.
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"
index d1f561b639e5184a0759214dd85de5312a621844..7bd27896ca29e5dae678bc8595a5c8a7d415c8dc 100644 (file)
@@ -4,13 +4,11 @@
  *
  * Copyright 2006 by Rob Landley <rob@landley.net>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
-#include <signal.h>
 #include <sys/reboot.h>
-#include <unistd.h>
 
 int halt_main(int argc, char *argv[])
 {
index 0abe72fdf65a677815b310c02027955753048b74..5e46abf09749920b43aa2ea7b8835be33600c1e3 100644 (file)
@@ -4,15 +4,10 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
-#include <signal.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include <getopt.h>
 #include <sys/reboot.h>
 #include <sys/syslog.h>
 #include "init_shared.h"
index d93a550fa341798e65262dded51cb2294a561489..0cd4671c88021504eb449627935cd0faf4d79211 100644 (file)
@@ -6,15 +6,10 @@
  * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
  * Unified with delgroup by Tito Ragusa <farmatito@tiscali.it>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  *
  */
 
-#include <sys/stat.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
 #include "busybox.h"
 
 /* where to start and stop deletion */
index 6e35879f3a09578c7ace6d4209ca54faadd53082..9f9f639f2cacbd6ca7c6e1d2b75f66d5871967e0 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 2003-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"
index 8c7419b587a5f9e9f3a9929bf736dd56247a0ccd..3f1451c8308232693437619e70fc6c50fe7f4276 100644 (file)
@@ -2,7 +2,7 @@
 /* `time' utility to display resource usage of processes.
    Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc.
 
-   Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+   Licensed under GPL version 2, see file LICENSE in this tarball for details.
 */
 /* Originally written by David Keppel <pardo@cs.washington.edu>.
    Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>.
 */
 
 #include "busybox.h"
-#include <stdlib.h>
-#include <stdio.h>
-#include <signal.h>
-#include <errno.h>
-#include <getopt.h>
-#include <string.h>
-#include <limits.h>
-#include <unistd.h>
-#include <sys/types.h> /* For pid_t. */
-#include <sys/wait.h>
-#include <sys/param.h> /* For getpagesize, maybe.  */
 
 #define TV_MSEC tv_usec / 1000
-#include <sys/resource.h>
 
 /* Information on the resources used by a child process.  */
 typedef struct {
index 7d8ffa893319a16b1904f1e138772a9b7cac1de0..84432e0d1a1664622918f6627310cbd969f6dfd5 100644 (file)
@@ -4,15 +4,12 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 /* getopt not needed */
 
 #include "busybox.h"
-#include <stdio.h>
-#include <errno.h>
-#include <stdlib.h>
 
 int free_main(int argc, char **argv)
 {
index 5b28f3b86212b44a84a497ac7cc883f892aa6ed2..c686245ea023f6757b24de0f6f8b690190bc7e0c 100644 (file)
@@ -4,19 +4,10 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <unistd.h>
-#include <signal.h>
-#include <ctype.h>
-#include <string.h>
-#include <sys/types.h>
-#include <unistd.h>
 
 #if ENABLE_FEATURE_PIDOF_SINGLE
 #define _SINGLE_COMPL(a) a
index e4accba3d8e5b91b385de057af3355ea4d770e6e..62571493d513e83f16af3cb56cf7ccded3a6a45a 100644 (file)
@@ -4,23 +4,10 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <dirent.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <ctype.h>
-#include <string.h>
-#include <termios.h>
-#include <sys/ioctl.h>
-#if ENABLE_SELINUX
-#include <selinux/selinux.h>  /* for is_selinux_enabled()  */
-#endif
 
 int ps_main(int argc, char **argv)
 {
index c1e7af3a5ed8318034b0774d87ac190f8c39eb1f..37c9d449a5c4715510e5964ff2808a0d630637b6 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 /* This version of uptime doesn't display the number of users on the system,
 /* getopt not needed */
 
 #include "busybox.h"
-#include <stdio.h>
-#include <time.h>
-#include <errno.h>
-#include <stdlib.h>
 
 #ifndef FSHIFT
 # define FSHIFT 16              /* nr of bits of precision */
index c8b3aeeab4b074d4ec5fb100a44811d7ddff358f..682c4f6961f25e9571c95d9c64e577f102d50faa 100644 (file)
@@ -6,7 +6,7 @@
  * Copyright 2006 Rob Landley <rob@landley.net>
  * Copyright 2006 Bernhard Fischer <rep.nop@aon.at>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
index 9e1c453e4fc7649f67e74e9fd71485f254d62ab1..5d110bc4b949c55a3a28fb4574fa261681d5869a 100644 (file)
@@ -6,7 +6,7 @@
  * Adjusted a bit by Erik Andersen <andersen@codepoet.org>
  * Unified with fdflush by Tito Ragusa <farmatito@tiscali.it>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
index da4930f279c954917fef4a7c0b241557ac0bc0a4..acc5012d468d7653bd81a6a0cea0f0d1a0a4385e 100644 (file)
@@ -6,7 +6,7 @@
  * Copyright 2005 Rob Landley <rob@landley.net>
  * Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
index 8c307ec4361de0f660e5d9e1d96c0d9eee6560c9..2dee5ac188f6a24ce1d3af3830ca0dbf6b1dc667 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright 2006 Rob Landley <rob@landley.net>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include <busybox.h>
index 39a257a197d5bb73d95eb8c1422508def0cc996e..bd02302c760bd58fd94d17733df577120a59c8c0 100644 (file)
@@ -6,11 +6,8 @@
  * pivot_root syscall stubbed by Erik Andersen, so it will compile
  *     regardless of the kernel being used.
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
-#include <stdlib.h>
-#include <stdio.h>
-#include <errno.h>
 #include "busybox.h"
 
 extern int pivot_root(const char * new_root,const char * put_old);
index e75ca7ece20203dffae89978472af3eb5efcf59e..ab754848ebb89cdfa771b7b0efe885cfc7243f1b 100644 (file)
@@ -4,14 +4,11 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  */
 
 #include "busybox.h"
 #include <mntent.h>
-#include <dirent.h>
-#include <errno.h>
-#include <string.h>
 #include <sys/swap.h>
 
 
index 411b738f066eaf0343d808cce5f9e998012660d3..1a599073eb7483f3c212a7bffb9ef117606c85e5 100644 (file)
@@ -3,14 +3,11 @@
  *
  * Switch from rootfs to another filesystem as the root of the mount tree.
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"
-#include <fcntl.h>
-#include <string.h>
 #include <sys/vfs.h>
-#include <unistd.h>
 
 
 // Make up for header deficiencies.
index f19586a0d1afd63a087c1cdf0461ed1b0af882a9..e4308e54718ed085bda3d3f3d5e75fac6d20c59a 100644 (file)
@@ -5,10 +5,7 @@
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  * Copyright (C) 2005 by Rob Landley <rob@landley.net>
  *
- * This program is licensed under the GNU General Public license (GPL)
- * version 2 or later, see http://www.fsf.org/licensing/licenses/gpl.html
- * or the file "LICENSE" in the busybox source tarball for the full text.
- *
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
 #include "busybox.h"