commit:     56eff26f4e7473d739ace8c04a5a0af09dd9021c
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 16 17:49:59 2018 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Nov 16 17:52:05 2018 +0000
URL:        https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=56eff26f

create-iso.sh: Switch from genisoimage to xorrisofs for Alpha

genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
last year.

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>

 targets/support/create-iso.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index 39c3fe07..2a53a1da 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
 # Check for our CD ISO creation tools
 case ${clst_hostarch} in
        alpha)
-               cdmaker="genisoimage"
-               cdmakerpkg="app-cdr/cdrkit"
+               cdmaker="xorrisofs"
+               cdmakerpkg="dev-libs/libisoburn"
                ;;
        mips)
                cdmaker="sgibootcd"
@@ -111,8 +111,8 @@ run_mkisofs() {
 # Here we actually create the ISO images for each architecture
 case ${clst_hostarch} in
        alpha)
-               echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
-               genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
+               echo ">> xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R 
-l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} 
${clst_target_path}"
+               xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
        ;;
        arm)
        ;;

Reply via email to