mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
4207917867
The vct board can be built with various variants which are configured via CONFIG_SYS_EXTRA_OPTIONS. This is deprecated. Thus add new Kconfig options for those board variants. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Acked-by: Stefan Roese <sr@denx.de>
36 lines
467 B
Text
36 lines
467 B
Text
if TARGET_VCT
|
|
|
|
config SYS_BOARD
|
|
default "vct"
|
|
|
|
config SYS_VENDOR
|
|
default "micronas"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "vct"
|
|
|
|
menu "vct board options"
|
|
|
|
choice
|
|
prompt "Board variant"
|
|
|
|
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
|