diff options
| author | Tom Rini <[email protected]> | 2026-03-26 11:04:41 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-26 11:04:41 -0600 |
| commit | 80a4c49a4ab2ad06fa84a8b7bdf6e33b3b5101bf (patch) | |
| tree | 94041e641b12a66eef8c35d991d83fb05409d698 /common/spl/Makefile | |
| parent | 5673d25fd82a00eb5a2bf5761b3aa92de0e9e4e1 (diff) | |
| parent | 868233099d873cc8e2f8b99f609bdbaed421eab7 (diff) | |
Merge patch series "Introduce SQUASHFS support in SPL"
Richard Genoud <[email protected]> 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/[email protected]
Diffstat (limited to 'common/spl/Makefile')
| -rw-r--r-- | common/spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile index e18f3cf0948..9c94e8f143e 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -29,6 +29,7 @@ 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 |
