Received: by 2002:a25:c593:0:0:0:0:0 with SMTP id v141csp1016358ybe; Thu, 19 Sep 2019 07:25:53 -0700 (PDT) X-Google-Smtp-Source: APXvYqzPKvc1frfSi2kDCQsExgayyq+4E0mqczV1c/w69uyFCKzsPsD3z2CvmKWCSsyuRPuNQILE X-Received: by 2002:a17:906:ecf9:: with SMTP id qt25mr14297124ejb.249.1568903153473; Thu, 19 Sep 2019 07:25:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568903153; cv=none; d=google.com; s=arc-20160816; b=uclZQOZAdNvU9KL37jutZj6Kjk80ec8IxkIFT/3RwJV83M6/tij3z46QVGnLEpZjsC 1JvdkxLdrKr1augo83qAQxnwcTHwO/y9hOIMwNJh+6TpPMyI7jWDbmJyAoXaYaokUZaD X4W53oWq1/XOoCnxTnuv1MrxH7gu8IPbgm6CIZQdqRTo06Oo596B8N7t+THGIiCC8a2w 2/7aFtfrHMhngcZGo3dTyfTRUuTjvUrwgXOE4aoSeV2ueR/1BkdHICrWXgcF0JKfKF/V ZyovPluthAizIpWIACQQIlPmwe2o0kuVqqlB99ahy8FmUZegYRAoGGcqIFotFSJP7kvR Poqg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:message-id:subject:cc:from:to :in-reply-to; bh=fTkVVbGuSzw249H3fvduNbQISJ7kGd5/TRPeYSGyWis=; b=p7zb3kE4N8nGjqkDwxRT9zvdwRCsJOosT/mvpqxZuMJ55RmXYdgiwTofdLj1MvSXN7 lNgvnIMsj5w557pJqOONfYG47xPY/47PrC02oaugh1fcXSYGY3SeAiMIH0sWLQ3LP9+y P4PRwRa2NYaJNznlHzqOgVSMYV8qDBdUwOIxj97agfFJUkIfBHhRtnkIuV86GaLkYSn8 U9vKLVdc2FzdN2wJbEGYcnOIk39yiX/5die24kM4Uak2cg6sgGaqbAzUuM68RazHBGn1 sba3/cMFoXL8YRmEVdVFoZTg1zt4hMG2A/zShgmMumLRImkdpmJl7/RnJSUbWWhV1r0D CPsw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l12si6027197edk.444.2019.09.19.07.25.30; Thu, 19 Sep 2019 07:25:53 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389350AbfISK0J (ORCPT + 99 others); Thu, 19 Sep 2019 06:26:09 -0400 Received: from bilbo.ozlabs.org ([203.11.71.1]:39329 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389338AbfISK0F (ORCPT ); Thu, 19 Sep 2019 06:26:05 -0400 Received: by ozlabs.org (Postfix, from userid 1034) id 46YtKk2RyPz9sPf; Thu, 19 Sep 2019 20:26:02 +1000 (AEST) X-powerpc-patch-notification: thanks X-powerpc-patch-commit: 1fdfa4c6af0cc1854b017f308af6bece94568bb6 In-Reply-To: <20190912074037.13813-1-yamada.masahiro@socionext.com> To: Masahiro Yamada , linuxppc-dev@lists.ozlabs.org From: Michael Ellerman Cc: Alexey Kardashevskiy , linux-kernel@vger.kernel.org, Nicholas Piggin , Masahiro Yamada , Firoz Khan , Joel Stanley , Andrew Donnellan , Paul Mackerras Subject: Re: [PATCH] powerpc: improve prom_init_check rule Message-Id: <46YtKk2RyPz9sPf@ozlabs.org> Date: Thu, 19 Sep 2019 20:26:02 +1000 (AEST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 2019-09-12 at 07:40:37 UTC, Masahiro Yamada wrote: > This slightly improves the prom_init_check rule. > > [1] Avoid needless check > > Currently, prom_init_check.sh is invoked every time you run 'make' > even if you have changed nothing in prom_init.c. With this commit, > the script is re-run only when prom_init.o is recompiled. > > [2] Beautify the build log > > Currently, the O= build shows the absolute path to the script: > > CALL /abs/path/to/source/of/linux/arch/powerpc/kernel/prom_init_check.sh > > With this commit, it is always a relative path to the timestamp file: > > PROMCHK arch/powerpc/kernel/prom_init_check > > Signed-off-by: Masahiro Yamada Applied to powerpc next, thanks. https://git.kernel.org/powerpc/c/1fdfa4c6af0cc1854b017f308af6bece94568bb6 cheers