Skip to content
Snippets Groups Projects
Commit 621b0589 authored by Christian Lamparter's avatar Christian Lamparter
Browse files

ipq806x: fix TP-Link Archer VR2600v bootlooping


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: f6a01d7f ("ipq806x: convert TP-Link Archer VR2600v to denx,uimage")
Reported-by: default avatarTimo Schroeder <der.timosch@gmail.com>
References: <https://github.com/openwrt/openwrt/issues/9467

>
Signed-off-by: default avatarChristian Lamparter <chunkeey@gmail.com>
parent 7e614820
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment