summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/cpu/mpc8xxx/Makefile
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2012-09-20 16:35:21 -0500
committerScott Wood <scottwood@freescale.com>2012-11-26 15:41:24 -0600
commit4b919725b66152edd8c7cecc9e42864eec12c57d (patch)
tree1f22eb24bfa099955ff594b358e3915bf227d6ea /arch/powerpc/cpu/mpc8xxx/Makefile
parenta179eb0a4b2c76df388012e5bc73c43489a660e9 (diff)
downloadtalos-obmc-uboot-4b919725b66152edd8c7cecc9e42864eec12c57d.tar.gz
talos-obmc-uboot-4b919725b66152edd8c7cecc9e42864eec12c57d.zip
spl/powerpc: introduce CONFIG_SPL_INIT_MINIMAL
cpu_init_nand.c is renamed to spl_minimal.c as it is not really NAND-specific. Signed-off-by: Scott Wood <scottwood@freescale.com> --- v2: factor out START, and change cpu_init_nand.c to spl_minimal.c Cc: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc8xxx/Makefile')
-rw-r--r--arch/powerpc/cpu/mpc8xxx/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc8xxx/Makefile b/arch/powerpc/cpu/mpc8xxx/Makefile
index 86344a7b4a..3dc8e055b6 100644
--- a/arch/powerpc/cpu/mpc8xxx/Makefile
+++ b/arch/powerpc/cpu/mpc8xxx/Makefile
@@ -10,6 +10,20 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib8xxx.o
+MINIMAL=
+
+ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_SPL_INIT_MINIMAL
+MINIMAL=y
+endif
+endif
+
+ifdef MINIMAL
+
+COBJS-$(CONFIG_FSL_LAW) += law.o
+
+else
+
ifneq ($(CPU),mpc83xx)
COBJS-y += cpu.o
endif
@@ -20,6 +34,8 @@ COBJS-$(CONFIG_FSL_LBC) += fsl_lbc.o
COBJS-$(CONFIG_SYS_SRIO) += srio.o
COBJS-$(CONFIG_FSL_LAW) += law.o
+endif
+
SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
OpenPOWER on IntegriCloud