diff options
author | Shinya Kuribayashi <shinya.kuribayashi@necel.com> | 2009-02-02 09:46:21 +0900 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-02-21 22:03:24 +0100 |
commit | 35c9e14d8096e519fe76c953a43d52a09617345c (patch) | |
tree | ae9d439fdf941821d79e622a172e17618062a0aa /cpu/mips/Makefile | |
parent | 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a (diff) | |
download | u-boot-imx-35c9e14d8096e519fe76c953a43d52a09617345c.zip u-boot-imx-35c9e14d8096e519fe76c953a43d52a09617345c.tar.gz u-boot-imx-35c9e14d8096e519fe76c953a43d52a09617345c.tar.bz2 |
MIPS: cpu/mips/Makefile: Add a missing START line
In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
line. This patch puts it back.
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Diffstat (limited to 'cpu/mips/Makefile')
-rw-r--r-- | cpu/mips/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/mips/Makefile b/cpu/mips/Makefile index 5091781..28a1cbb 100644 --- a/cpu/mips/Makefile +++ b/cpu/mips/Makefile @@ -25,6 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a +START = start.o SOBJS-y = cache.o COBJS-y = cpu.o interrupts.o |