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