summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2014-03-07 11:27:00 +0000
committerImre Kaloz <kaloz@openwrt.org>2014-03-07 11:27:00 +0000
commit074af75668dd491042b07a26059927da38f13663 (patch)
tree58362fbaa56de52bda6c4aafc825d5bf5c40ec09 /target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch
parent96fa58bafd6b311a9a3686b704bf8074905c4bea (diff)
downloadmaster-31e0f0ae-074af75668dd491042b07a26059927da38f13663.tar.gz
master-31e0f0ae-074af75668dd491042b07a26059927da38f13663.tar.bz2
master-31e0f0ae-074af75668dd491042b07a26059927da38f13663.zip
add preliminary 3.14 support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39789
Diffstat (limited to 'target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch')
-rw-r--r--target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch b/target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch
new file mode 100644
index 0000000000..b7cff8c119
--- /dev/null
+++ b/target/linux/generic/patches-3.14/480-mtd-set-rootfs-to-be-root-dev.patch
@@ -0,0 +1,26 @@
+--- a/drivers/mtd/mtdcore.c
++++ b/drivers/mtd/mtdcore.c
+@@ -37,6 +37,7 @@
+ #include <linux/backing-dev.h>
+ #include <linux/gfp.h>
+ #include <linux/slab.h>
++#include <linux/root_dev.h>
+
+ #include <linux/mtd/mtd.h>
+ #include <linux/mtd/partitions.h>
+@@ -414,6 +415,15 @@ int add_mtd_device(struct mtd_info *mtd)
+ of this try_ nonsense, and no bitching about it
+ either. :) */
+ __module_get(THIS_MODULE);
++
++ if (!strcmp(mtd->name, "rootfs") &&
++ config_enabled(CONFIG_MTD_ROOTFS_ROOT_DEV) &&
++ ROOT_DEV == 0) {
++ pr_notice("mtd: device %d (%s) set to be root filesystem\n",
++ mtd->index, mtd->name);
++ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, mtd->index);
++ }
++
+ return 0;
+
+ fail_added: