Devices with large amounts of flash but operating in connectivity- constrained areas can benefit from using uncompressed images as this allows delta updates using binary diff algorithms. Connectivity-constrained areas in this context are defined as areas where the connection is very slow, unstable, etcetera, where it is difficult to transfer data in large scale. Add a "none" option to the compression menu and map it to the mksquashfs -no-compression flag to enable this feature. Disable the ability to select extreme compression in this case as that makes absolutely no sense combined with no compression. Signed-off-by: John Ernberg <john.ernberg@actia.se> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# Build the squashfs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs
|
|
|
|
ROOTFS_SQUASHFS_ARGS = \
|
|
-noappend \
|
|
-processors $(PARALLEL_JOBS) \
|
|
-b $(call qstrip,$(BR2_TARGET_ROOTFS_SQUASHFS_BS)) \
|
|
$(call qstrip,$(BR2_TARGET_ROOTFS_SQUASHFS_COMP_OPTS))
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_PAD),)
|
|
ROOTFS_SQUASHFS_ARGS += -nopad
|
|
endif
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZ4),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lz4
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZO),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lzo
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZMA),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lzma
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_XZ),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp xz
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_ZSTD),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp zstd
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_NONE),y)
|
|
ROOTFS_SQUASHFS_ARGS += -no-compression
|
|
else
|
|
ROOTFS_SQUASHFS_ARGS += -comp gzip
|
|
endif
|
|
|
|
define ROOTFS_SQUASHFS_CMD
|
|
$(HOST_DIR)/bin/mksquashfs $(TARGET_DIR) $@ $(ROOTFS_SQUASHFS_ARGS)
|
|
endef
|
|
|
|
$(eval $(rootfs))
|