mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
99556d7deb
Currently all x86 boards still use CONFIG_SYS_EXTRA_OPTIONS to define the text base address. Since it is deprecated, just remove it and use CONFIG_SYS_TEXT_BASE directly. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
27 lines
397 B
Text
27 lines
397 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
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR
|
|
select INTEL_BAYTRAIL
|
|
select BOARD_ROMSIZE_KB_8192
|
|
|
|
config PCIE_ECAM_BASE
|
|
default 0xe0000000
|
|
|
|
endif
|