aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-25 07:20:15 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-25 07:20:15 +0000
commitcf8689341363afbe9df6c97e56df30d511774dd3 (patch)
treea3192185adb424bc144ff58bfe3bfe6f2f98c366
parentae90983e5cd321a5ed0f1f05eede76af5a6b5590 (diff)
downloadbusybox-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--AUTHORS3
-rw-r--r--util-linux/fdisk.c7
2 files changed, 8 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index ed5d6e379..6e49761f0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -113,7 +113,8 @@ Manuel Novoa III <mjn3@codepoet.org>
113 113
114Vladimir Oleynik <dzo@simtreas.ru> 114Vladimir 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>