summaryrefslogtreecommitdiff
path: root/target/linux/patches/3.1.10/mtd-rootfs.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-01-29 22:32:47 +0100
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-01-29 22:32:47 +0100
commitc26e903ff069799f8ca94a84a9f2511df2f71905 (patch)
tree0e7d316c72787176c87e882bb2e3765a5de93fa8 /target/linux/patches/3.1.10/mtd-rootfs.patch
parent529109e5d8f0aae1921a4000fdd1f4b81c631838 (diff)
update kernel versions to latest upstream
Diffstat (limited to 'target/linux/patches/3.1.10/mtd-rootfs.patch')
-rw-r--r--target/linux/patches/3.1.10/mtd-rootfs.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/patches/3.1.10/mtd-rootfs.patch b/target/linux/patches/3.1.10/mtd-rootfs.patch
new file mode 100644
index 000000000..5dad745d8
--- /dev/null
+++ b/target/linux/patches/3.1.10/mtd-rootfs.patch
@@ -0,0 +1,26 @@
+diff -Nur linux-3.0.17.orig/drivers/mtd/mtdpart.c linux-3.0.17/drivers/mtd/mtdpart.c
+--- linux-3.0.17.orig/drivers/mtd/mtdpart.c 2012-01-12 20:54:29.000000000 +0100
++++ linux-3.0.17/drivers/mtd/mtdpart.c 2012-01-18 12:00:59.000000000 +0100
+@@ -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"
+
+@@ -661,6 +662,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);