]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
zynq: treat ps7_init.c/h as external files to ignore them
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Mon, 12 May 2014 03:18:30 +0000 (12:18 +0900)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 14 May 2014 05:52:46 +0000 (07:52 +0200)
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: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/arm/cpu/armv7/zynq/spl.c
board/xilinx/zynq/.gitignore [new file with mode: 0644]
board/xilinx/zynq/Makefile
board/xilinx/zynq/ps7_init.c [deleted file]

index c3ea221549ffdcd4d6df2a95d03d12d1baff20f0..d73e5cbaa745a23c74b511fa866d3e51096f4db6 100644 (file)
@@ -74,3 +74,11 @@ int spl_start_uboot(void)
        return 0;
 }
 #endif
+
+__weak void ps7_init(void)
+{
+       /*
+        * This function is overridden by the one in
+        * board/xilinx/zynq/ps7_init.c, if it exists.
+        */
+}
diff --git a/board/xilinx/zynq/.gitignore b/board/xilinx/zynq/.gitignore
new file mode 100644 (file)
index 0000000..68b8edd
--- /dev/null
@@ -0,0 +1 @@
+ps7_init.[ch]
index 3f19a1cd8b23d281cacb5f3a823f8e899fc79457..fd93f6317baf22b44fde522dd7db83d50755e9be 100644 (file)
@@ -6,4 +6,7 @@
 #
 
 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)
diff --git a/board/xilinx/zynq/ps7_init.c b/board/xilinx/zynq/ps7_init.c
deleted file mode 100644 (file)
index c47da09..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- * (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");
-}