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 428E7138334 for ; Fri, 16 Nov 2018 17:52:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB4A8E087E; Fri, 16 Nov 2018 17:52:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AF217E087E for ; Fri, 16 Nov 2018 17:52:21 +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 598EA335C5A for ; Fri, 16 Nov 2018 17:52:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BD2843A for ; Fri, 16 Nov 2018 17:52:17 +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: <1542390725.56eff26f4e7473d739ace8c04a5a0af09dd9021c.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: 56eff26f4e7473d739ace8c04a5a0af09dd9021c X-VCS-Branch: master Date: Fri, 16 Nov 2018 17:52:17 +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: 7e9bd013-4ece-42c2-8bdc-8d7b646ce832 X-Archives-Hash: 47a0b07d08d4d90f7ca58af11706a6f7 commit: 56eff26f4e7473d739ace8c04a5a0af09dd9021c Author: Matt Turner gentoo org> AuthorDate: Fri Nov 16 17:49:59 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Nov 16 17:52:05 2018 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=56eff26f create-iso.sh: Switch from genisoimage to xorrisofs for Alpha genisoimage was part of app-cdr/cdrkit which was removed from Gentoo last year. Signed-off-by: Matt Turner gentoo.org> Signed-off-by: Tobias Klausmann gentoo.org> targets/support/create-iso.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 39c3fe07..2a53a1da 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh # Check for our CD ISO creation tools case ${clst_hostarch} in alpha) - cdmaker="genisoimage" - cdmakerpkg="app-cdr/cdrkit" + cdmaker="xorrisofs" + cdmakerpkg="dev-libs/libisoburn" ;; mips) cdmaker="sgibootcd" @@ -111,8 +111,8 @@ run_mkisofs() { # Here we actually create the ISO images for each architecture case ${clst_hostarch} in alpha) - echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}" - 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" + 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" ;; arm) ;;