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 B7C6F138350 for ; Fri, 10 Apr 2020 02:11:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71314E08A5; Fri, 10 Apr 2020 02:11:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 5B2F2E08A5 for ; Fri, 10 Apr 2020 02:11:32 +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 033DA34EFEC for ; Fri, 10 Apr 2020 02:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A90821D5 for ; Fri, 10 Apr 2020 02:11:28 +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: <1586460223.4c3d1f23dc6d01ea3603ed3584cd9f57c72bccec.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: 4c3d1f23dc6d01ea3603ed3584cd9f57c72bccec X-VCS-Branch: master Date: Fri, 10 Apr 2020 02:11:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5929eca0-2390-438f-919d-7bdce8fe672b X-Archives-Hash: 235e2061dc09004bbc28f5326bee76fe commit: 4c3d1f23dc6d01ea3603ed3584cd9f57c72bccec Author: Matt Turner gentoo org> AuthorDate: Wed Apr 8 01:53:45 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Apr 9 19:23:43 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4c3d1f23 targets: Support isoroot checksum on more platforms Signed-off-by: Matt Turner gentoo.org> targets/support/create-iso.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index b32c669e..955fedd0 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -118,6 +118,8 @@ run_mkisofs() { # Here we actually create the ISO images for each architecture case ${clst_hostarch} in alpha) + isoroot_checksum + 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" ;; @@ -219,6 +221,8 @@ case ${clst_hostarch} in esac ;; ppc*|powerpc*|sparc*) + isoroot_checksum + case ${clst_hostarch} in sparc*) extra_opts="--sparc-boot" ;; esac