[PATCH] x86: Change SYS_LOAD_ADDR to 0x01000000
Tom Rini
trini at konsulko.com
Tue Aug 31 15:13:18 CEST 2021
At least on qemu, and likely other platforms, a load address of
0x02000000 ends up without our protected range currently. Move this
down to 0x01000000.
Cc: Bin Meng <bmeng.cn at gmail.com>
Signed-off-by: Tom Rini <trini at konsulko.com>
---
Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Kconfig b/Kconfig
index 931a22806e4e..eaf48b80196f 100644
--- a/Kconfig
+++ b/Kconfig
@@ -389,8 +389,8 @@ config SYS_LDSCRIPT
config SYS_LOAD_ADDR
hex "Address in memory to use by default"
- default 0x01000000 if ARCH_SOCFPGA
- default 0x02000000 if PPC || X86
+ default 0x01000000 if ARCH_SOCFPGA || X86
+ default 0x02000000 if PPC
default 0x22000000 if MACH_SUN9I
default 0x42000000 if ARCH_SUNXI && !MACH_SUN9I
default 0x82000000 if ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3
--
2.17.1
More information about the U-Boot
mailing list