Skip to content

Commit

Permalink
create-iso.sh: Switch from genisoimage to xorrisofs for Alpha
Browse files Browse the repository at this point in the history
genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
last year.

Signed-off-by: Matt Turner <[email protected]>
Signed-off-by: Tobias Klausmann <[email protected]>
  • Loading branch information
klausman authored and mattst88 committed Nov 16, 2018
1 parent 44fcaf1 commit 6b3d033
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions targets/support/create-iso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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)
;;
Expand Down

0 comments on commit 6b3d033

Please sign in to comment.