浏览代码

do not use --owner=root or --group=root when running tar. it does not work on systems that name their root group differently

SVN-Revision: 14995
Felix Fietkau 16 年之前
父节点
当前提交
e05f4e46d9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      target/linux/ixp4xx/image/Makefile

+ 1 - 1
target/linux/ixp4xx/image/Makefile

@@ -26,7 +26,7 @@ define Image/Build/Freecom
 	$(CP) $(BIN_DIR)/openwrt-$(2)-zImage $(TARGET_DIR)/zImage
 	rm -rf $(TARGET_DIR)/{var,jffs,rom}
 	$(INSTALL_DIR) $(TARGET_DIR)/var
-	$(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --owner=root --group=root -C $(TARGET_DIR)/ .
+	$(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
 	$(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img
 endef