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>
18 lines
550 B
Makefile
18 lines
550 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2010,2011 Nvidia Corporation.
|
|
|
|
obj-$(CONFIG_XPL_BUILD) += cpu.o
|
|
obj-$(CONFIG_$(XPL_)CMD_EBTUPDATE) += bct.o
|
|
|
|
# The AVP is ARMv4T architecture so we must use special compiler
|
|
# flags for any startup files it might use.
|
|
CFLAGS_warmboot_avp.o = -march=armv4t -U__LINUX_ARM_ARCH__ \
|
|
-D__LINUX_ARM_ARCH__=4
|
|
CFLAGS_REMOVE_warmboot_avp.o := $(LTO_CFLAGS)
|
|
|
|
obj-y += clock.o
|
|
obj-$(CONFIG_TEGRA_LP0) += warmboot.o warmboot_avp.o
|
|
obj-$(CONFIG_TEGRA_CLOCK_SCALING) += emc.o
|
|
obj-$(CONFIG_TEGRA_PMU) += pmu.o
|