diff options
author | Marek Vasut <marex@denx.de> | 2015-07-22 06:18:19 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:09 +0200 |
commit | 4c6d8b91fa8fbe95516c0c804ca5ef491d493b41 (patch) | |
tree | 3cf0de0f2cfdf05006257eea93df555242d26a3a /include/configs/socfpga_cyclone5.h | |
parent | ab48b19a660a81c907116514957a6db1cbb8dafa (diff) | |
download | u-boot-imx-4c6d8b91fa8fbe95516c0c804ca5ef491d493b41.zip u-boot-imx-4c6d8b91fa8fbe95516c0c804ca5ef491d493b41.tar.gz u-boot-imx-4c6d8b91fa8fbe95516c0c804ca5ef491d493b41.tar.bz2 |
arm: socfpga: config: Fix LOADADDR
Setting LOADADDR to 0x8000 is a bad idea, it is very likely that
some kind of overlap will happen. Move the LOADADDR 0x01000000
(16MiB from start of RAM) to make sure no overlap happens when
loading kernel for example.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/configs/socfpga_cyclone5.h')
-rw-r--r-- | include/configs/socfpga_cyclone5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/socfpga_cyclone5.h b/include/configs/socfpga_cyclone5.h index 838fc58..9b31741 100644 --- a/include/configs/socfpga_cyclone5.h +++ b/include/configs/socfpga_cyclone5.h @@ -43,7 +43,7 @@ #else #define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot" #endif -#define CONFIG_LOADADDR 0x8000 +#define CONFIG_LOADADDR 0x01000000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR /* Ethernet on SoC (EMAC) */ |