]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: mvebu: turris_omnia: update rescue mode boot command
authorMarek Behún <marek.behun@nic.cz>
Fri, 28 May 2021 08:00:48 +0000 (10:00 +0200)
committerStefan Roese <sr@denx.de>
Fri, 4 Jun 2021 09:32:41 +0000 (11:32 +0200)
Update rescue mode boot command on Turris Omnia. We are compressing the
image with lzma now.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
board/CZ.NIC/turris_omnia/turris_omnia.c

index 1d3cefe703b8f49c4fdaec5d1dbcc4fdd5138f93..d3de8004eb920c2c395203d5286c3d6ad644cbda 100644 (file)
@@ -349,10 +349,15 @@ static int set_regdomain(void)
        "mw.l 0x01000000 0x00ff000c; " \
        "i2c write 0x01000000 0x2a.1 0x5 4 -s; " \
        "setenv bootargs \"earlyprintk console=ttyS0,115200" \
-                       " omniarescue=$omnia_reset\"; " \
+               " omniarescue=$omnia_reset rescue_mode=$omnia_reset\"; " \
        "sf probe; " \
        "sf read 0x1000000 0x100000 0x700000; " \
-       "bootm 0x1000000; " \
+       "lzmadec 0x1000000 0x1700000; " \
+       "if gpio input gpio@71_4; then " \
+               "bootm 0x1700000#sfp; " \
+       "else " \
+               "bootm 0x1700000; " \
+       "fi; " \
        "bootz 0x1000000"
 
 static void handle_reset_button(void)