From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CAE6158087 for ; Thu, 20 Jan 2022 16:39:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8ABB82BC014; Thu, 20 Jan 2022 16:39:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 071FA2BC014 for ; Thu, 20 Jan 2022 16:39:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29B56343199 for ; Thu, 20 Jan 2022 16:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD37C275 for ; Thu, 20 Jan 2022 16:39:20 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1642696737.caa89ab1ff4b1dc6fb24f836d2d63896c51b197d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/dist-kernel-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: caa89ab1ff4b1dc6fb24f836d2d63896c51b197d X-VCS-Branch: master Date: Thu, 20 Jan 2022 16:39:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 511917ab-0008-468c-b1df-674e09bb4f03 X-Archives-Hash: f6b6e1144e02afcb79542faef8157cdd commit: caa89ab1ff4b1dc6fb24f836d2d63896c51b197d Author: Sam James gentoo org> AuthorDate: Thu Jan 20 16:38:57 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 20 16:38:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caa89ab1 dist-kernel-utils.eclass: add hppa to dist-kernel_get_image_path() Uses same logic as ppc/ppc64. Just adding to the case statement. Signed-off-by: Sam James gentoo.org> eclass/dist-kernel-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/dist-kernel-utils.eclass b/eclass/dist-kernel-utils.eclass index f514a3da65a9..71c96a37e642 100644 --- a/eclass/dist-kernel-utils.eclass +++ b/eclass/dist-kernel-utils.eclass @@ -1,4 +1,4 @@ -# Copyright 2020-2021 Gentoo Authors +# Copyright 2020-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: dist-kernel-utils.eclass @@ -72,7 +72,7 @@ dist-kernel_get_image_path() { arm) echo arch/arm/boot/zImage ;; - ppc|ppc64) + hppa|ppc|ppc64) # https://www.kernel.org/doc/html/latest/powerpc/bootwrapper.html # ./ is required because of ${image_path%/*} # substitutions in the code