diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2017-05-21 17:41:41 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2017-05-21 18:31:38 +0200 |
commit | 0a05fbd1356631a1f903adcd63ffb05550537667 (patch) | |
tree | 5c748cb756cecf97062c90c0bcacd26cb92368db /target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch | |
parent | c7ee30d53af12ea725296cc323f68e8fe04e532c (diff) | |
download | upstream-0a05fbd1356631a1f903adcd63ffb05550537667.tar.gz upstream-0a05fbd1356631a1f903adcd63ffb05550537667.tar.bz2 upstream-0a05fbd1356631a1f903adcd63ffb05550537667.zip |
bcm53xx: add support for TP-LINK Archer C5 V2
This model also contains few partitions non-discoverable partitions we
need to "protect". Othen than that it uses non-deprecated serial entry
in DTS that doesn't work with LEDE so we need to workaround it as well.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch')
-rw-r--r-- | target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch b/target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch index 0ffa82f869..0223ab4776 100644 --- a/target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch +++ b/target/linux/bcm53xx/patches-4.4/901-mtd-bcm47xxpart-add-device-specific-workarounds.patch @@ -17,7 +17,7 @@ Signed-off-by: Rafał Miłecki <rafal@milecki.pl> #include <uapi/linux/magic.h> -@@ -249,6 +250,28 @@ static int bcm47xxpart_parse(struct mtd_ +@@ -249,6 +250,36 @@ static int bcm47xxpart_parse(struct mtd_ break; } @@ -33,6 +33,14 @@ Signed-off-by: Rafał Miłecki <rafal@milecki.pl> + */ + bcm47xxpart_add_part(&parts[curr_part++], "asus", offset, MTD_WRITEABLE); + continue; ++ } else if (of_machine_is_compatible("tplink,archer-c5-v2") && offset == 0xe40000) { ++ /* ++ * There is a whole set of partitions (not even listed ++ * by original firmware): "default-mac", "pin", ++ * "partition-table", etc. ++ */ ++ bcm47xxpart_add_part(&parts[curr_part++], "tplink", offset, MTD_WRITEABLE); ++ continue; + } else if (of_machine_is_compatible("tplink,archer-c9-v1") && offset == 0xe40000) { + /* + * There is a whole set of partitions (not even listed |