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 93A4F138334 for ; Fri, 16 Nov 2018 18:00:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56D96E08AE; Fri, 16 Nov 2018 18:00:51 +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 28172E08AE for ; Fri, 16 Nov 2018 18:00:51 +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 684AF335C38 for ; Fri, 16 Nov 2018 18:00:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9F3343A for ; Fri, 16 Nov 2018 18:00:47 +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: <1542391229.6b3d0333c7c1a0a69b4538e21880e4ec32731a5c.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: 6b3d0333c7c1a0a69b4538e21880e4ec32731a5c X-VCS-Branch: master Date: Fri, 16 Nov 2018 18:00:47 +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: d88e2685-c81f-416b-81a9-3b19ceaadb02 X-Archives-Hash: 39db8db6f7b6780efcefbf7364e79c5e commit: 6b3d0333c7c1a0a69b4538e21880e4ec32731a5c Author: Tobias Klausmann gentoo org> AuthorDate: Fri Nov 16 17:49:59 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Nov 16 18:00:29 2018 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6b3d0333 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..14c92f4b 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) ;;