From: Aneesh V Date: Mon, 21 Nov 2011 23:33:59 +0000 (+0000) Subject: armv7: include armv7/cpu.c in SPL build X-Git-Tag: v2011.12-rc1~60^2~75 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=87d3da7b01ee083447f9fcc62f35427d5fde2e2f;p=u-boot armv7: include armv7/cpu.c in SPL build This allows SPL to have default implementation of save_boot_params(), useful for SoCs that do not intend to override this default implementation Cc: Albert Aribaud Signed-off-by: Aneesh V --- diff --git a/arch/arm/cpu/armv7/Makefile b/arch/arm/cpu/armv7/Makefile index 92a5a96800..f97fa3d448 100644 --- a/arch/arm/cpu/armv7/Makefile +++ b/arch/arm/cpu/armv7/Makefile @@ -29,10 +29,10 @@ START := start.o ifndef CONFIG_SPL_BUILD COBJS += cache_v7.o -COBJS += cpu.o endif -COBJS += syslib.o +COBJS += cpu.o +COBJS += syslib.o SRCS := $(START:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS))