mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
a4bd5e4120
U-Boot is expected to support multiple generations of Apple SoCs in a single binary with a single defconfig. Therefore it makes more sense to set SYS_SOC to "apple". Signed-off-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Simon Glass <sjg@chromium.org>
21 lines
281 B
Text
21 lines
281 B
Text
if ARCH_APPLE
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x00000000
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "apple"
|
|
|
|
config SYS_SOC
|
|
default "apple"
|
|
|
|
config SYS_MALLOC_LEN
|
|
default 0x4000000
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x4000
|
|
|
|
config LNX_KRNL_IMG_TEXT_OFFSET_BASE
|
|
default SYS_TEXT_BASE
|
|
|
|
endif
|