mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
Use XPL_ as the symbol to indicate an SPL build. This means that SPL_ is no-longer set. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
436 B
Makefile
15 lines
436 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2014 - 2015 Xilinx, Inc.
|
|
# Michal Simek <michal.simek@amd.com>
|
|
|
|
obj-y += aes.o clk.o cpu.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_XPL_BUILD) += spl.o handoff.o psu_spl_init.o
|
|
obj-$(CONFIG_SPL_ZYNQMP_DRAM_ECC_INIT) += ecc_spl_init.o
|
|
obj-$(CONFIG_$(XPL_)ZYNQMP_PSU_INIT_ENABLED) += psu_spl_init.o
|
|
|
|
ifndef CONFIG_XPL_BUILD
|
|
obj-$(CONFIG_CMD_ZYNQMP) += zynqmp.o
|
|
endif # !CONFIG_XPL_BUILD
|