From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751569AbdKHJBm (ORCPT ); Wed, 8 Nov 2017 04:01:42 -0500 Received: from mail-wr0-f174.google.com ([209.85.128.174]:48521 "EHLO mail-wr0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750777AbdKHJBl (ORCPT ); Wed, 8 Nov 2017 04:01:41 -0500 X-Google-Smtp-Source: ABhQp+RcxpemSKgYRFgnkBW/xBCfmy/S4SpOoakWSmIIHEDZMBaI2Oy8n1+WuhF1dedCBWG406TkjA== Date: Wed, 8 Nov 2017 10:01:37 +0100 From: Ingo Molnar To: changbin.du@intel.com Cc: mingo@redhat.com, hpa@zytor.com, tglx@linutronix.de, x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] x86, build: Make genimage.sh little more quite Message-ID: <20171108090137.teoamhy6obm7h2q6@gmail.com> References: <1510129366-18314-1-git-send-email-changbin.du@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1510129366-18314-1-git-send-email-changbin.du@intel.com> User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * changbin.du@intel.com wrote: > From: Changbin Du > > This change suppresses the 'dd' output and adds '-quite' parameter > to mkisofs tool. None of the messages matter to the user. Now: > > $ make isoimage > ... > Kernel: arch/x86/boot/bzImage is ready (#75) > GENIMAGE arch/x86/boot/image.iso > Using /usr/lib/ISOLINUX/isolinux.bin > Using /usr/lib/syslinux/modules/bios/ldlinux.c32 > Kernel: arch/x86/boot/image.iso is ready Could you please also remove the other unnecessary lines as well, from the default build log: > Using /usr/lib/ISOLINUX/isolinux.bin > Using /usr/lib/syslinux/modules/bios/ldlinux.c32 > Kernel: arch/x86/boot/image.iso is ready The build process is using a ton of files and we don't list them. Maybe print them when V=1, but not by default. The only lines printed should be: > Kernel: arch/x86/boot/bzImage is ready (#75) > GENIMAGE arch/x86/boot/image.iso Users are totally not interested in the details. They want to see a single line of output about which file is being built, but that's it. Thanks, Ingo