1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-17 04:33:57 +02:00

imagebuilder: make submake invocations less verbose

Use silent make invocations for sub-makes like build_image or checksum to
avoid bloating the IB output with non-status info.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 0d1765b4ba)
This commit is contained in:
Jo-Philipp Wich 2016-08-01 18:26:05 +02:00
parent bdb05f5ef5
commit 1d0f7e3136

View File

@ -123,9 +123,9 @@ _call_image: staging_dir/host/.prereq-build
ifneq ($(USER_FILES),) ifneq ($(USER_FILES),)
$(MAKE) copy_files $(MAKE) copy_files
endif endif
$(MAKE) package_postinst $(MAKE) -s package_postinst
$(MAKE) build_image $(MAKE) -s build_image
$(MAKE) checksum $(MAKE) -s checksum
package_index: FORCE package_index: FORCE
@echo @echo
@ -194,7 +194,7 @@ ifneq ($(PROFILE),)
endif endif
endif endif
(unset PROFILE FILES PACKAGES MAKEFLAGS; \ (unset PROFILE FILES PACKAGES MAKEFLAGS; \
$(MAKE) _call_image \ $(MAKE) -s _call_image \
$(if $(PROFILE),USER_PROFILE="$(PROFILE_FILTER)") \ $(if $(PROFILE),USER_PROFILE="$(PROFILE_FILTER)") \
$(if $(FILES),USER_FILES="$(FILES)") \ $(if $(FILES),USER_FILES="$(FILES)") \
$(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)") \ $(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)") \