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 EC9F6138359 for ; Wed, 28 Oct 2020 20:51:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 441C5E088B; Wed, 28 Oct 2020 20:51:08 +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 2D040E088B for ; Wed, 28 Oct 2020 20:51:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 976F6340ED8 for ; Wed, 28 Oct 2020 20:51:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E231639F for ; Wed, 28 Oct 2020 20:51:01 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603577003.898b9798e2f2e7e325f3b06b3e60d8251809351e.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/create-iso.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 898b9798e2f2e7e325f3b06b3e60d8251809351e X-VCS-Branch: pending/mattst88 Date: Wed, 28 Oct 2020 20:51:01 +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: 1156c112-642d-4f13-8356-609019eac412 X-Archives-Hash: 4f7cb5bb1c5c4c3158dbd9eac9345122 commit: 898b9798e2f2e7e325f3b06b3e60d8251809351e Author: Daniel Cordero 0xdc io> AuthorDate: Fri Oct 23 09:18:44 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 24 22:03:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=898b9798 Update requirements for amd64/x86 ISO creation xorriso uses mkisofs to create the ISO. Signed-off-by: Daniel Cordero 0xdc.io> Signed-off-by: Matt Turner gentoo.org> 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" 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 A1BE7138359 for ; Thu, 29 Oct 2020 21:00:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8538EE090F; Thu, 29 Oct 2020 21:00:45 +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 6D4B8E0917 for ; Thu, 29 Oct 2020 21:00:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 43669340E3D for ; Thu, 29 Oct 2020 21:00:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 221873E2 for ; Thu, 29 Oct 2020 21:00:41 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603577003.898b9798e2f2e7e325f3b06b3e60d8251809351e.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/create-iso.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 898b9798e2f2e7e325f3b06b3e60d8251809351e X-VCS-Branch: wip/mattst88 Date: Thu, 29 Oct 2020 21:00:41 +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: c7688aeb-6523-4bfd-9360-6f4136cbeb3f X-Archives-Hash: a205155a73756e5b13ebed0e293945ea Message-ID: <20201029210041.886GjdNjM1vP5fWLvaXYLLlxuXjNfYxD_9HlmwlKSEk@z> commit: 898b9798e2f2e7e325f3b06b3e60d8251809351e Author: Daniel Cordero 0xdc io> AuthorDate: Fri Oct 23 09:18:44 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 24 22:03:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=898b9798 Update requirements for amd64/x86 ISO creation xorriso uses mkisofs to create the ISO. Signed-off-by: Daniel Cordero 0xdc.io> Signed-off-by: Matt Turner gentoo.org> 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" 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 F171A138359 for ; Sat, 24 Oct 2020 22:07:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 446D2E091F; Sat, 24 Oct 2020 22:07:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2CFA5E091F for ; Sat, 24 Oct 2020 22:07:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C64F33BEBB for ; Sat, 24 Oct 2020 22:07:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 663733BB for ; Sat, 24 Oct 2020 22:07:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603577003.898b9798e2f2e7e325f3b06b3e60d8251809351e.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/create-iso.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 898b9798e2f2e7e325f3b06b3e60d8251809351e X-VCS-Branch: master Date: Sat, 24 Oct 2020 22:07:49 +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: 9d13df49-df6c-4350-88df-b54ee7bc14ae X-Archives-Hash: 312d5e37e768e6355ebf4826967be5c8 Message-ID: <20201024220749.l0aaFhNzdP29eRbkLb-dJGk2pHiHFrQkJ60XeTg_zqU@z> commit: 898b9798e2f2e7e325f3b06b3e60d8251809351e Author: Daniel Cordero 0xdc io> AuthorDate: Fri Oct 23 09:18:44 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 24 22:03:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=898b9798 Update requirements for amd64/x86 ISO creation xorriso uses mkisofs to create the ISO. Signed-off-by: Daniel Cordero 0xdc.io> Signed-off-by: Matt Turner gentoo.org> 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"