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 7E3C0138359 for ; Fri, 23 Oct 2020 09:19:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D968E08BB; Fri, 23 Oct 2020 09:19:58 +0000 (UTC) Received: from rs234.mailgun.us (rs234.mailgun.us [209.61.151.234]) (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 27F30E08C3 for ; Fri, 23 Oct 2020 09:19:53 +0000 (UTC) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=0xdc.io; q=dns/txt; s=smtp; t=1603444798; h=Content-Transfer-Encoding: MIME-Version: References: In-Reply-To: Message-Id: Date: Subject: To: From: Sender; bh=dvRhY26mtHSGTGsN7o+DkBG0xoryZdWtt8ep444s9pw=; b=ywQ93XNDvoo3HhvuUqiFkY3rer7yPRaRyheiBEZXIepkkcu5iDYMMZcptDzo5JhoskkK9u4u 1V73zXAfApJSfsqiqTHJWpwJTNtq5jwzjdufZDLB6by1so2iXfGRd5yuRuy+vr254Z1ILRD0 VT2+7oK8svRavmAJME4gdr1ssXA= X-Mailgun-Sending-Ip: 209.61.151.234 X-Mailgun-Sid: WyJiZmIxMyIsICJnZW50b28tY2F0YWx5c3RAbGlzdHMuZ2VudG9vLm9yZyIsICJmNjc0NGUiXQ== Received: from mail.0xdc.io (ip-54-37-0.eu [54.37.0.172]) by smtp-out-n05.prod.us-west-2.postgun.com with SMTP id 5f92a030319d4e9cb55007bf (version=TLS1.3, cipher=TLS_AES_128_GCM_SHA256); Fri, 23 Oct 2020 09:19:44 GMT Sender: gentoo.catalyst=xxoo.ws@0xdc.io Received: from dysnomia (1.c.d.0.b.d.3.7.4.0.4.3.a.3.d.5.0.a.4.7.9.0.c.0.0.b.8.0.1.0.0.2.ip6.arpa [IPv6:2001:8b0:c09:74a0:5d3a:3404:73db:dc1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.0xdc.io (Postfix) with ESMTPSA id EEC15102D8F for ; Fri, 23 Oct 2020 09:26:05 +0000 (UTC) From: Daniel Cordero To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 2/3] Update requirements for amd64/x86 ISO creation Date: Fri, 23 Oct 2020 09:18:44 +0000 Message-Id: <20201023091845.71295-2-gentoo.catalyst@xxoo.ws> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20201023091845.71295-1-gentoo.catalyst@xxoo.ws> References: <20201023091845.71295-1-gentoo.catalyst@xxoo.ws> 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: 26afeec1-29ae-486f-b8f4-a976021770c5 X-Archives-Hash: 61a3053eabd52dd111177e1ce22d2c26 From: Daniel Cordero xorriso uses mkisofs to create the ISO. Signed-off-by: Daniel Cordero --- targets/support/create-iso.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index ac97ef56..9b1c7185 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -18,9 +18,13 @@ case ${clst_hostarch} in cdmaker="grub-mkrescue" cdmakerpkg="dev-libs/libisoburn and sys-boot/grub:2" ;; - ia64) + amd64|ia64|x86) cdmaker="grub-mkrescue" - cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, and sys-boot/grub:2" + # grub-mkrescue requires: + # xorriso from libisoburn + # mkisofs from cdrtools + # mformat from mtools + cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, sys-boot/grub:2, and virtual/cdrtools" ;; *) cdmaker="mkisofs" -- 2.26.2