[U-Boot] [PATCH] zynq: ignore ps7_init.h

Masahiro Yamada yamada.m at jp.panasonic.com
Thu May 8 11:21:22 CEST 2014


Hi Michal,

> 
> Here is just one question if we should also ignore ps7_init.c too.
> It means move current ps7_init weak function to spl.c in mach-zynq
> and just compile ps7_init.c in board file if it is available there.
> 
> Is there any nice hook in Kbuild to compile file if it is available?
> 
> Something like
> [ -f ps7_init.c ] && compile it

Nice suggestion!


> Then we can just move weak function
> and ignore ps7_init.c/h files in board file.
> 

This might not be beautiful very much, but
we can write board/xilinx/zynq/Makefile like this:

obj-y	:= board.o
obj-$(CONFIG_SPL_BUILD)	+= $(if $(wildcard $(srctree)/$(src)/ps7_init.c),ps7_init.o)



Best Regards
Masahiro Yamada



More information about the U-Boot mailing list