Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp476543pxb; Wed, 18 Aug 2021 06:48:27 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzlTAwX5MrftNHP8dz69AZernd3qhsFkexLxQNMvq7BaKlukYM63KB46IzXGxqRt9AiZBzl X-Received: by 2002:a05:6602:2436:: with SMTP id g22mr7263774iob.109.1629294507025; Wed, 18 Aug 2021 06:48:27 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1629294507; cv=none; d=google.com; s=arc-20160816; b=SfJq0w37SxMKcJ0YUrsEcDr+sV28tatKYtSoUKVtr/WDyUr+s/NR/kSD2XX19zohly Q8KaDyWscdCvsIh3KKZEj2DMRFX7H9oQHoKHUP5f4uII0h3AsRDCdrl73dxJRfFyy5kk Yc/nW/ITfZRg6sP+biYqk694gNFWyXYvPTa9Ou5ZIW/FRQNci9p2SdvpyhBN+KId2VEv Ei5HBbZk9D0WqqjxIIfy3JFGiTtcO1g/ZNrMHkO6Vql2vMQdI7IC3gRsHOySM31c7GCN 7rDZEs6VPDeMPNG+pB6FrRd3yyCZyVhPGv9tQoi7lLbEJuMYLzZxDsdItkANT6mvZLLI g68w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version:date :message-id:subject:references:in-reply-to:cc:to:from; bh=ihxH1gXMBEOG1P1hdL09nVEgSCyOw4giV1XXjkcs9O8=; b=rB5M7P3PS/UJEDgXEhJSzqp119U3KVS+WYX/yPXOAAQWJupPjyG42cvbpBEcYCC6do 8UcSRXmtDF501cfqaqfi7m4Mn7Pqf3bMIhixqDAaBU326swDP9pGq3A6yeYqSKhc1Py4 R9lz/i5mKonDHfiZmFyNthiN10JksumvUtDzDd+UzApftGNQHiZn5nyfM7G2baVm8C+C +VGqkKVStY91Nz+B11np9VMtEffEwjIaKVzD46BwuS9Q1RMCq1FQFYwQSudq65A4TwbJ k27CRR1VrparSr9TPaadCtb61/BSoWjBCebqnL2hILp4F+31mv6TmkmBj/ZpfI+4Uvd5 n6Yw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id j3si4206139jak.117.2021.08.18.06.48.15; Wed, 18 Aug 2021 06:48:27 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237685AbhHRNrE (ORCPT + 99 others); Wed, 18 Aug 2021 09:47:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40000 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237871AbhHRNqq (ORCPT ); Wed, 18 Aug 2021 09:46:46 -0400 Received: from ozlabs.org (ozlabs.org [IPv6:2401:3900:2:1::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 87E84C0613CF for ; Wed, 18 Aug 2021 06:46:09 -0700 (PDT) Received: by ozlabs.org (Postfix, from userid 1034) id 4GqTgx1N3Mz9t0J; Wed, 18 Aug 2021 23:46:04 +1000 (AEST) From: Michael Ellerman To: Masahiro Yamada , Michael Ellerman , Paul Mackerras , linuxppc-dev@lists.ozlabs.org, Benjamin Herrenschmidt Cc: Bill Wendling , Jordan Niethe , Nicholas Piggin , Joel Stanley , linux-kernel@vger.kernel.org, "Gustavo A. R. Silva" , Nick Desaulniers In-Reply-To: <20210729141937.445051-1-masahiroy@kernel.org> References: <20210729141937.445051-1-masahiroy@kernel.org> Subject: Re: [PATCH 1/3] powerpc: remove unused zInstall target from arch/powerpc/boot/Makefile Message-Id: <162929389129.3619265.1911733142384487798.b4-ty@ellerman.id.au> Date: Wed, 18 Aug 2021 23:38:11 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 29 Jul 2021 23:19:35 +0900, Masahiro Yamada wrote: > Commit c913e5f95e54 ("powerpc/boot: Don't install zImage.* from make > install") added the zInstall target to arch/powerpc/boot/Makefile, > but you cannot use it since the corresponding hook is missing in > arch/powerpc/Makefile. > > It has never worked since its addition. Nobody has complained about > it for 7 years, which means this code was unneeded. > > [...] Applied to powerpc/next. [1/3] powerpc: remove unused zInstall target from arch/powerpc/boot/Makefile https://git.kernel.org/powerpc/c/156ca4e650bfb9a4259b427069caa11b5a4df3d4 [2/3] powerpc: make the install target not depend on any build artifact https://git.kernel.org/powerpc/c/9bef456b20581e630ef9a13555ca04fed65a859d [3/3] powerpc: move the install rule to arch/powerpc/Makefile https://git.kernel.org/powerpc/c/86ff0bce2e9665c8b074930fe6caed615da070c1 cheers