summaryrefslogtreecommitdiff
path: root/target/linux/patches/2.6.37/mtd-rootfs.patch
blob: 9db687c90f3ddef0198c7753ae73571a78d12e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- linux-2.6.37.orig/drivers/mtd/mtdpart.c
+++ linux-2.6.37/drivers/mtd/mtdpart.c
@@ -30,6 +30,7 @@
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/partitions.h>
 #include <linux/err.h>
+#include <linux/root_dev.h>
 
 /* Our partition linked list */
 static LIST_HEAD(mtd_partitions);
@@ -641,6 +642,14 @@
 		slave = allocate_partition(master, parts + i, i, cur_offset);
 		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);