summaryrefslogtreecommitdiff
path: root/board/st/nhk8815/Makefile
diff options
context:
space:
mode:
authorAlessandro Rubini <rubini@unipv.it>2011-04-16 07:49:40 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-04-27 19:38:10 +0200
commitcb8948ee52f1657250e048a41b75c36c68e344f0 (patch)
treef3a6bce538860cf607ee2e9e5a992acda8c186b2 /board/st/nhk8815/Makefile
parent632f8fdf4c4fae8343409be13d5e028cd4eee32d (diff)
nhk8815: remove platform.S, which was unused at link time
This source file, which I got by the vendor in their own port, was not actually executing because lib-based compilation didn't call lowlevel_init (we have CONFIG_SKIP_LOWLEVEL_INIT). With the change to object-based linking, an undefined symbol in this file started hitting in the final link. Signed-off-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
Diffstat (limited to 'board/st/nhk8815/Makefile')
-rw-r--r--board/st/nhk8815/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/nhk8815/Makefile b/board/st/nhk8815/Makefile
index 3f360dcf29..60b87b1920 100644
--- a/board/st/nhk8815/Makefile
+++ b/board/st/nhk8815/Makefile
@@ -30,7 +30,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).o
COBJS := nhk8815.o
-SOBJS := platform.o
+SOBJS :=
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))