From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 00BCF138334 for ; Tue, 20 Nov 2018 21:32:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0C6FE0935; Tue, 20 Nov 2018 21:32:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B94A8E0935 for ; Tue, 20 Nov 2018 21:32:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01964335C6F for ; Tue, 20 Nov 2018 21:32:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9641456 for ; Tue, 20 Nov 2018 21:32:30 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1542749387.95bb5d90023a3e388a15b7f93b871a3272ebc197.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/create-iso.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 95bb5d90023a3e388a15b7f93b871a3272ebc197 X-VCS-Branch: master Date: Tue, 20 Nov 2018 21:32:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 23436279-8e5b-474a-bec4-5d8552da50a9 X-Archives-Hash: 74a2ea082c10c63df1ecea2784fe042f commit: 95bb5d90023a3e388a15b7f93b871a3272ebc197 Author: Tobias Klausmann gentoo org> AuthorDate: Tue Nov 20 21:29:11 2018 +0000 Commit: Matt Turner gentoo 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 gentoo.org> Signed-off-by: Tobias Klausmann 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) ;;