mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
0785dfd8a7
Remove SECURE_IOU option which is not needed. U-Boot itself can detect which EL level it is on and based on that use do platform setup. It also simplify usage because one Kconfig entry is gone. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
26 lines
354 B
Text
26 lines
354 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
|
|
|
|
config ZYNQMP_USB
|
|
bool "Configure ZynqMP USB"
|
|
|
|
endif
|