summaryrefslogtreecommitdiff
path: root/nand_spl/board/freescale/p1010rdb/Makefile
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2012-08-17 19:46:29 -0500
committerScott Wood <scottwood@freescale.com>2012-11-26 15:41:23 -0600
commit59629c2897eb84c4550cf95b49e0761fbd23cef0 (patch)
tree31bbee2f241b769b32821a5040c4c4fcbbe8eb37 /nand_spl/board/freescale/p1010rdb/Makefile
parent8bc50f0b6d376c0d6280c9de625f04368892f4b4 (diff)
spl/mpc85xx: move udelay to cpu code
It applies to non-Freescale 85xx boards as well as Freescale boards, so it doesn't belong in board/freescale. Plus, it needs to come out of nand_spl if it's to be used by the new SPL. Signed-off-by: Scott Wood <scottwood@freescale.com> Cc: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'nand_spl/board/freescale/p1010rdb/Makefile')
-rw-r--r--nand_spl/board/freescale/p1010rdb/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/nand_spl/board/freescale/p1010rdb/Makefile b/nand_spl/board/freescale/p1010rdb/Makefile
index c6c3c745ec..acf7577d5c 100644
--- a/nand_spl/board/freescale/p1010rdb/Makefile
+++ b/nand_spl/board/freescale/p1010rdb/Makefile
@@ -40,8 +40,7 @@ CFLAGS += -DCONFIG_NAND_SPL
SOBJS = start.o resetvec.o ticks.o
COBJS = cache.o cpu_init_early.o cpu_init_nand.o fsl_law.o law.o \
- nand_boot.o nand_boot_fsl_ifc.o ns16550.o tlb.o tlb_table.o \
- ../common.o
+ nand_boot.o nand_boot_fsl_ifc.o ns16550.o tlb.o tlb_table.o
SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
@@ -130,9 +129,6 @@ 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
-$(obj)../common.c:
- @rm -f $(obj)../common.c
- ln -s $(SRCTREE)/nand_spl/board/freescale/common.c $(obj)../common.c
endif
#########################################################################