diff options
author | Marian Balakowicz <m8@semihalf.com> | 2008-01-08 18:11:43 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-07 01:12:54 +0100 |
commit | 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36 (patch) | |
tree | 1829170a7b5425cf7f344ce5c75021bb82558de8 /lib_ppc/Makefile | |
parent | b97a2a0a21f279d66de8a9bdbfe21920968bcb1c (diff) | |
download | u-boot-imx-5d3cc55ecbae277e08f5ff771da20b1d6a36ec36.zip u-boot-imx-5d3cc55ecbae277e08f5ff771da20b1d6a36ec36.tar.gz u-boot-imx-5d3cc55ecbae277e08f5ff771da20b1d6a36ec36.tar.bz2 |
[new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
PPC implementation of do_bootm_linux() routine is moved to
a dedicated file lib_ppc/ppc_linux.c
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_ppc/Makefile')
-rw-r--r-- | lib_ppc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib_ppc/Makefile b/lib_ppc/Makefile index 2ba034f..2aa0154 100644 --- a/lib_ppc/Makefile +++ b/lib_ppc/Makefile @@ -28,7 +28,8 @@ LIB = $(obj)lib$(ARCH).a SOBJS = ppcstring.o ticks.o COBJS = board.o \ - bat_rw.o cache.o extable.o kgdb.o time.o interrupts.o + bat_rw.o cache.o extable.o kgdb.o time.o interrupts.o \ + ppc_linux.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |