]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/armv7/Makefile
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[u-boot] / arch / arm / cpu / armv7 / Makefile
index 8c0e9150037714ddd07eb12fc2cd8b03787d73ec..7a8c2d0e59ea328f78a9253f01801cfa13f3a150 100644 (file)
@@ -26,11 +26,18 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).o
 
 START  := start.o
-COBJS  := cpu.o
-COBJS  += syslib.o
+
+COBJS  += cache_v7.o
+
+COBJS  += cpu.o
+COBJS  += syslib.o
+
+ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(CONFIG_TEGRA)$(CONFIG_MX6)$(CONFIG_TI814X),)
+SOBJS  += lowlevel_init.o
+endif
 
 SRCS   := $(START:.o=.S) $(COBJS:.o=.c)
-OBJS   := $(addprefix $(obj),$(COBJS))
+OBJS   := $(addprefix $(obj),$(COBJS) $(SOBJS))
 START  := $(addprefix $(obj),$(START))
 
 all:   $(obj).depend $(START) $(LIB)