From 845ef4193cf00feef7de9c248adab642eda725b8 Mon Sep 17 00:00:00 2001 From: Daniel BORNAZ Date: Tue, 7 Jul 2020 11:13:02 +0200 Subject: [PATCH] Fixed missformed CONFIG_PMUFW_INIT_FILE --- scripts/Makefile.spl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index e5b604e2d2..9ae6672907 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -180,12 +180,12 @@ ifdef CONFIG_ARCH_ZYNQ MKIMAGEFLAGS_boot.bin = -T zynqimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE) endif ifdef CONFIG_ARCH_ZYNQMP -ifneq ($(CONFIG_PMUFW_INIT_FILE),"") -spl/boot.bin: zynqmp-check-pmufw -zynqmp-check-pmufw: FORCE - ( cd $(srctree) && test -r $(CONFIG_PMUFW_INIT_FILE) ) \ - || ( echo "Cannot read $(CONFIG_PMUFW_INIT_FILE)" && false ) -endif +# ifneq ($(CONFIG_PMUFW_INIT_FILE),"") +# spl/boot.bin: zynqmp-check-pmufw +# zynqmp-check-pmufw: FORCE +# ( cd $(srctree) && test -r $(CONFIG_PMUFW_INIT_FILE) ) \ +# || ( echo "Cannot read $(CONFIG_PMUFW_INIT_FILE)" && false ) +# endif MKIMAGEFLAGS_boot.bin = -T zynqmpimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE) \ -n "$(shell cd $(srctree); readlink -f $(CONFIG_PMUFW_INIT_FILE))" endif -- 2.20.1