mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
b4302582f3
Disable a few things which interfere with the EFI init. This allows the Minnowboard MAX to boot into EFI, load a U-Boot payload then boot to the U-Boot prompt. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
28 lines
455 B
Text
28 lines
455 B
Text
if TARGET_MINNOWMAX
|
|
|
|
config SYS_BOARD
|
|
default "minnowmax"
|
|
|
|
config SYS_VENDOR
|
|
default "intel"
|
|
|
|
config SYS_SOC
|
|
default "baytrail"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "minnowmax"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0xfff00000 if !EFI_STUB
|
|
default 0x01110000 if EFI_STUB
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR if !EFI_STUB
|
|
select INTEL_BAYTRAIL
|
|
select BOARD_ROMSIZE_KB_8192
|
|
|
|
config PCIE_ECAM_BASE
|
|
default 0xe0000000
|
|
|
|
endif
|