mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
d7e269cfbd
SPL is using ps7_init.c/h files which are generated from design tools which have to be copied to boards/xilinx/zynq folder before compilation. BSS section is moved to SDRAM because fat support requires more space than SRAM size. Added: - MMC and QSPI support - Boot OS directly from SPL - Enable SPL command Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Tom Rini <trini@ti.com>
16 lines
324 B
Makefile
16 lines
324 B
Makefile
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2008
|
|
# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := timer.o
|
|
obj-y += cpu.o
|
|
obj-y += ddrc.o
|
|
obj-y += slcr.o
|
|
obj-y += clk.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|