diff options
| author | Biwen Li <[email protected]> | 2021-05-21 15:15:06 +0800 |
|---|---|---|
| committer | Priyanka Jain <[email protected]> | 2021-06-17 11:46:11 +0530 |
| commit | 8bb20852eb4f503da921b1e1c67f1193c0ad5317 (patch) | |
| tree | 764d459c79a5459e8f4515c9ac628f2de596d035 | |
| parent | effcb1ebe44a82df6670b7cdb4d9605e3a2a3207 (diff) | |
configs: ls2088aqds: fix synchronous exception
IFC NOR flash base address of ls2088a is 0x580000000,
and offset of env crc is 0x500000, so fix the macro
CONFIG_ENV_ADDR to fix synchronous exception(access illegal address)
Fixes: 59071804c1 ("configs: ls2080a: Correct ENV_ADDR value")
Signed-off-by: Biwen Li <[email protected]>
Reviewed-by: Priyanka Jain <[email protected]>
| -rw-r--r-- | configs/ls2088aqds_tfa_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/ls2088aqds_tfa_defconfig b/configs/ls2088aqds_tfa_defconfig index 5620e8a786b..5d14b55e6b2 100644 --- a/configs/ls2088aqds_tfa_defconfig +++ b/configs/ls2088aqds_tfa_defconfig @@ -42,7 +42,7 @@ CONFIG_ENV_OVERWRITE=y CONFIG_ENV_IS_IN_FLASH=y CONFIG_ENV_IS_IN_MMC=y CONFIG_ENV_IS_IN_SPI_FLASH=y -CONFIG_ENV_ADDR=0x20500000 +CONFIG_ENV_ADDR=0x580500000 CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_NET_RANDOM_ETHADDR=y CONFIG_DM=y |
