On Sat, Nov 21, 2015 at 10:56 AM, Bharath R <[email protected]> wrote: > Hi Robert, > > Thanks for the reply. I didn't know files under arch/arm/cpu/armv7/ are > generic files for all controllers with A7 architecture.
Always look into the makefile: http://git.denx.de/?p=u-boot.git;a=blob;f=arch/arm/cpu/armv7/Makefile;hb=HEAD These are generic: extra-y := start.o obj-y += cache_v7.o obj-y += cpu.o cp15.o obj-y += syslib.o Then the am335x: obj-$(if $(filter am33xx,$(SOC)),y) += am33xx/ get's added. Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
