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 8B65C15800A for ; Fri, 21 Jul 2023 12:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D315E095F; Fri, 21 Jul 2023 12:46:35 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60E52E095C for ; Fri, 21 Jul 2023 12:46:35 +0000 (UTC) From: Sam James To: gentoo-dev@lists.gentoo.org Cc: toolchain@gentoo.org, dist-kernel@gentoo.org, sparc@gentoo.org, Sam James Subject: [gentoo-dev] [PATCH 4/6] kernel-install.eclass: kernel-install_get_qemu_arch: port to sparc Date: Fri, 21 Jul 2023 13:46:10 +0100 Message-ID: <20230721124615.1797438-4-sam@gentoo.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230721124615.1797438-1-sam@gentoo.org> References: <20230721124615.1797438-1-sam@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 317cea92-48e7-4fdf-8860-bf8e9d7e1a0e X-Archives-Hash: 964f7d5d3920d3f88eeec7ce590cc74e Signed-off-by: Sam James --- eclass/kernel-install.eclass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index 49aff35dea0d2..6018abd821513 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -1,4 +1,4 @@ -# Copyright 2020-2022 Gentoo Authors +# Copyright 2020-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: kernel-install.eclass @@ -162,6 +162,12 @@ kernel-install_get_qemu_arch() { ppc64) echo ppc64 ;; + sparc) + echo sparc + ;; + sparc64) + echo sparc64 + ;; riscv) echo riscv ;; -- 2.41.0