u-boot-brain/board/micronas/vct/Kconfig
Paul Burton ec35e12331 MIPS: Move CONFIG_SYS_TEXT_BASE to Kconfig
Move CONFIG_SYS_TEXT_BASE to Kconfig, and add default values in board
Kconfig files matching what was present in their config headers. This
will make it cleaner to conditionalise the value for Malta based on 32
vs 64 bit builds.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
2016-05-26 01:34:13 +02:00

41 lines
519 B
Plaintext

if TARGET_VCT
config SYS_BOARD
default "vct"
config SYS_VENDOR
default "micronas"
config SYS_CONFIG_NAME
default "vct"
config SYS_TEXT_BASE
default 0x87000000
menu "vct board options"
choice
prompt "Board variant"
optional
config VCT_PLATINUM
bool "Enable VCT_PLATINUM"
config VCT_PLATINUMAVC
bool "Enable VCT_PLATINUMAVC"
config VCT_PREMIUM
bool "Enable VCT_PLATINUMAVC"
endchoice
config VCT_ONENAND
bool "Enable VCT_ONENAND"
config VCT_SMALL_IMAGE
bool "Enable VCT_SMALL_IMAGE"
endmenu
endif