mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 05:06:39 +00:00
support tar verbosity
This commit is contained in:
parent
dfca4ee6ae
commit
1f41bb7738
@ -62,6 +62,9 @@ config BR2_WGET
|
|||||||
string
|
string
|
||||||
default "wget --passive-ftp"
|
default "wget --passive-ftp"
|
||||||
|
|
||||||
|
config BR2_TAR_VERBOSITY
|
||||||
|
string
|
||||||
|
default "no"
|
||||||
|
|
||||||
source "toolchain/Config.in"
|
source "toolchain/Config.in"
|
||||||
|
|
||||||
|
6
Makefile
6
Makefile
@ -35,6 +35,12 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
|
|||||||
-include $(TOPDIR).config
|
-include $(TOPDIR).config
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_TAR_VERBOSITY)),"yes")
|
||||||
|
TAR_VERBOSITY=v
|
||||||
|
else
|
||||||
|
TAR_VERBOSITY=
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user