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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 038FD139337 for ; Sun, 25 Jul 2021 23:51:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FC70E0B58; Sun, 25 Jul 2021 23:51:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C9896E0B58 for ; Sun, 25 Jul 2021 23:51:23 +0000 (UTC) From: Georgy Yakovlev To: gentoo-catalyst@lists.gentoo.org Cc: Georgy Yakovlev Subject: [gentoo-catalyst] [PATCH 1/2] targets/support/create-iso.sh: add arm64 support Date: Sun, 25 Jul 2021 16:51:12 -0700 Message-Id: <20210725235113.1256043-1-gyakovlev@gentoo.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20210725051602.3133220-1-gyakovlev@gentoo.org> References: <20210725051602.3133220-1-gyakovlev@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 1e859125-d6a7-4bcb-8357-01ff9e36c975 X-Archives-Hash: 1090c46c522d2d095e6655aa896ebe8d Signed-off-by: Georgy Yakovlev --- targets/support/create-iso.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 70684f78..729f5c15 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -18,7 +18,7 @@ case ${clst_hostarch} in cdmaker="grub-mkrescue" cdmakerpkg="dev-libs/libisoburn and sys-boot/grub:2" ;; - amd64|ia64|x86) + amd64|arm64|ia64|x86) cdmaker="grub-mkrescue" # grub-mkrescue requires: # xorriso from libisoburn @@ -52,6 +52,9 @@ then arm) clst_iso_volume_id="Gentoo Linux - ARM" ;; + arm64) + clst_iso_volume_id="Gentoo Linux - ARM64" + ;; hppa) clst_iso_volume_id="Gentoo Linux - HPPA" ;; @@ -188,7 +191,7 @@ case ${clst_hostarch} in # o= output image (burnable to CD; readable by fdisk) /usr/bin/sgibootcd c=${cfg} o=${clst_iso} ;; - amd64|ia64|ppc*|powerpc*|sparc*|x86) + amd64|arm64|ia64|ppc*|powerpc*|sparc*|x86) isoroot_checksum extra_opts=("-joliet") -- 2.32.0