summaryrefslogtreecommitdiff
path: root/arch/sandbox/cpu/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-10-03 19:26:45 +0000
committerWolfgang Denk <wd@denx.de>2011-10-17 23:56:58 +0200
commitbace3d00f28040f061e0e21126bc70cfb9d20930 (patch)
tree7761d2ca13732c28b8dbc7603578dab9132d77d3 /arch/sandbox/cpu/Makefile
parent7a9219c17a6a15bfa96a87b352837be71b6738f6 (diff)
sandbox: Add main program
Add a main program so that we can run U-Boot. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/Makefile')
-rw-r--r--arch/sandbox/cpu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/Makefile b/arch/sandbox/cpu/Makefile
index 1a0b260cef..e5e860b715 100644
--- a/arch/sandbox/cpu/Makefile
+++ b/arch/sandbox/cpu/Makefile
@@ -30,7 +30,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).o
-COBJS := cpu.o os.o
+COBJS := cpu.o start.o os.o
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))