summaryrefslogtreecommitdiff
path: root/package/busybox
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-04-04 13:50:18 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-04-04 13:50:18 +0200
commitb7e9ef2689a58c623854239341cddc1fa90d549e (patch)
tree1ab7df115ad1beb815ac6b71fe86541eaf7e6b0c /package/busybox
parent764fb0eb598e94e18ac76b7bf7b9afdaa1e46c5f (diff)
remove, already in upstream
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/003-fdisk-mmc.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/patches/003-fdisk-mmc.patch b/package/busybox/patches/003-fdisk-mmc.patch
deleted file mode 100644
index 961c117b2..000000000
--- a/package/busybox/patches/003-fdisk-mmc.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Nur busybox-1.15.2.orig/util-linux/fdisk.c busybox-1.15.2/util-linux/fdisk.c
---- busybox-1.15.2.orig/util-linux/fdisk.c 2009-10-08 03:04:40.000000000 +0200
-+++ busybox-1.15.2/util-linux/fdisk.c 2010-02-23 20:41:01.000000000 +0100
-@@ -2770,7 +2770,9 @@
- for (s = ptname; *s; s++)
- continue;
- if (isdigit(s[-1]))
-- continue;
-+ if (s[-1] != '0')
-+ continue;
-+
- sprintf(devname, "/dev/%s", ptname);
- open_list_and_close(devname, 0);
- }