瀏覽代碼

support tar verbosity

Mike Frysinger 21 年之前
父節點
當前提交
1f41bb7738
共有 2 個文件被更改,包括 9 次插入0 次删除
  1. 3 0
      Config.in
  2. 6 0
      Makefile

+ 3 - 0
Config.in

@@ -62,6 +62,9 @@ config BR2_WGET
 	string
 	default "wget --passive-ftp"
 
+config BR2_TAR_VERBOSITY
+	string
+	default "no"
 
 source "toolchain/Config.in"
 

+ 6 - 0
Makefile

@@ -35,6 +35,12 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
 -include $(TOPDIR).config
 endif
 
+ifeq ($(strip $(BR2_TAR_VERBOSITY)),"yes")
+TAR_VERBOSITY=v
+else
+TAR_VERBOSITY=
+endif
+
 ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
 
 #############################################################