X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=include%2Fimage.mk;h=5ea13589d6a5e667ab8cebc50dd64aa5e3ea9fe8;hp=6ac177d2e4c5445d32d7f13e88787a2d625bb3c5;hb=bacc63e9b7f9ef7b9576a52c95a53ff6aefa5473;hpb=7300912dc7c949f2ffc2bc098b5c4100477942ad diff --git a/include/image.mk b/include/image.mk index 6ac177d2e4..5ea13589d6 100644 --- a/include/image.mk +++ b/include/image.mk @@ -62,7 +62,7 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y) define Image/mkfs/tgz - $(TAR) -zcf $(BIN_DIR)/openwrt-$(BOARD)-rootfs.tgz --owner=root --group=root -C $(TARGET_DIR)/ . + $(TAR) -zcf $(BIN_DIR)/openwrt-$(BOARD)-rootfs.tgz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ . endef endif @@ -103,9 +103,9 @@ endif define Image/mkfs/prepare/default - find $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' | $(XARGS) chmod 0644 - find $(TARGET_DIR) -type f -perm +0100 | $(XARGS) chmod 0755 - find $(TARGET_DIR) -type d | $(XARGS) chmod 0755 + - find $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' | $(XARGS) chmod 0644 + - find $(TARGET_DIR) -type f -perm +0100 | $(XARGS) chmod 0755 + - find $(TARGET_DIR) -type d | $(XARGS) chmod 0755 $(INSTALL_DIR) $(TARGET_DIR)/tmp chmod 0777 $(TARGET_DIR)/tmp endef