From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 408071389E2 for ; Wed, 24 Dec 2014 14:44:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCBF5E094E; Wed, 24 Dec 2014 14:44:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B06AE094E for ; Wed, 24 Dec 2014 14:44:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CA77340409 for ; Wed, 24 Dec 2014 14:44:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C4C8D443 for ; Wed, 24 Dec 2014 14:43:59 +0000 (UTC) From: "Raúl Porcel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Raúl Porcel" Message-ID: <1417604443.784224be0adb91a4e02fd2068649ebe732e129fe.armin76@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: armin76 X-VCS-Committer-Name: Raúl Porcel X-VCS-Revision: 784224be0adb91a4e02fd2068649ebe732e129fe X-VCS-Branch: master Date: Wed, 24 Dec 2014 14:43:59 +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: 9f965d67-7ba5-49b6-a225-600b4e280434 X-Archives-Hash: 5bfd97c71daa8ce16df943706981ae02 commit: 784224be0adb91a4e02fd2068649ebe732e129fe Author: Raúl Porcel gentoo org> AuthorDate: Wed Dec 3 11:00:43 2014 +0000 Commit: Raúl Porcel gentoo org> CommitDate: Wed Dec 3 11:00:43 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=784224be modify alpha to use genisoimage alpha needs to use app-cdr/cdrkit's genisoimage with an alpha-specific option which mkisofs from app-cdr/cdrtools doesn't have --- targets/support/create-iso.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index bf81cba..7454adb 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -7,6 +7,9 @@ source ${clst_sharedir}/targets/support/filesystem-functions.sh # Check for our CD ISO creation tools case ${clst_hostarch} in + alpha) + cdmaker="genisoimage" + cdmakerpkg="app-cdr/cdrkit" mips) cdmaker="sgibootcd" cdmakerpkg="sys-boot/sgibootcd" @@ -82,9 +85,8 @@ fi case ${clst_hostarch} in alpha) echo ">> Running mkisofs to create iso image...." - echo ">> mkisofs -R -l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}" - mkisofs -R -l -J ${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o ${1} ${clst_target_path} || die "Cannot make ISO image" - isomarkboot ${1} /boot/bootlx + 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" ;; arm) ;;