mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 22:52:18 +00:00
b322c83aa4
Merging all the board specific Kconfig options into the main Kconfig file for mach-mvebu makes things easier to maintain. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Luka Perkov <luka.perkov@sartura.hr>
51 lines
1.2 KiB
Text
51 lines
1.2 KiB
Text
if ARCH_MVEBU
|
|
|
|
choice
|
|
prompt "Marvell MVEBU (Armada XP/38x) board select"
|
|
optional
|
|
|
|
config TARGET_CLEARFOG
|
|
bool "Support ClearFog"
|
|
|
|
config TARGET_DB_88F6820_GP
|
|
bool "Support DB-88F6820-GP"
|
|
|
|
config TARGET_DB_MV784MP_GP
|
|
bool "Support db-mv784mp-gp"
|
|
|
|
config TARGET_MAXBCM
|
|
bool "Support maxbcm"
|
|
|
|
endchoice
|
|
|
|
config SYS_BOARD
|
|
default "clearfog" if TARGET_CLEARFOG
|
|
default "db-88f6820-gp" if TARGET_DB_88F6820_GP
|
|
default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
|
|
default "maxbcm" if TARGET_MAXBCM
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "clearfog" if TARGET_CLEARFOG
|
|
default "db-88f6820-gp" if TARGET_DB_88F6820_GP
|
|
default "db-mv784mp-gp" if TARGET_DB_MV784MP_GP
|
|
default "maxbcm" if TARGET_MAXBCM
|
|
|
|
config SYS_VENDOR
|
|
default "Marvell" if TARGET_DB_MV784MP_GP
|
|
default "Marvell" if TARGET_DB_88F6820_GP
|
|
default "solidrun" if TARGET_CLEARFOG
|
|
|
|
config SYS_SOC
|
|
default "mvebu"
|
|
|
|
config MVEBU_BOOTROM_UARTBOOT
|
|
bool "Use kwboot to boot via BootROM xmodem protocol"
|
|
help
|
|
This option provides support for booting via the Marvell
|
|
xmodem protocol, used by the kwboot tool.
|
|
|
|
Please don't forget to configure the boot device in
|
|
the board specific kwbimage.cfg file this way:
|
|
BOOT_FROM uart
|
|
|
|
endif
|