diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-24 16:15:29 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-24 16:15:29 +0200 |
commit | 94c82fcf15415a015b602a58a26880bb0ad97da4 (patch) | |
tree | 828a33bd363bfdbc58edbb45cdb2d8e45150d5d9 /target/linux/patches/3.12.14/mtd-rootfs.patch | |
parent | 839ae24b726ab65e1c4cff172f29e24e9f3ee5cd (diff) |
update 3.12 kernel
Diffstat (limited to 'target/linux/patches/3.12.14/mtd-rootfs.patch')
-rw-r--r-- | target/linux/patches/3.12.14/mtd-rootfs.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/patches/3.12.14/mtd-rootfs.patch b/target/linux/patches/3.12.14/mtd-rootfs.patch deleted file mode 100644 index 775d5fc80..000000000 --- a/target/linux/patches/3.12.14/mtd-rootfs.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -Nur linux-3.5.orig//drivers/mtd/mtdpart.c linux-3.5/drivers/mtd/mtdpart.c ---- linux-3.5.orig//drivers/mtd/mtdpart.c 2012-07-21 22:58:29.000000000 +0200 -+++ linux-3.5/drivers/mtd/mtdpart.c 2012-07-31 23:59:07.000000000 +0200 -@@ -30,6 +30,7 @@ - #include <linux/mtd/mtd.h> - #include <linux/mtd/partitions.h> - #include <linux/err.h> -+#include <linux/root_dev.h> - - #include "mtdcore.h" - -@@ -637,6 +638,14 @@ - if (IS_ERR(slave)) - return PTR_ERR(slave); - -+ if (strcmp(parts[i].name, "rootfs") == 0) { -+ if (ROOT_DEV == 0) { -+ printk(KERN_NOTICE "mtd: partition \"rootfs\" " -+ "set to be root filesystem\n"); -+ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, i); -+ } -+ } -+ - mutex_lock(&mtd_partitions_mutex); - list_add(&slave->list, &mtd_partitions); - mutex_unlock(&mtd_partitions_mutex); |