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 7B1941389E2 for ; Wed, 3 Dec 2014 09:33:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23C19E0858; Wed, 3 Dec 2014 09:33:37 +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 CB784E0858 for ; Wed, 3 Dec 2014 09:33:36 +0000 (UTC) Received: from guppy (guppy.gentoo.osuosl.org [140.211.166.179]) by smtp.gentoo.org (Postfix) with SMTP id 25C283405DB; Wed, 3 Dec 2014 09:33:35 +0000 (UTC) Received: by guppy (sSMTP sendmail emulation); Wed, 03 Dec 2014 09:33:34 +0000 From: =?UTF-8?q?Ra=C3=BAl=20Porcel?= To: gentoo-catalyst@lists.gentoo.org Cc: =?UTF-8?q?Ra=C3=BAl=20Porcel?= Subject: [gentoo-catalyst] [PATCH] modify alpha to use genisoimage Date: Wed, 3 Dec 2014 09:33:21 +0000 Message-Id: <1417599201-17112-1-git-send-email-armin76@gentoo.org> X-Mailer: git-send-email 2.0.4 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: d67ee56c-7c8d-4251-a786-b3bd3f56b49d X-Archives-Hash: 0236acb27dd48f591a0ba43b46655d52 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..2f6bdfd 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) ;; -- 2.0.4