From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2B5AC4338F for ; Mon, 2 Aug 2021 12:46:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AB24D60F58 for ; Mon, 2 Aug 2021 12:46:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233652AbhHBMqi (ORCPT ); Mon, 2 Aug 2021 08:46:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:48932 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233604AbhHBMqh (ORCPT ); Mon, 2 Aug 2021 08:46:37 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id D3E5560FC1; Mon, 2 Aug 2021 12:46:27 +0000 (UTC) Date: Mon, 2 Aug 2021 13:46:25 +0100 From: Catalin Marinas To: Masahiro Yamada Cc: linux-arm-kernel@lists.infradead.org, Will Deacon , linux-kernel@vger.kernel.org Subject: Re: [PATCH] arm64: move the (z)install rules to arch/arm64/Makefile Message-ID: <20210802124624.GG18685@arm.com> References: <20210729140527.443116-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210729140527.443116-1-masahiroy@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jul 29, 2021 at 11:05:27PM +0900, Masahiro Yamada wrote: > Currently, the (z)install targets in arch/arm64/Makefile descend into > arch/arm64/boot/Makefile to invoke the shell script, but there is no > good reason to do so. > > arch/arm64/Makefile can run the shell script directly. > > Signed-off-by: Masahiro Yamada > --- > > arch/arm64/Makefile | 7 +++++-- > arch/arm64/boot/Makefile | 8 -------- > 2 files changed, 5 insertions(+), 10 deletions(-) Is this part of some cross-arch clean-up? I can see x86 for example does the same thing. Thanks. -- Catalin