diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2009-10-26 21:18:33 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2009-10-26 21:19:22 -0500 | 
| commit | e8967d96a0e8d09d91a3b7bd292746996dd8e7ac (patch) | |
| tree | 46d5e254b4c82419258ca278db1991d6ab2a946f | |
| parent | f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f (diff) | |
| download | olio-uboot-2014.01-e8967d96a0e8d09d91a3b7bd292746996dd8e7ac.tar.xz olio-uboot-2014.01-e8967d96a0e8d09d91a3b7bd292746996dd8e7ac.zip | |
ppc/85xx: Fix building NAND_SPL out of tree
We need to source files to exist in the O=<FOO> nand_spl dir when
we build out of tree.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | nand_spl/board/freescale/mpc8536ds/Makefile | 6 | ||||
| -rw-r--r-- | nand_spl/board/freescale/p1_p2_rdb/Makefile | 6 | 
2 files changed, 12 insertions, 0 deletions
| diff --git a/nand_spl/board/freescale/mpc8536ds/Makefile b/nand_spl/board/freescale/mpc8536ds/Makefile index 1d5e31983..7ed9d619d 100644 --- a/nand_spl/board/freescale/mpc8536ds/Makefile +++ b/nand_spl/board/freescale/mpc8536ds/Makefile @@ -111,6 +111,12 @@ $(obj)tlb_table.c:  	@rm -f $(obj)tlb_table.c  	ln -sf $(SRCTREE)/board/$(BOARDDIR)/tlb.c $(obj)tlb_table.c +ifneq ($(OBJTREE), $(SRCTREE)) +$(obj)nand_boot.c: +	@rm -f $(obj)nand_boot.c +	ln -s $(SRCTREE)/nand_spl/board/$(BOARDDIR)/nand_boot.c $(obj)nand_boot.c +endif +  #########################################################################  $(obj)%.o:	$(obj)%.S diff --git a/nand_spl/board/freescale/p1_p2_rdb/Makefile b/nand_spl/board/freescale/p1_p2_rdb/Makefile index 1d5e31983..7ed9d619d 100644 --- a/nand_spl/board/freescale/p1_p2_rdb/Makefile +++ b/nand_spl/board/freescale/p1_p2_rdb/Makefile @@ -111,6 +111,12 @@ $(obj)tlb_table.c:  	@rm -f $(obj)tlb_table.c  	ln -sf $(SRCTREE)/board/$(BOARDDIR)/tlb.c $(obj)tlb_table.c +ifneq ($(OBJTREE), $(SRCTREE)) +$(obj)nand_boot.c: +	@rm -f $(obj)nand_boot.c +	ln -s $(SRCTREE)/nand_spl/board/$(BOARDDIR)/nand_boot.c $(obj)nand_boot.c +endif +  #########################################################################  $(obj)%.o:	$(obj)%.S |