mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-01 03:51:31 +02:00
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE and this makes it imposible to use CONFIG_VAL(). Rename it to resolve this problem. Signed-off-by: Simon Glass <sjg@chromium.org>
39 lines
678 B
Plaintext
39 lines
678 B
Plaintext
if VENDOR_COREBOOT
|
|
|
|
config SYS_BOARD
|
|
default "coreboot"
|
|
|
|
config SYS_VENDOR
|
|
default "coreboot"
|
|
|
|
config SYS_SOC
|
|
default "coreboot"
|
|
|
|
config 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
|