Skip to content

Commit b287241

Browse files
klausmanmattst88
authored andcommitted
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@gentoo.org> Signed-off-by: Tobias Klausmann <klausman@gentoo.org>
1 parent 44fcaf1 commit b287241

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

targets/support/create-iso.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
88
# Check for our CD ISO creation tools
99
case ${clst_hostarch} in
1010
alpha)
11-
cdmaker="genisoimage"
12-
cdmakerpkg="app-cdr/cdrkit"
11+
cdmaker="xorrisofs"
12+
cdmakerpkg="dev-libs/libisoburn"
1313
;;
1414
mips)
1515
cdmaker="sgibootcd"
@@ -111,8 +111,8 @@ run_mkisofs() {
111111
# Here we actually create the ISO images for each architecture
112112
case ${clst_hostarch} in
113113
alpha)
114-
echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
115-
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"
114+
echo ">> xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
115+
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"
116116
;;
117117
arm)
118118
;;

0 commit comments

Comments
 (0)