diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-25 07:20:15 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-25 07:20:15 +0000 |
commit | 5c06b277cedf90591082ee1bdb2ebf0142a96138 (patch) | |
tree | a3192185adb424bc144ff58bfe3bfe6f2f98c366 | |
parent | 5527b9117eecf51e96d07ca811e31738278935da (diff) | |
download | busybox-w32-5c06b277cedf90591082ee1bdb2ebf0142a96138.tar.gz busybox-w32-5c06b277cedf90591082ee1bdb2ebf0142a96138.tar.bz2 busybox-w32-5c06b277cedf90591082ee1bdb2ebf0142a96138.zip |
fdisk unmaintained now :(
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | util-linux/fdisk.c | 7 |
2 files changed, 8 insertions, 2 deletions
@@ -113,7 +113,8 @@ Manuel Novoa III <mjn3@codepoet.org> | |||
113 | 113 | ||
114 | Vladimir Oleynik <dzo@simtreas.ru> | 114 | Vladimir Oleynik <dzo@simtreas.ru> |
115 | cmdedit; bb_mkdep, xargs(current), httpd(current); | 115 | cmdedit; bb_mkdep, xargs(current), httpd(current); |
116 | ports: ash, crond, fdisk, inetd, stty, traceroute, top; | 116 | ports: ash, crond, fdisk (initial, unmaintained now), inetd, stty, traceroute, |
117 | top; | ||
117 | locale, various fixes | 118 | locale, various fixes |
118 | and irreconcilable critic of everything not perfect. | 119 | and irreconcilable critic of everything not perfect. |
119 | 120 | ||
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 5d1b75b89..4e23cdb85 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -1,13 +1,18 @@ | |||
1 | /* fdisk.c -- Partition table manipulator for Linux. | 1 | /* fdisk.c -- Partition table manipulator for Linux. |
2 | * | 2 | * |
3 | * Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) | 3 | * Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk) |
4 | * Copyright (C) 2001,2002 Vladimir Oleynik <dzo@simtreas.ru> (Busybox port) | ||
5 | * | 4 | * |
6 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 5 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
6 | * Copyright (C) 2001,2002 Vladimir Oleynik <dzo@simtreas.ru> | ||
7 | * initial busybox port, BSD license | ||
8 | * | ||
9 | * This applet have not the support person from busybox. | ||
7 | */ | 10 | */ |
8 | 11 | ||
12 | /* Current changes have not compatibility with this version */ | ||
9 | #define UTIL_LINUX_VERSION "2.12" | 13 | #define UTIL_LINUX_VERSION "2.12" |
10 | 14 | ||
15 | |||
11 | #define PROC_PARTITIONS "/proc/partitions" | 16 | #define PROC_PARTITIONS "/proc/partitions" |
12 | 17 | ||
13 | #include <features.h> | 18 | #include <features.h> |