Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Sat, 24 Oct 2020 22:07:53
Message-Id: 1603577003.898b9798e2f2e7e325f3b06b3e60d8251809351e.mattst88@gentoo
1 commit: 898b9798e2f2e7e325f3b06b3e60d8251809351e
2 Author: Daniel Cordero <catalyst <AT> 0xdc <DOT> io>
3 AuthorDate: Fri Oct 23 09:18:44 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 24 22:03:23 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=898b9798
7
8 Update requirements for amd64/x86 ISO creation
9
10 xorriso uses mkisofs to create the ISO.
11
12 Signed-off-by: Daniel Cordero <catalyst <AT> 0xdc.io>
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 targets/support/create-iso.sh | 8 ++++++--
16 1 file changed, 6 insertions(+), 2 deletions(-)
17
18 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
19 index ac97ef56..9b1c7185 100755
20 --- a/targets/support/create-iso.sh
21 +++ b/targets/support/create-iso.sh
22 @@ -18,9 +18,13 @@ case ${clst_hostarch} in
23 cdmaker="grub-mkrescue"
24 cdmakerpkg="dev-libs/libisoburn and sys-boot/grub:2"
25 ;;
26 - ia64)
27 + amd64|ia64|x86)
28 cdmaker="grub-mkrescue"
29 - cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, and sys-boot/grub:2"
30 + # grub-mkrescue requires:
31 + # xorriso from libisoburn
32 + # mkisofs from cdrtools
33 + # mformat from mtools
34 + cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, sys-boot/grub:2, and virtual/cdrtools"
35 ;;
36 *)
37 cdmaker="mkisofs"