From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Mon, 24 Sep 2012 16:48:28 -0700 Subject: [U-Boot] [RFC PATCH 08/17] spl/powerpc: introduce CONFIG_SPL_INIT_MINIMAL In-Reply-To: <1348272087-29608-9-git-send-email-scottwood@freescale.com> References: <1348272087-29608-1-git-send-email-scottwood@freescale.com> <1348272087-29608-9-git-send-email-scottwood@freescale.com> Message-ID: <20120924234828.GL1797@bill-the-cat> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, Sep 21, 2012 at 07:01:18PM -0500, Scott Wood wrote: > Signed-off-by: Scott Wood [snip] > diff --git a/arch/powerpc/cpu/mpc85xx/Makefile b/arch/powerpc/cpu/mpc85xx/Makefile > index 33e93c8..c51a774 100644 > --- a/arch/powerpc/cpu/mpc85xx/Makefile > +++ b/arch/powerpc/cpu/mpc85xx/Makefile > @@ -28,7 +28,25 @@ include $(TOPDIR)/config.mk > > LIB = $(obj)lib$(CPU).o > > +MINIMAL= > + > +ifdef CONFIG_SPL_BUILD > +ifdef CONFIG_SPL_INIT_MINIMAL > +MINIMAL=y > +endif > +endif > + > +ifdef MINIMAL > + > +START = start.o resetvec.o > + > +COBJS-y += cpu_init_early.o tlb.o > +COBJS-$(CONFIG_SPL_NAND_MINIMAL) += cpu_init_nand.o > + > +else So, maybe it's just personal preference by why not: START = start.o resetvec.o ifdef CONFIG_SPL_BUILD COBJS-$(CONFIG_SPL_INIT_MINIMAL) += cpu_init_early.o tlb.o COBJS-$(CONFIG_SPL_NAND_MINIMAL) += cpu_init_nand.o else .... And break out the rest of the COBJS -> COBJS-y changes into their own cleanup patch before of course. -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: Digital signature URL: