mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 00:49:43 +00:00
9bd53b6255
Prior to this commit, ZC702 and ZC706 shared the same configuration and were built as follows: ZC702: make zynq_zc70x_defconfig && make ZC706: make zynq_zc70x_defconfig && make DEVICE_TREE=zynq-zc706 This commit introduces separate configuration for them, which makes the next commit much easier. Going forward, the recommended build commands are: ZC702: make zynq_zc702_defconfig && make ZC706: make zynq_zc706_defconfig && make Although the old work flow is still supported, CONFIG_TARGET_ZC70X has been marked as deprecated. If used, the warning message is shown to prompt users to switch to the new scheme. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
54 lines
1 KiB
Text
54 lines
1 KiB
Text
if ARCH_ZYNQ
|
|
|
|
choice
|
|
prompt "Xilinx Zynq board select"
|
|
optional
|
|
|
|
config TARGET_ZYNQ_ZED
|
|
bool "Zynq ZedBoard"
|
|
|
|
config TARGET_ZYNQ_MICROZED
|
|
bool "Zynq MicroZed"
|
|
|
|
config TARGET_ZYNQ_PICOZED
|
|
bool "Zynq PicoZed"
|
|
|
|
config TARGET_ZYNQ_ZC70X
|
|
bool "Zynq ZC702/ZC706 Board (deprecated)"
|
|
help
|
|
This option is deprecated. Use TARGET_ZYNQ_ZC702
|
|
or TARGET_ZYNQ_706.
|
|
|
|
config TARGET_ZYNQ_ZC702
|
|
bool "Zynq ZC702 Board"
|
|
|
|
config TARGET_ZYNQ_ZC706
|
|
bool "Zynq ZC706 Board"
|
|
|
|
config TARGET_ZYNQ_ZC770
|
|
bool "Zynq ZC770 Board"
|
|
|
|
config TARGET_ZYNQ_ZYBO
|
|
bool "Zynq Zybo Board"
|
|
|
|
endchoice
|
|
|
|
config SYS_BOARD
|
|
default "zynq"
|
|
|
|
config SYS_VENDOR
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynq"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "zynq_zed" if TARGET_ZYNQ_ZED
|
|
default "zynq_microzed" if TARGET_ZYNQ_MICROZED
|
|
default "zynq_picozed" if TARGET_ZYNQ_PICOZED
|
|
default "zynq_zc70x" if TARGET_ZYNQ_ZC702 || TARGET_ZYNQ_ZC706 \
|
|
|| TARGET_ZYNQ_ZC70X
|
|
default "zynq_zc770" if TARGET_ZYNQ_ZC770
|
|
default "zynq_zybo" if TARGET_ZYNQ_ZYBO
|
|
|
|
endif
|