From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann E. MORIN Date: Mon, 6 Jun 2016 22:43:44 +0200 Subject: [Buildroot] [PATCH 7/7] fs/squashfs: remove useless chmod In-Reply-To: References: Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net 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" Cc: Peter Korsgaard --- fs/squashfs/squashfs.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/squashfs/squashfs.mk b/fs/squashfs/squashfs.mk index eadbb8f..c4d9ca5 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)) -- 2.7.4