Gentoo Archives: gentoo-catalyst

From: Daniel Cordero <gentoo.catalyst@××××.ws>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH 2/3] Update requirements for amd64/x86 ISO creation
Date: Fri, 23 Oct 2020 09:19:59
Message-Id: 20201023091845.71295-2-gentoo.catalyst@xxoo.ws
In Reply to: [gentoo-catalyst] [PATCH 1/3] Re-allow the use of mksquashfs to pack the livecd contents by Daniel Cordero
1 From: Daniel Cordero <catalyst@××××.io>
2
3 xorriso uses mkisofs to create the ISO.
4
5 Signed-off-by: Daniel Cordero <catalyst@××××.io>
6 ---
7 targets/support/create-iso.sh | 8 ++++++--
8 1 file changed, 6 insertions(+), 2 deletions(-)
9
10 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
11 index ac97ef56..9b1c7185 100755
12 --- a/targets/support/create-iso.sh
13 +++ b/targets/support/create-iso.sh
14 @@ -18,9 +18,13 @@ case ${clst_hostarch} in
15 cdmaker="grub-mkrescue"
16 cdmakerpkg="dev-libs/libisoburn and sys-boot/grub:2"
17 ;;
18 - ia64)
19 + amd64|ia64|x86)
20 cdmaker="grub-mkrescue"
21 - cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, and sys-boot/grub:2"
22 + # grub-mkrescue requires:
23 + # xorriso from libisoburn
24 + # mkisofs from cdrtools
25 + # mformat from mtools
26 + cdmakerpkg="sys-fs/mtools, dev-libs/libisoburn, sys-boot/grub:2, and virtual/cdrtools"
27 ;;
28 *)
29 cdmaker="mkisofs"
30 --
31 2.26.2

Replies