mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-08 16:26:58 +02:00
Now that we support having CONFIG_SYS_CONFIG_NAME be unset to indicate a lack of board.h file, unset this on the cherryhill platform and remove the otherwise empty file. Signed-off-by: Tom Rini <trini@konsulko.com>
23 lines
334 B
Plaintext
23 lines
334 B
Plaintext
if TARGET_CHERRYHILL
|
|
|
|
config SYS_BOARD
|
|
default "cherryhill"
|
|
|
|
config SYS_VENDOR
|
|
default "intel"
|
|
|
|
config SYS_SOC
|
|
default "braswell"
|
|
|
|
config TEXT_BASE
|
|
default 0xffe00000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR
|
|
select INTEL_BRASWELL
|
|
select BOARD_ROMSIZE_KB_8192
|
|
select SPI_FLASH_MACRONIX
|
|
|
|
endif
|