Skip to content

Commit

Permalink
ipq806x: fix TP-Link Archer VR2600v bootlooping
Browse files Browse the repository at this point in the history
Timo Schroeder reported:
"The TP-Link Archer VR2600v is stuck in a boot loop on written
snapshot image. It's able to boot using the snapshot uimage
though, but there ath10k firmware can't be found.
21.02.2 release version doesn't have either problem."

The VR2600v has a 512 byte header at the beginning of the
firmware that needs to be accounted for.

Fixes: f6a01d7 ("ipq806x: convert TP-Link Archer VR2600v to denx,uimage")
Reported-by: Timo Schroeder <der.timosch@gmail.com>
References: <openwrt#9467>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
  • Loading branch information
chunkeey committed Mar 16, 2022
1 parent 7e61482 commit 621b058
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -257,7 +257,8 @@
partition@320000 {
label = "firmware";
reg = <0x320000 0xc60000>;
compatible = "denx,uimage";
compatible = "openwrt,uimage";
openwrt,offset = <512>; /* account for pad-extra 512 */
};

/* hole 0xf80000 - 0xfaf100 */
Expand Down

0 comments on commit 621b058

Please sign in to comment.