mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +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>
24 lines
353 B
Text
24 lines
353 B
Text
if TARGET_CROWNBAY
|
|
|
|
config SYS_BOARD
|
|
default "crownbay"
|
|
|
|
config SYS_VENDOR
|
|
default "intel"
|
|
|
|
config SYS_SOC
|
|
default "queensbay"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "crownbay"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0xfff00000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR
|
|
select INTEL_QUEENSBAY
|
|
select BOARD_ROMSIZE_KB_1024
|
|
|
|
endif
|