diff options
author | Michal Simek <monstr@monstr.eu> | 2007-03-11 13:48:24 +0100 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2007-03-11 13:48:24 +0100 |
commit | cfc67116a706fd18b8f6a9c11a16753c5626d689 (patch) | |
tree | a8ece1d13504912339bd59cbbc5d29c74c1def4d /cpu/microblaze/Makefile | |
parent | 76316a318de91f6184e7c22a10e02d275ade2441 (diff) | |
download | u-boot-imx-cfc67116a706fd18b8f6a9c11a16753c5626d689.zip u-boot-imx-cfc67116a706fd18b8f6a9c11a16753c5626d689.tar.gz u-boot-imx-cfc67116a706fd18b8f6a9c11a16753c5626d689.tar.bz2 |
[Microblaze][PATCH] part 2
timer support
interrupt controller support
flash support
ethernet support
cache support
board information support
env support
booting image support
adding support for Xilinx ML401
Diffstat (limited to 'cpu/microblaze/Makefile')
-rw-r--r-- | cpu/microblaze/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpu/microblaze/Makefile b/cpu/microblaze/Makefile index fd54425..db1afa5 100644 --- a/cpu/microblaze/Makefile +++ b/cpu/microblaze/Makefile @@ -26,7 +26,8 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a START = start.o -COBJS = cpu.o interrupts.o +SOBJS = dcache.o icache.o irq.o disable_int.o enable_int.o +COBJS = cpu.o interrupts.o cache.o exception.o timer.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |