mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
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>
40 lines
519 B
Text
40 lines
519 B
Text
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
|