mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-07 08:47:18 +00:00
Define a new config "zynqmp_ep" for ZynqMP instead of xilinx_zynqmp. This defconfig supports all emulation platforms of ZynqMP. Also renamed TARGET_XILINX_ZYNQMP to ARCH_ZYNQMP. Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
23 lines
306 B
Text
23 lines
306 B
Text
if ARCH_ZYNQMP
|
|
|
|
choice
|
|
prompt "Xilinx ZynqMP board select"
|
|
|
|
config TARGET_ZYNQMP_EP
|
|
bool "ZynqMP EP Board"
|
|
|
|
endchoice
|
|
|
|
config SYS_BOARD
|
|
default "zynqmp"
|
|
|
|
config SYS_VENDOR
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynqmp"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "xilinx_zynqmp_ep" if TARGET_ZYNQMP_EP
|
|
|
|
endif
|