summaryrefslogtreecommitdiff
path: root/target/linux/patches/3.6.1/mtd-rootfs.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-10-11 09:59:25 +0200
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-10-11 09:59:25 +0200
commitec67efc42516136adee22d15ef1fb64b32637806 (patch)
tree6a6f7400f49d5e028034ffe1f7e4dbcd7add3a52 /target/linux/patches/3.6.1/mtd-rootfs.patch
parentc2b8e42bf1d6a4e52ad27ba0ff50738227f7b52a (diff)
forgotten to add the patches for new kernel
Diffstat (limited to 'target/linux/patches/3.6.1/mtd-rootfs.patch')
-rw-r--r--target/linux/patches/3.6.1/mtd-rootfs.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/patches/3.6.1/mtd-rootfs.patch b/target/linux/patches/3.6.1/mtd-rootfs.patch
new file mode 100644
index 000000000..775d5fc80
--- /dev/null
+++ b/target/linux/patches/3.6.1/mtd-rootfs.patch
@@ -0,0 +1,26 @@
+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);