mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-21 11:35:33 +00:00
fix potential rootfs owner/group mismatch (tgz root only, patch from #4562)
SVN-Revision: 14569
This commit is contained in:
parent
062456ec4c
commit
6b6c8fd100
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user