mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +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>
24 lines
671 B
Makefile
24 lines
671 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-$(CONFIG_$(PHASE_)BLK) += blk-uclass.o
|
|
|
|
ifndef CONFIG_$(XPL_)BLK
|
|
obj-$(CONFIG_SPL_LEGACY_BLOCK) += blk_legacy.o
|
|
endif
|
|
|
|
ifndef CONFIG_XPL_BUILD
|
|
obj-$(CONFIG_IDE) += ide.o
|
|
obj-$(CONFIG_RKMTD) += rkmtd.o
|
|
endif
|
|
obj-$(CONFIG_SANDBOX) += sandbox.o host-uclass.o host_dev.o
|
|
obj-$(CONFIG_$(PHASE_)BLOCK_CACHE) += blkcache.o
|
|
obj-$(CONFIG_$(PHASE_)BLKMAP) += blkmap.o
|
|
obj-$(CONFIG_$(PHASE_)BLKMAP) += blkmap_helper.o
|
|
|
|
obj-$(CONFIG_EFI_MEDIA) += efi-media-uclass.o
|
|
obj-$(CONFIG_EFI_MEDIA_SANDBOX) += sb_efi_media.o
|
|
obj-$(CONFIG_EFI_MEDIA_BLK) += efi_blk.o
|
|
|