From: Masahiro Yamada <yamada.m@jp.panasonic.com>
Date: Fri, 25 Apr 2014 12:54:31 +0000 (+0900)
Subject: kbuild: allow null board for spl build
X-Git-Tag: v2025.01-rc5-pxa1908~15344
X-Git-Url: http://git.dujemihanovic.xyz/html/static/gitweb.css?a=commitdiff_plain;h=bf69d6642326cfecef440bb245946903454ff30e;p=u-boot.git

kbuild: allow null board for spl build

Commit 33a02da0 supported "<none>" for the board field of boards.cfg.
But it missed to modify spl/Makefile.

This commit provides the flexibility so we can use "<none>" board
in SPL too.
---

diff --git a/spl/Makefile b/spl/Makefile
index a4d973744b..55500fd897 100644
--- a/spl/Makefile
+++ b/spl/Makefile
@@ -88,7 +88,7 @@ libs-y += $(CPUDIR)/
 ifdef SOC
 libs-y += $(CPUDIR)/$(SOC)/
 endif
-libs-y += board/$(BOARDDIR)/
+libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
 libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
 
 libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/