]> Git Repo - J-u-boot.git/commitdiff
arm: mvebu: Espressobin: Change default loadaddr
authorPali Rohár <[email protected]>
Thu, 27 Aug 2020 13:01:26 +0000 (15:01 +0200)
committerStefan Roese <[email protected]>
Mon, 31 Aug 2020 12:45:53 +0000 (14:45 +0200)
Current loadaddr is not writable on Espressobin and 'loadb' command cause
rebooting board. Marvell's U-Boot already set default loadaddr to value
0x06000000 [1] and after this change 'loadb' is working fine.

[1] - https://github.com/MarvellEmbeddedProcessors/u-boot-marvell/commit/0a5b159806baa0746b6449920e450498bc269ba7

Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Tested-by: Andre Heider <[email protected]>
include/configs/mvebu_armada-37xx.h

index a9ed0a838f243cfe1bf8d3b4add17b336817f665..93c05e30cc891d5279358cb199edd51701ec46ed 100644 (file)
@@ -37,7 +37,7 @@
 /*
  * Other required minimal configurations
  */
-#define CONFIG_SYS_LOAD_ADDR   0x00800000      /* default load adr- 8M */
+#define CONFIG_SYS_LOAD_ADDR   0x06000000      /* default load adr */
 #define CONFIG_SYS_RESET_ADDRESS 0xffff0000    /* Rst Vector Adr */
 #define CONFIG_SYS_MAXARGS     32      /* max number of command args */
 
This page took 0.0327 seconds and 4 git commands to generate.