From patchwork Thu Jun 16 22:01:09 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 13938 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 12E7BCB2E; Fri, 17 Jun 2016 00:01:18 +0200 (CEST) Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 52110C6D4 for ; Fri, 17 Jun 2016 00:01:17 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id m124so87809868wme.1 for ; Thu, 16 Jun 2016 15:01:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=zfZJCFhBriT2ahkOEreQ2tuR4iCmUMahaTAzGRbrdO0=; b=feg9sMGreBhpVf2QtrhQUuvOFxTUtXr+i0kOmSx1krLx4KQWnJX1TJCRzTbzpmGbhQ EX1LQLOnfKs3K4LgdbfjiA1uMlSUanRlNBQg3pqVW2PVEqnIYYVyV5DkF+a7RBOHdCzJ yHh1JY4r+bkQDgaX5ayGKPZGySMT9kfO5juHvT86icRkqUuX/EhpyDH1ybp72hsGAdfX 7sj6+7+/nAb20pFeZ6LP1witrIleHDlg+VThbfYcw+FYkjijbRWxhCdYYZKEF3KcC2q7 26lOiwCgXIxy3J1L02FodTlUpXNIG5aM7L2tUol/1UIqG2RaB5rOu9fitDVBrE/hE12Y JFgw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=zfZJCFhBriT2ahkOEreQ2tuR4iCmUMahaTAzGRbrdO0=; b=Rf5bRHIBfrEj9to6G8BBi5uD5JBS5nDvMuArCuFKXR19S7bq8S498h86P7NtasBj4T Jd4bo0NyNU0l7tRw1lOoN98HOfMlafJKR54eH5ClGtQvTVDylQnWfHunua0U6miUTZ7t FbdEt543HjQ8rwOF/d/MS6YWlDgzu0HgjmtcgFJYXgTA9AwWTdGokFipMRy/jEAcgDhL ofxL7+1/OuZGncNSDYPimwCjeCqMCGzyTJZyttoMQAmKmOZs1qPVl0RF6D2o55dTLNtE UmlCRjGrn/uj+1K/L7UpW7ZYxpZcCQG0dVIx2s+jSCujgVJB2vevw1teqFDxHIS9Q4pi kJNw== X-Gm-Message-State: ALyK8tJIKfuu+VGV+X5de/m2xlg3xR5mPOf8KnM8gB8ue/ZbpYzN1uGB5OsLdrx4Z/s1xMRa X-Received: by 10.28.136.200 with SMTP id k191mr16968211wmd.57.1466114476851; Thu, 16 Jun 2016 15:01:16 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id g10sm23710965wjl.25.2016.06.16.15.01.15 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Jun 2016 15:01:15 -0700 (PDT) From: Thomas Monjalon To: Jan Viktorin Cc: dev@dpdk.org Date: Fri, 17 Jun 2016 00:01:09 +0200 Message-Id: <1466114469-22789-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] mk: mute build of test resources X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The objcopy and tar commands were printed even in quiet mode. They are now replaced by a simple line and still visible in verbose mode. Fixes: ab64f5df8004 ("app/test: support resources externally linked") Fixes: 66819e6c11d8 ("app/test: support resources archived by tar") Signed-off-by: Thomas Monjalon Acked-by: Bruce Richardson --- app/test/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/test/Makefile b/app/test/Makefile index 053f3a2..5e3ebdc 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -42,7 +42,8 @@ ifeq ($(CONFIG_RTE_APP_TEST),y) define linked_resource SRCS-y += $(1).res.o $(1).res.o: $(2) - $(OBJCOPY) -I binary -B $(RTE_OBJCOPY_ARCH) -O $(RTE_OBJCOPY_TARGET) \ + @ echo ' MKRES $$@' + $Q $(OBJCOPY) -I binary -B $(RTE_OBJCOPY_ARCH) -O $(RTE_OBJCOPY_TARGET) \ --rename-section \ .data=.rodata,alloc,load,data,contents,readonly \ --redefine-sym _binary__dev_stdin_start=beg_$(1) \ @@ -54,7 +55,8 @@ endef ifeq ($(CONFIG_RTE_APP_TEST_RESOURCE_TAR),y) define linked_tar_resource $(1).tar: $(2) - tar -C $$(dir $$<) -cf $$@ $$(notdir $$<) + @ echo ' TAR $$@' + $Q tar -C $$(dir $$<) -cf $$@ $$(notdir $$<) $(call linked_resource,$(1),$(1).tar) endef else # ! CONFIG_RTE_APP_TEST_RESOURCE_TAR