diff options
author | Simon Glass | 2015-08-04 12:34:02 -0600 |
---|---|---|
committer | Simon Glass | 2015-08-05 08:44:08 -0600 |
commit | b4302582f309b49a08c770960a37af6fe1f3afb3 (patch) | |
tree | 44a890e542d467cd0265abdc163f2b703602f98f /board/intel/minnowmax | |
parent | 8e3665087559092ef7fba861e65f633060896ede (diff) |
x86: baytrail: Support operation as an EFI payload
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>
Diffstat (limited to 'board/intel/minnowmax')
-rw-r--r-- | board/intel/minnowmax/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/board/intel/minnowmax/Kconfig b/board/intel/minnowmax/Kconfig index f2a0b71c442..7e975f9c3ae 100644 --- a/board/intel/minnowmax/Kconfig +++ b/board/intel/minnowmax/Kconfig @@ -13,11 +13,12 @@ config SYS_CONFIG_NAME default "minnowmax" config SYS_TEXT_BASE - default 0xfff00000 + default 0xfff00000 if !EFI_STUB + default 0x01110000 if EFI_STUB config BOARD_SPECIFIC_OPTIONS # dummy def_bool y - select X86_RESET_VECTOR + select X86_RESET_VECTOR if !EFI_STUB select INTEL_BAYTRAIL select BOARD_ROMSIZE_KB_8192 |