mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-01 12:38:22 +00:00
Now that we support having CONFIG_SYS_CONFIG_NAME be unset to indicate a lack of board.h file, unset this on the coreboot platform and remove the otherwise empty file. Signed-off-by: Tom Rini <trini@konsulko.com>
32 lines
607 B
Plaintext
32 lines
607 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
|