mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-21 22:51:27 +02:00
Use VENDOR_COREBOOT instead of TARGET_COREBOOT so we can have multiple coreboot boards, sharing options. Only SYS_CONFIG_NAME needs to be defined TARGET_COREBOOT. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
39 lines
682 B
Plaintext
39 lines
682 B
Plaintext
if VENDOR_COREBOOT
|
|
|
|
config SYS_BOARD
|
|
default "coreboot"
|
|
|
|
config SYS_VENDOR
|
|
default "coreboot"
|
|
|
|
config SYS_SOC
|
|
default "coreboot"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x01110000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select BOARD_EARLY_INIT_R
|
|
|
|
config SYS_CAR_ADDR
|
|
hex "Board specific Cache-As-RAM (CAR) address"
|
|
default 0x01920000
|
|
help
|
|
This option specifies the board specific Cache-As-RAM (CAR) address.
|
|
|
|
config SYS_CAR_SIZE
|
|
hex "Board specific Cache-As-RAM (CAR) size"
|
|
default 0x4000
|
|
help
|
|
This option specifies the board specific Cache-As-RAM (CAR) size.
|
|
|
|
endif # CONFIG_VENDOR_COREBOOT
|
|
|
|
if TARGET_COREBOOT
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "coreboot"
|
|
|
|
endif
|