diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
commit | db12d1d733ab7de0c5f4cda261eb79fd334a4ed9 (patch) | |
tree | baed427ea76367f8561164995e41cfd34575e0c1 /util-linux | |
parent | 30e5cf8875f757581256a4ec4f6935d1cb28a0fb (diff) | |
download | busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.gz busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.bz2 busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.zip |
Fix forgotten license comments
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdformat.c | 7 | ||||
-rw-r--r-- | util-linux/fdisk_aix.c | 4 | ||||
-rw-r--r-- | util-linux/fdisk_osf.c | 2 | ||||
-rw-r--r-- | util-linux/fdisk_sgi.c | 12 | ||||
-rw-r--r-- | util-linux/fdisk_sun.c | 27 | ||||
-rw-r--r-- | util-linux/mkfs_minix.c | 5 | ||||
-rw-r--r-- | util-linux/rtcwake.c | 2 |
7 files changed, 32 insertions, 27 deletions
diff --git a/util-linux/fdformat.c b/util-linux/fdformat.c index 094d620ee..3831ab44e 100644 --- a/util-linux/fdformat.c +++ b/util-linux/fdformat.c | |||
@@ -1,7 +1,8 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* fdformat.c - Low-level formats a floppy disk - Werner Almesberger */ | 2 | /* fdformat.c - Low-level formats a floppy disk - Werner Almesberger |
3 | 3 | * 5 July 2003 -- modified for Busybox by Erik Andersen | |
4 | /* 5 July 2003 -- modified for Busybox by Erik Andersen | 4 | * |
5 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
5 | */ | 6 | */ |
6 | 7 | ||
7 | #include "libbb.h" | 8 | #include "libbb.h" |
diff --git a/util-linux/fdisk_aix.c b/util-linux/fdisk_aix.c index 83be8a8f9..2c0d2a6ac 100644 --- a/util-linux/fdisk_aix.c +++ b/util-linux/fdisk_aix.c | |||
@@ -1,8 +1,8 @@ | |||
1 | #if ENABLE_FEATURE_AIX_LABEL | 1 | #if ENABLE_FEATURE_AIX_LABEL |
2 | /* | 2 | /* |
3 | * Copyright (C) Andreas Neuper, Sep 1998. | 3 | * Copyright (C) Andreas Neuper, Sep 1998. |
4 | * This file may be redistributed under | 4 | * |
5 | * the terms of the GNU Public License. | 5 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | typedef struct { | 8 | typedef struct { |
diff --git a/util-linux/fdisk_osf.c b/util-linux/fdisk_osf.c index c50ee9b16..ea5cd3c17 100644 --- a/util-linux/fdisk_osf.c +++ b/util-linux/fdisk_osf.c | |||
@@ -1,4 +1,3 @@ | |||
1 | #if ENABLE_FEATURE_OSF_LABEL | ||
2 | /* | 1 | /* |
3 | * Copyright (c) 1987, 1988 Regents of the University of California. | 2 | * Copyright (c) 1987, 1988 Regents of the University of California. |
4 | * All rights reserved. | 3 | * All rights reserved. |
@@ -32,6 +31,7 @@ | |||
32 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
33 | */ | 32 | */ |
34 | 33 | ||
34 | #if ENABLE_FEATURE_OSF_LABEL | ||
35 | 35 | ||
36 | #ifndef BSD_DISKMAGIC | 36 | #ifndef BSD_DISKMAGIC |
37 | #define BSD_DISKMAGIC ((uint32_t) 0x82564557) | 37 | #define BSD_DISKMAGIC ((uint32_t) 0x82564557) |
diff --git a/util-linux/fdisk_sgi.c b/util-linux/fdisk_sgi.c index 5a86a6848..51cf30c98 100644 --- a/util-linux/fdisk_sgi.c +++ b/util-linux/fdisk_sgi.c | |||
@@ -1,13 +1,13 @@ | |||
1 | #if ENABLE_FEATURE_SGI_LABEL | ||
2 | |||
3 | #define SGI_DEBUG 0 | ||
4 | |||
5 | /* | 1 | /* |
6 | * Copyright (C) Andreas Neuper, Sep 1998. | 2 | * Copyright (C) Andreas Neuper, Sep 1998. |
7 | * This file may be modified and redistributed under | 3 | * |
8 | * the terms of the GNU Public License. | 4 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
9 | */ | 5 | */ |
10 | 6 | ||
7 | #if ENABLE_FEATURE_SGI_LABEL | ||
8 | |||
9 | #define SGI_DEBUG 0 | ||
10 | |||
11 | #define SGI_VOLHDR 0x00 | 11 | #define SGI_VOLHDR 0x00 |
12 | /* 1 and 2 were used for drive types no longer supported by SGI */ | 12 | /* 1 and 2 were used for drive types no longer supported by SGI */ |
13 | #define SGI_SWAP 0x03 | 13 | #define SGI_SWAP 0x03 |
diff --git a/util-linux/fdisk_sun.c b/util-linux/fdisk_sun.c index d1a436b4a..9cdf869e9 100644 --- a/util-linux/fdisk_sun.c +++ b/util-linux/fdisk_sun.c | |||
@@ -1,3 +1,17 @@ | |||
1 | /* | ||
2 | * fdisk_sun.c | ||
3 | * | ||
4 | * I think this is mostly, or entirely, due to | ||
5 | * Jakub Jelinek (jj@sunsite.mff.cuni.cz), July 1996 | ||
6 | * | ||
7 | * Merged with fdisk for other architectures, aeb, June 1998. | ||
8 | * | ||
9 | * Sat Mar 20 EST 1999 Arnaldo Carvalho de Melo <acme@conectiva.com.br> | ||
10 | * Internationalization | ||
11 | * | ||
12 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
13 | */ | ||
14 | |||
1 | #if ENABLE_FEATURE_SUN_LABEL | 15 | #if ENABLE_FEATURE_SUN_LABEL |
2 | 16 | ||
3 | #define SUNOS_SWAP 3 | 17 | #define SUNOS_SWAP 3 |
@@ -13,19 +27,6 @@ | |||
13 | 27 | ||
14 | #define SCSI_IOCTL_GET_IDLUN 0x5382 | 28 | #define SCSI_IOCTL_GET_IDLUN 0x5382 |
15 | 29 | ||
16 | /* | ||
17 | * fdisksunlabel.c | ||
18 | * | ||
19 | * I think this is mostly, or entirely, due to | ||
20 | * Jakub Jelinek (jj@sunsite.mff.cuni.cz), July 1996 | ||
21 | * | ||
22 | * Merged with fdisk for other architectures, aeb, June 1998. | ||
23 | * | ||
24 | * Sat Mar 20 EST 1999 Arnaldo Carvalho de Melo <acme@conectiva.com.br> | ||
25 | * Internationalization | ||
26 | */ | ||
27 | |||
28 | |||
29 | static int sun_other_endian; | 30 | static int sun_other_endian; |
30 | static int scsi_disk; | 31 | static int scsi_disk; |
31 | static int floppy; | 32 | static int floppy; |
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index 3f7fb4bef..2666132f9 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -2,8 +2,9 @@ | |||
2 | /* | 2 | /* |
3 | * mkfs.c - make a linux (minix) file-system. | 3 | * mkfs.c - make a linux (minix) file-system. |
4 | * | 4 | * |
5 | * (C) 1991 Linus Torvalds. This file may be redistributed as per | 5 | * (C) 1991 Linus Torvalds. |
6 | * the Linux copyright. | 6 | * |
7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | */ | 8 | */ |
8 | 9 | ||
9 | /* | 10 | /* |
diff --git a/util-linux/rtcwake.c b/util-linux/rtcwake.c index a9766caaa..6c399c746 100644 --- a/util-linux/rtcwake.c +++ b/util-linux/rtcwake.c | |||
@@ -3,6 +3,8 @@ | |||
3 | * | 3 | * |
4 | * This version was taken from util-linux and scrubbed down for busybox. | 4 | * This version was taken from util-linux and scrubbed down for busybox. |
5 | * | 5 | * |
6 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | * | ||
6 | * This uses cross-platform Linux interfaces to enter a system sleep state, | 8 | * This uses cross-platform Linux interfaces to enter a system sleep state, |
7 | * and leave it no later than a specified time. It uses any RTC framework | 9 | * and leave it no later than a specified time. It uses any RTC framework |
8 | * driver that supports standard driver model wakeup flags. | 10 | * driver that supports standard driver model wakeup flags. |