diff options
| author | Stefan Roese <sr@denx.de> | 2007-06-01 15:29:04 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-06-01 15:29:04 +0200 | 
| commit | 9d9096043e8f713d4bf1743d32e1459e6a11644b (patch) | |
| tree | 27d8f360f76b6de1ecee420c73470e1c93cfb7b6 /nand_spl/board/amcc | |
| parent | cf959c7d6687567c308e366e9581e1a5aff5cc5b (diff) | |
| download | olio-uboot-2014.01-9d9096043e8f713d4bf1743d32e1459e6a11644b.tar.xz olio-uboot-2014.01-9d9096043e8f713d4bf1743d32e1459e6a11644b.zip | |
ppc4xx: Update Sequoia NAND booting support with ECC
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'nand_spl/board/amcc')
| -rw-r--r-- | nand_spl/board/amcc/sequoia/Makefile | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/nand_spl/board/amcc/sequoia/Makefile b/nand_spl/board/amcc/sequoia/Makefile index 510999db0..ce39032a9 100644 --- a/nand_spl/board/amcc/sequoia/Makefile +++ b/nand_spl/board/amcc/sequoia/Makefile @@ -30,7 +30,7 @@ AFLAGS	+= -DCONFIG_NAND_SPL  CFLAGS	+= -DCONFIG_NAND_SPL  SOBJS	= start.o init.o resetvec.o -COBJS	= nand_boot.o ndfc.o sdram.o speed.o +COBJS	= nand_boot.o nand_ecc.o ndfc.o sdram.o  SRCS	:= $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))  OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS)) @@ -69,10 +69,6 @@ $(obj)start.S:  	@rm -f $(obj)start.S  	ln -s $(SRCTREE)/cpu/ppc4xx/start.S $(obj)start.S -$(obj)speed.c: -	@rm -f $(obj)speed.c -	ln -s $(SRCTREE)/cpu/ppc4xx/speed.c $(obj)speed.c -  # from board directory  $(obj)init.S:  	@rm -f $(obj)init.S @@ -89,6 +85,11 @@ $(obj)nand_boot.c:  	@rm -f $(obj)nand_boot.c  	ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c +# from drivers/nand directory +$(obj)nand_ecc.c: +	@rm -f $(obj)nand_ecc.c +	ln -s $(SRCTREE)/drivers/nand/nand_ecc.c $(obj)nand_ecc.c +  #########################################################################  $(obj)%.o:	$(obj)%.S |