Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Fri, 16 Nov 2018 17:53:24
Message-Id: 1542390785.b2872413c545c73f1b0edb0cb2ed89439a2f3212.mattst88@gentoo
1 commit: b2872413c545c73f1b0edb0cb2ed89439a2f3212
2 Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 16 17:49:59 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 16 17:53:05 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b2872413
7
8 create-iso.sh: Switch from genisoimage to xorrisofs for Alpha
9
10 genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
11 last year.
12
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14 Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
15
16 targets/support/create-iso.sh | 8 ++++----
17 1 file changed, 4 insertions(+), 4 deletions(-)
18
19 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
20 index 39c3fe07..2a53a1da 100755
21 --- a/targets/support/create-iso.sh
22 +++ b/targets/support/create-iso.sh
23 @@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
24 # Check for our CD ISO creation tools
25 case ${clst_hostarch} in
26 alpha)
27 - cdmaker="genisoimage"
28 - cdmakerpkg="app-cdr/cdrkit"
29 + cdmaker="xorrisofs"
30 + cdmakerpkg="dev-libs/libisoburn"
31 ;;
32 mips)
33 cdmaker="sgibootcd"
34 @@ -111,8 +111,8 @@ run_mkisofs() {
35 # Here we actually create the ISO images for each architecture
36 case ${clst_hostarch} in
37 alpha)
38 - echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
39 - 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"
40 + echo ">> xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
41 + 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"
42 ;;
43 arm)
44 ;;