diff options
author | Caleb Connolly <caleb.connolly@linaro.org> | 2024-04-18 18:25:51 +0100 |
---|---|---|
committer | Caleb Connolly <caleb.connolly@linaro.org> | 2024-04-23 13:29:31 +0200 |
commit | 9861ebac77d46674243886136275aac1deb7f982 (patch) | |
tree | 0139799f2f2e1321acd0eb3ccbef923b3bc7fa38 | |
parent | 9050686c1b9d9d9ac03a3f685458ab5eb2969e15 (diff) |
qcom_defconfig: define safe default SYS_LOAD_ADDR
Defining this as 0 results in bootm causing a null pointer exception...
Define it at a safe default which is valid RAM on most qcom boards.
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
-rw-r--r-- | configs/qcom_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/qcom_defconfig b/configs/qcom_defconfig index 209a7ba324d..41545fd72fc 100644 --- a/configs/qcom_defconfig +++ b/configs/qcom_defconfig @@ -3,7 +3,7 @@ CONFIG_SKIP_LOWLEVEL_INIT=y CONFIG_POSITION_INDEPENDENT=y CONFIG_ARCH_SNAPDRAGON=y CONFIG_DEFAULT_DEVICE_TREE="qcom/sdm845-db845c" -CONFIG_SYS_LOAD_ADDR=0x0 +CONFIG_SYS_LOAD_ADDR=0xA0000000 CONFIG_SYS_INIT_SP_BSS_OFFSET=1572864 CONFIG_BUTTON_CMD=y CONFIG_FIT=y |