From 4ef51153ba7d5d92a639d1e373a8bfae958b781a Mon Sep 17 00:00:00 2001 From: Roger Pueyo Centelles Date: Mon, 31 Aug 2020 15:15:15 +0200 Subject: [PATCH] ath79/mikrotik: fix soft_config location for SXT 5n MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The soft_config partition for these devices lays between 0xe000 and 0xf000 (as correctly detected by the RouterBoard platform driver), before the bootloader2 partition which starts at 0x10000. This commit correctly sorts the partitions, fixing the parsing error. Fixes: FS#3314 Signed-off-by: Roger Pueyo Centelles Reviewed-by: Thibaut VARĂˆNE --- .../ath79/dts/ar9344_mikrotik_routerboard-sxt-5n.dtsi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target/linux/ath79/dts/ar9344_mikrotik_routerboard-sxt-5n.dtsi b/target/linux/ath79/dts/ar9344_mikrotik_routerboard-sxt-5n.dtsi index 100976e2c8..12152777a6 100644 --- a/target/linux/ath79/dts/ar9344_mikrotik_routerboard-sxt-5n.dtsi +++ b/target/linux/ath79/dts/ar9344_mikrotik_routerboard-sxt-5n.dtsi @@ -122,13 +122,13 @@ read-only; }; - partition@10000 { - label = "bootloader2"; - reg = <0x10000 0x0>; - read-only; + soft_config { }; - soft_config { + partition@10000 { + label = "bootloader2"; + reg = <0x10000 0x10000>; + read-only; }; }; };