diff options
author | Sungbo Eo <mans0n@gorani.run> | 2021-02-17 21:17:03 +0900 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-02-24 02:53:53 +0100 |
commit | e464d365fe66bd6b5b238a18b32650a8b1d1ef63 (patch) | |
tree | 58cefcef426c76d5a580d9c9c95dd65890703818 /target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch | |
parent | 8d766aa669702f8291a95f985a0b4dd16b1cca2d (diff) | |
download | upstream-e464d365fe66bd6b5b238a18b32650a8b1d1ef63.tar.gz upstream-e464d365fe66bd6b5b238a18b32650a8b1d1ef63.tar.bz2 upstream-e464d365fe66bd6b5b238a18b32650a8b1d1ef63.zip |
kirkwood: copy files to kernel 5.10
Copy config and patches to kernel 5.10.
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
Diffstat (limited to 'target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch')
-rw-r--r-- | target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch b/target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch new file mode 100644 index 0000000000..b7e7f50271 --- /dev/null +++ b/target/linux/kirkwood/patches-5.10/202-linksys-find-active-root.patch @@ -0,0 +1,62 @@ +The WRT1900AC among other Linksys routers uses a dual-firmware layout. +Dynamically rename the active partition to "ubi". + +Signed-off-by: Imre Kaloz <kaloz@openwrt.org> +--- +--- a/drivers/mtd/parsers/ofpart.c ++++ b/drivers/mtd/parsers/ofpart.c +@@ -21,6 +21,8 @@ static bool node_has_compatible(struct d + return of_get_property(pp, "compatible", NULL); + } + ++static int mangled_rootblock; ++ + static int parse_fixed_partitions(struct mtd_info *master, + const struct mtd_partition **pparts, + struct mtd_part_parser_data *data) +@@ -28,6 +30,7 @@ static int parse_fixed_partitions(struct + struct mtd_partition *parts; + struct device_node *mtd_node; + struct device_node *ofpart_node; ++ const char *owrtpart = "ubi"; + const char *partname; + struct device_node *pp; + int nr_parts, i, ret = 0; +@@ -106,9 +109,15 @@ static int parse_fixed_partitions(struct + parts[i].size = of_read_number(reg + a_cells, s_cells); + parts[i].of_node = pp; + +- partname = of_get_property(pp, "label", &len); +- if (!partname) +- partname = of_get_property(pp, "name", &len); ++ if (mangled_rootblock && (i == mangled_rootblock)) { ++ partname = owrtpart; ++ } else { ++ partname = of_get_property(pp, "label", &len); ++ ++ if (!partname) ++ partname = of_get_property(pp, "name", &len); ++ } ++ + parts[i].name = partname; + + if (of_get_property(pp, "read-only", &len)) +@@ -215,6 +224,18 @@ static int __init ofpart_parser_init(voi + return 0; + } + ++static int __init active_root(char *str) ++{ ++ get_option(&str, &mangled_rootblock); ++ ++ if (!mangled_rootblock) ++ return 1; ++ ++ return 1; ++} ++ ++__setup("mangled_rootblock=", active_root); ++ + static void __exit ofpart_parser_exit(void) + { + deregister_mtd_parser(&ofpart_parser); |