mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
44dcb4036b
Becuase the board select menu in arch/arm/Kconfig is too big, move the Zynq board select menu to zynq/Kconfig. Consolidate also common settings (CONFIG_SYS_CPU="armv7" and CONFIG_SYS_SOC="zynq"). Refactor board/xilinx/zynq/MAINTAINERS too. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Michal Simek <michal.simek@xilinx.com>
43 lines
648 B
Text
43 lines
648 B
Text
if ZYNQ
|
|
|
|
choice
|
|
prompt "Xilinx Zynq board select"
|
|
|
|
config TARGET_ZYNQ_ZED
|
|
bool "Zynq ZedBoard"
|
|
|
|
config TARGET_ZYNQ_MICROZED
|
|
bool "Zynq MicroZed"
|
|
|
|
config TARGET_ZYNQ_ZC70X
|
|
bool "Zynq ZC702/ZC706 Board"
|
|
|
|
config TARGET_ZYNQ_ZC770
|
|
bool "Zynq ZC770 Board"
|
|
|
|
endchoice
|
|
|
|
config SYS_CPU
|
|
string
|
|
default "armv7"
|
|
|
|
config SYS_BOARD
|
|
string
|
|
default "zynq"
|
|
|
|
config SYS_VENDOR
|
|
string
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
string
|
|
default "zynq"
|
|
|
|
config SYS_CONFIG_NAME
|
|
string
|
|
default "zynq_zed" if TARGET_ZYNQ_ZED
|
|
default "zynq_microzed" if TARGET_ZYNQ_MICROZED
|
|
default "zynq_zc70x" if TARGET_ZYNQ_ZC70X
|
|
default "zynq_zc770" if TARGET_ZYNQ_ZC770
|
|
|
|
endif
|