mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-03-28 09:11:48 +01:00
Richard Genoud <richard.genoud@bootlin.com> says: SquashFS has support in U-Boot, but not in SPL. This series adds the possibility for the SPL to load files from SquashFS partitions. This is useful, for instance, when there's a SquashFS rootfs containing U-Boot binary. NB: falcon mode is not supported yet. Link: https://lore.kernel.org/r/20260313104229.1555236-1-richard.genoud@bootlin.com
45 lines
1.7 KiB
Makefile
45 lines
1.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2012
|
|
# Texas Instruments Incorporated - https://www.ti.com/
|
|
# Aneesh V <aneesh@ti.com>
|
|
# Based on common/Makefile.
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-$(CONFIG_$(PHASE_)FRAMEWORK) += spl.o
|
|
obj-$(CONFIG_$(PHASE_)BOOTROM_SUPPORT) += spl_bootrom.o
|
|
obj-$(CONFIG_$(PHASE_)LOAD_FIT) += spl_fit.o
|
|
obj-$(CONFIG_$(PHASE_)BLK_FS) += spl_blk_fs.o
|
|
obj-$(CONFIG_$(PHASE_)LEGACY_IMAGE_FORMAT) += spl_legacy.o
|
|
obj-$(CONFIG_$(PHASE_)RELOC_LOADER) += spl_reloc.o
|
|
obj-$(CONFIG_$(PHASE_)NOR_SUPPORT) += spl_nor.o
|
|
obj-$(CONFIG_$(PHASE_)XIP_SUPPORT) += spl_xip.o
|
|
obj-$(CONFIG_$(PHASE_)YMODEM_SUPPORT) += spl_ymodem.o
|
|
ifndef CONFIG_SPL_UBI
|
|
obj-$(CONFIG_$(PHASE_)NAND_SUPPORT) += spl_nand.o
|
|
obj-$(CONFIG_$(PHASE_)ONENAND_SUPPORT) += spl_onenand.o
|
|
endif
|
|
obj-$(CONFIG_$(PHASE_)UBI) += spl_ubi.o
|
|
obj-$(CONFIG_$(PHASE_)NET) += spl_net.o
|
|
obj-$(CONFIG_$(PHASE_)MMC) += spl_mmc.o
|
|
obj-$(CONFIG_$(PHASE_)ATF) += spl_atf.o
|
|
obj-$(CONFIG_$(PHASE_)OPTEE_IMAGE) += spl_optee.o
|
|
obj-$(CONFIG_$(PHASE_)OPENSBI) += spl_opensbi.o
|
|
obj-$(CONFIG_$(PHASE_)USB_STORAGE) += spl_usb.o
|
|
obj-$(CONFIG_$(PHASE_)FS_FAT) += spl_fat.o
|
|
obj-$(CONFIG_$(PHASE_)FS_EXT4) += spl_ext.o
|
|
obj-$(CONFIG_$(PHASE_)FS_SQUASHFS) += spl_squashfs.o
|
|
obj-$(CONFIG_$(PHASE_)LOAD_IMX_CONTAINER) += spl_imx_container.o
|
|
obj-$(CONFIG_$(PHASE_)SATA) += spl_sata.o
|
|
obj-$(CONFIG_$(PHASE_)NVME) += spl_nvme.o
|
|
obj-$(CONFIG_$(PHASE_)SEMIHOSTING) += spl_semihosting.o
|
|
obj-$(CONFIG_$(PHASE_)DFU) += spl_dfu.o
|
|
obj-$(CONFIG_$(PHASE_)SPI_LOAD) += spl_spi.o
|
|
obj-$(CONFIG_$(PHASE_)RAM_SUPPORT) += spl_ram.o
|
|
obj-$(CONFIG_$(PHASE_)USB_SDP_SUPPORT) += spl_sdp.o
|
|
obj-$(CONFIG_$(PHASE_)UFS_SUPPORT) += spl_ufs.o
|
|
endif
|
|
|
|
obj-$(CONFIG_$(PHASE_)UPL) += spl_upl.o
|