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 A5643139337 for ; Mon, 26 Jul 2021 05:15:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0370E0AE3; Mon, 26 Jul 2021 05:15:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 52ACFE0AE2 for ; Mon, 26 Jul 2021 05:15:10 +0000 (UTC) Received: by mail-ed1-f49.google.com with SMTP id n2so8915953eda.10 for ; Sun, 25 Jul 2021 22:15:09 -0700 (PDT) X-Gm-Message-State: AOAM533QQ5qyHLoIOggAi7PH2zEmRW2T7sPQmbE/JTUAIpqb7VLhIXyr G3vCxFJfm2LuBp6fiXnQGtTz/aHjCw1bUIqsalc= X-Google-Smtp-Source: ABdhPJz8UleJs9pMTB03UyOeUtOhy3UETSl1NB6bRBdvZor0Z2yISquPk4yTuKgLo/ETDVdMJR/syoWIm4MZgyphbnk= X-Received: by 2002:a50:f113:: with SMTP id w19mr3067783edl.107.1627276506605; Sun, 25 Jul 2021 22:15:06 -0700 (PDT) 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 References: <20210725051602.3133220-1-gyakovlev@gentoo.org> <20210725235113.1256043-1-gyakovlev@gentoo.org> In-Reply-To: <20210725235113.1256043-1-gyakovlev@gentoo.org> From: Matt Turner Date: Sun, 25 Jul 2021 22:14:55 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [gentoo-catalyst] [PATCH 1/2] targets/support/create-iso.sh: add arm64 support To: gentoo-catalyst@lists.gentoo.org Cc: Georgy Yakovlev Content-Type: text/plain; charset="UTF-8" X-Archives-Salt: 1fff6bd7-bd4e-4a65-82f3-83373398fc32 X-Archives-Hash: 09035370137a06659740535d6a1f5a17 On Sun, Jul 25, 2021 at 4:51 PM Georgy Yakovlev wrote: > > 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 Looks good. I'd just squash "[PATCH] targets/support/bootloader-setup.sh: add arm64 support" into this one and change the commit prefix to "targets: ".