summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2016-06-06 22:43:44 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-06-07 22:21:29 +0200
commitd1a2c0ed3c73ea37b506eae0edbbabdb366c2d5f (patch)
tree47e992336cfe27e0b994f0891b52ae43b94eae27 /fs
parent9ad600466ce8c1928f87bceb779aa03c565c09eb (diff)
fs/squashfs: remove useless chmod
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/squashfs/squashfs.mk1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/squashfs/squashfs.mk b/fs/squashfs/squashfs.mk
index eadbb8fe8..c4d9ca50b 100644
--- a/fs/squashfs/squashfs.mk
+++ b/fs/squashfs/squashfs.mk
@@ -27,7 +27,6 @@ endif
define ROOTFS_SQUASHFS_CMD
$(HOST_DIR)/usr/bin/mksquashfs $(TARGET_DIR) $@ -noappend \
$(ROOTFS_SQUASHFS_ARGS)
- chmod 0644 $@
endef
$(eval $(call ROOTFS_TARGET,squashfs))