1 The WRT1900AC among other Linksys routers uses a dual-firmware layout.
2 Dynamically rename the active partition to "ubi".
4 Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
6 --- a/drivers/mtd/ofpart.c
7 +++ b/drivers/mtd/ofpart.c
8 @@ -25,12 +25,15 @@ static bool node_has_compatible(struct d
9 return of_get_property(pp, "compatible", NULL);
12 +static int mangled_rootblock;
14 static int parse_ofpart_partitions(struct mtd_info *master,
15 struct mtd_partition **pparts,
16 struct mtd_part_parser_data *data)
18 struct device_node *node;
20 + const char *owrtpart = "ubi";
21 struct device_node *pp;
24 @@ -78,9 +81,15 @@ static int parse_ofpart_partitions(struc
25 (*pparts)[i].offset = of_read_number(reg, a_cells);
26 (*pparts)[i].size = of_read_number(reg + a_cells, s_cells);
28 - partname = of_get_property(pp, "label", &len);
30 - partname = of_get_property(pp, "name", &len);
31 + if (mangled_rootblock && (i == mangled_rootblock)) {
32 + partname = owrtpart;
34 + partname = of_get_property(pp, "label", &len);
37 + partname = of_get_property(pp, "name", &len);
40 (*pparts)[i].name = partname;
42 if (of_get_property(pp, "read-only", &len))
43 @@ -178,6 +187,18 @@ static int __init ofpart_parser_init(voi
47 +static int __init active_root(char *str)
49 + get_option(&str, &mangled_rootblock);
51 + if (!mangled_rootblock)
57 +__setup("mangled_rootblock=", active_root);
59 static void __exit ofpart_parser_exit(void)
61 deregister_mtd_parser(&ofpart_parser);