From e0ed51ca8b9ec854caf33c7698d09fa8526f2c55 Mon Sep 17 00:00:00 2001 From: Neal Frager Date: Sun, 31 Aug 2025 14:35:26 +0100 Subject: [PATCH] boot/uboot: add cpu dependency to BR2_TARGET_UBOOT_ZYNQ Since the Xilinx Zynq SoC family is always based on ARM Cortex-A9 CPUs, the BR2_TARGET_UBOOT_ZYNQ option should only be available when the BR2_cortex_a9 option is selected. Signed-off-by: Neal Frager Reviewed-by: Luca Ceresoli Signed-off-by: Julien Olivain --- boot/uboot/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index 18b58753a7..445fbd3ed0 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -704,6 +704,7 @@ endif config BR2_TARGET_UBOOT_ZYNQ bool "Boot on the Xilinx Zynq SoCs" depends on BR2_arm + depends on BR2_cortex_a9 help Enable options specific to the Xilinx Zynq family of SoCs.