diff options
author | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-25 07:20:15 +0000 |
---|---|---|
committer | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-25 07:20:15 +0000 |
commit | cf8689341363afbe9df6c97e56df30d511774dd3 (patch) | |
tree | a3192185adb424bc144ff58bfe3bfe6f2f98c366 | |
parent | ae90983e5cd321a5ed0f1f05eede76af5a6b5590 (diff) | |
download | busybox-w32-cf8689341363afbe9df6c97e56df30d511774dd3.tar.gz busybox-w32-cf8689341363afbe9df6c97e56df30d511774dd3.tar.bz2 busybox-w32-cf8689341363afbe9df6c97e56df30d511774dd3.zip |
fdisk unmaintained now :(
git-svn-id: svn://busybox.net/trunk/busybox@14275 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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> |