From: Stefan Roese Date: Thu, 5 Jan 2012 10:23:45 +0000 (+0100) Subject: SPL: ARM: spear: Remove some objects from SPL build X-Git-Tag: v2012.07-rc1~11^2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d014e033889f10d40d009cc7bad00893293b640e;p=u-boot SPL: ARM: spear: Remove some objects from SPL build Signed-off-by: Stefan Roese Cc: Amit Virdi Cc: Vipin Kumar --- diff --git a/board/spear/common/Makefile b/board/spear/common/Makefile index 11f81e4803..5c66c3f092 100644 --- a/board/spear/common/Makefile +++ b/board/spear/common/Makefile @@ -29,8 +29,10 @@ endif LIB = $(obj)lib$(VENDOR).o +ifndef CONFIG_SPL_BUILD COBJS := spr_misc.o SOBJS := spr_lowlevel_init.o +endif SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/board/spear/spear600/Makefile b/board/spear/spear600/Makefile index e2bd5ab7f5..ee66fc6520 100644 --- a/board/spear/spear600/Makefile +++ b/board/spear/spear600/Makefile @@ -25,7 +25,9 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).o +ifndef CONFIG_SPL_BUILD COBJS := spear600.o +endif SOBJS := SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)