d1a2c0ed3c
When that was added (in 975e30b, fs/squashfs: fix image file permissions), the reasons were not quite explicit. We are now forcing the umask, and various tests have shown that the mode on the generated image file are correct without the chmod. Remove it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <peter@korsgaard.com> Acked-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
813 B
Makefile
33 lines
813 B
Makefile
################################################################################
|
|
#
|
|
# Build the squashfs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZ4),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lz4 -Xhc
|
|
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
|
|
ROOTFS_SQUASHFS_ARGS += -comp gzip
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
define ROOTFS_SQUASHFS_CMD
|
|
$(HOST_DIR)/usr/bin/mksquashfs $(TARGET_DIR) $@ -noappend \
|
|
$(ROOTFS_SQUASHFS_ARGS)
|
|
endef
|
|
|
|
$(eval $(call ROOTFS_TARGET,squashfs))
|