From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sughosh Ganu Date: Tue, 10 Jan 2012 12:00:41 +0530 Subject: [U-Boot] [PATCH 2/2] Changes to move hawkboard to the new infrastructure. In-Reply-To: <4F0B78B0.6070504@ti.com> References: <1326133729-6760-1-git-send-email-urwithsughosh@gmail.com> <4F0B78B0.6070504@ti.com> Message-ID: <20120110063041.GB7838@Hardy> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon Jan 09, 2012 at 04:30:56PM -0700, Tom Rini wrote: > On 01/09/2012 11:28 AM, Sughosh Ganu wrote: > > --- a/arch/arm/cpu/arm926ejs/davinci/Makefile > > +++ b/arch/arm/cpu/arm926ejs/davinci/Makefile > > @@ -38,8 +38,11 @@ COBJS-$(CONFIG_DRIVER_TI_EMAC) += lxt972.o dp83848.o et1011c.o ksz8873.o > > > > ifdef CONFIG_SPL_BUILD > > COBJS-y += spl.o > > -COBJS-$(CONFIG_SOC_DM365) += dm365_lowlevel.o > > -COBJS-$(CONFIG_SOC_DA8XX) += da850_lowlevel.o > > +COBJS-$(CONFIG_DM365_SPL) += dm365_lowlevel.o > > +COBJS-$(CONFIG_DM365_SPL) += dm365_spl.o > > +COBJS-$(CONFIG_DA850EVM_SPL) += da850_lowlevel.o > > +COBJS-$(CONFIG_DA850EVM_SPL) += da850_spl.o > > +COBJS-$(CONFIG_HAWKBOARD_SPL) += hawkboard_nand_spl.o > > endif > > CONFIG_SPL_BUILD means we'll only do this on the SPL build, not the > normal build, and we already have symbols for the board and the SoC so > we shouldn't need any new CONFIG symbols here, I'm pretty sure. The problem here is that both da850evm and hawkboard define the CONFIG_SOC_DA850, and CONFIG_SOC_DA8XX, as the hawkboard shares code like pinmux with the da850. I see a CONFIG_MACH_DAVINCI_* like define in da850evm.h and hawkboard.h. Should i add a similar define for cam_enc_4xx, and use these instead. -sughosh