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: Tue, 20 Nov 2018 21:32:35
Message-Id: 1542749387.95bb5d90023a3e388a15b7f93b871a3272ebc197.mattst88@gentoo
1 commit: 95bb5d90023a3e388a15b7f93b871a3272ebc197
2 Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 20 21:29:11 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 20 21:29:47 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=95bb5d90
7
8 create-iso.sh: Call xorriso instead of xorrisofs
9
10 And correct its argument: -alpha-boot instead of --alpha-boot=.
11
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13 Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>
14
15 targets/support/create-iso.sh | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
19 index 14c92f4b..1637c2ea 100755
20 --- a/targets/support/create-iso.sh
21 +++ b/targets/support/create-iso.sh
22 @@ -8,7 +8,7 @@ source ${clst_shdir}/support/filesystem-functions.sh
23 # Check for our CD ISO creation tools
24 case ${clst_hostarch} in
25 alpha)
26 - cdmaker="xorrisofs"
27 + cdmaker="xorriso"
28 cdmakerpkg="dev-libs/libisoburn"
29 ;;
30 mips)
31 @@ -111,8 +111,8 @@ run_mkisofs() {
32 # Here we actually create the ISO images for each architecture
33 case ${clst_hostarch} in
34 alpha)
35 - echo ">> xorrisofs -as genisofs --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
36 - 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"
37 + echo ">> xorriso -as genisofs -alpha-boot boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o \"${1}\" \"${clst_target_path}\""
38 + xorriso -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"
39 ;;
40 arm)
41 ;;