mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 07:17:10 +00:00

Use PHASE_ as the symbol to select a particular XPL build. This means that SPL_TPL_ is no-longer set. Update the comment in bootstage to refer to this symbol, instead of SPL_ Signed-off-by: Simon Glass <sjg@chromium.org>
19 lines
403 B
Makefile
19 lines
403 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y += \
|
|
fdt.o \
|
|
fdt_ro.o \
|
|
fdt_wip.o \
|
|
fdt_strerror.o \
|
|
fdt_sw.o \
|
|
fdt_rw.o \
|
|
fdt_empty_tree.o \
|
|
fdt_addresses.o
|
|
|
|
obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o
|
|
|
|
ccflags-y := -I$(srctree)/scripts/dtc/libfdt \
|
|
-DFDT_ASSUME_MASK=$(CONFIG_$(PHASE_)OF_LIBFDT_ASSUME_MASK)
|