
On 05/08/2014 10:13 AM, Masahiro Yamada wrote:
ps_init.h should be ignored because it is supposed to be copied from an external project.
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com Cc: Michal Simek michal.simek@xilinx.com
board/xilinx/zynq/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 board/xilinx/zynq/.gitignore
diff --git a/board/xilinx/zynq/.gitignore b/board/xilinx/zynq/.gitignore new file mode 100644 index 0000000..5255763 --- /dev/null +++ b/board/xilinx/zynq/.gitignore @@ -0,0 +1 @@ +ps7_init.h
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
Then we can just move weak function and ignore ps7_init.c/h files in board file.
Thanks, Michal