From 54fee227ef141214141a226efd17ae0516deaf32 Mon Sep 17 00:00:00 2001 From: Jason Wu Date: Mon, 24 Feb 2014 13:52:53 +1000 Subject: [PATCH] zynq: Fix the build error when SPL is not built. Don't generated Boot.bin unless CONFIG_SPL is defined Signed-off-by: Jason Wu Signed-off-by: Michal Simek --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index d89962d03f8..0419debd8e9 100755 --- a/Makefile +++ b/Makefile @@ -363,8 +363,10 @@ endif endif ifneq ($(CONFIG_ZYNQ),) +ifeq ($(CONFIG_SPL),y) ALL-y += $(obj)boot.bin endif +endif build := -f $(TOPDIR)/scripts/Makefile.build -C -- 2.47.3