Skip to content
Snippets Groups Projects
Commit 66e6715c authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Michal Simek
Browse files

zynq: treat ps7_init.c/h as external files to ignore them


ps7_init.c and ps7_init.h are supposed to be exported by hw project
and copied to board/xilinx/zynq/ directory.

We want them to be ignored by git.
So what we should do is to always treat them as external files
rather than replacing ps7_init.c

This commit does:

 - Move a weak function ps7_init() to arch/arm/cpu/armv7/zynq/spl.c
   and delete board/xilinx/zynq/ps7_init.c

 - Compile board/xilinx/zynq/ps7_init.c only when it exists

 - Add .gitignore to ignore ps7_init.c/h

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent f05862d7
No related branches found
No related tags found
No related merge requests found
...@@ -74,3 +74,11 @@ int spl_start_uboot(void) ...@@ -74,3 +74,11 @@ int spl_start_uboot(void)
return 0; return 0;
} }
#endif #endif
__weak void ps7_init(void)
{
/*
* This function is overridden by the one in
* board/xilinx/zynq/ps7_init.c, if it exists.
*/
}
ps7_init.[ch]
...@@ -6,4 +6,7 @@ ...@@ -6,4 +6,7 @@
# #
obj-y := board.o obj-y := board.o
obj-$(CONFIG_SPL_BUILD) += ps7_init.o
# Please copy ps7_init.c/h from hw project to this directory
obj-$(CONFIG_SPL_BUILD) += \
$(if $(wildcard $(srctree)/$(src)/ps7_init.c), ps7_init.o)
/*
* (C) Copyright 2014 Xilinx, Inc. Michal Simek
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <asm/arch/spl.h>
__weak void ps7_init(void)
{
puts("Please copy ps7_init.c/h from hw project\n");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment