| #
290f1f99 |
| 30-Oct-2014 |
Soren Brinkmann <soren.brinkmann@xilinx.com> |
zynq: Use GPLed files for SPL
The latest Xilinx tools generate ps7_init files that are explicitly available under GPL. Change the makefile to allow drop in of those files for building the SPL.
Sign
zynq: Use GPLed files for SPL
The latest Xilinx tools generate ps7_init files that are explicitly available under GPL. Change the makefile to allow drop in of those files for building the SPL.
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Acked-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com> Reviewed-and-tested-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
f05862d7 |
| 08-May-2014 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
zynq: add empty xil_io.h to avoid compile error
ps7_init.c exported by hw project has #include "xil_io.h" line but U-Boot does not have "xil_io.h".
So we get an error on SPL build: ps7_init.c:125
zynq: add empty xil_io.h to avoid compile error
ps7_init.c exported by hw project has #include "xil_io.h" line but U-Boot does not have "xil_io.h".
So we get an error on SPL build: ps7_init.c:12581:20: fatal error: xil_io.h: No such file or directory
We can delete the include directive in ps7_init.c to avoid this error. But it is painful to do this every time we export ps7_init.c file.
Instead, we can put an empty xil_io.h in the same directory so we can directly copy ps7_init.c as is.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Tom Rini <trini@ti.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|