diff options
author | Tobias Klausmann <klausman@gentoo.org> | 2018-11-20 13:29:11 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-11-20 13:29:47 -0800 |
commit | 95bb5d90023a3e388a15b7f93b871a3272ebc197 (patch) | |
tree | 14881e15b4118d50d7f3203f03b9a70ce16bd49f | |
parent | create-iso.sh: Switch from genisoimage to xorrisofs for Alpha (diff) | |
download | catalyst-95bb5d90023a3e388a15b7f93b871a3272ebc197.tar.gz catalyst-95bb5d90023a3e388a15b7f93b871a3272ebc197.tar.bz2 catalyst-95bb5d90023a3e388a15b7f93b871a3272ebc197.zip |
create-iso.sh: Call xorriso instead of xorrisofs
And correct its argument: -alpha-boot instead of --alpha-boot=.
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Signed-off-by: Tobias Klausmann <klausman@gentoo.org>
-rwxr-xr-x | targets/support/create-iso.sh | 6 |
1 files 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) ;; |