commit: 898b9798e2f2e7e325f3b06b3e60d8251809351e
Author: Daniel Cordero <catalyst <AT> 0xdc <DOT> io>
AuthorDate: Fri Oct 23 09:18:44 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> 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 <catalyst <AT> 0xdc.io>
Signed-off-by: Matt Turner <mattst88 <AT> 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"