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 DA203138350 for ; Wed, 8 Apr 2020 03:28:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D54EE09BB; Wed, 8 Apr 2020 03:28:20 +0000 (UTC) Received: from mail-pl1-f193.google.com (mail-pl1-f193.google.com [209.85.214.193]) (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 1674AE09BB for ; Wed, 8 Apr 2020 03:28:20 +0000 (UTC) Received: by mail-pl1-f193.google.com with SMTP id v2so645617plp.9 for ; Tue, 07 Apr 2020 20:28:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=eMw6hR7cREUtDRNXRWBZmvFZTA9il0XTlxcQ2zUn9r0=; b=evjLQ4hptyOQdxC+ZIPvU9EBlpnC94qQCodygjpIQokgZf/Zy5Vqb8x4WonQyEO/B3 R5NgC4xQKN+GjTtMyoxDDrUErYuk/48wttnRyjLQE2daQrxgE16+cd8AmW/CvCUc7eEJ zclFG1gB+DWZTBtFMpNOkA1IgpGoSzXbvlCFdB9sX53zDNL68q1D4RYc0h2qUb3uCO83 EB2F1f/0RMQAzy5MVt05R/PqxaBWLsOP7oKMxoM4MPzEd0fHxFfCBnxznxLVRY1dEtuh F0gA/fLCbqjHqaTmQSahhGMj9kLvxs6NYhwEqNmLuVjs3E9+s35WAk4QJd9Rj2AewaDp pj9Q== X-Gm-Message-State: AGi0Pub4fSSUGndlGRcNCLLZUyezaqRcrBXoVNlYic7bRtPAkAxf9xpC Gg+7hIOAjxZe3/iQjg2F9SowB/61 X-Google-Smtp-Source: APiQypKo791SRYibERSFnWgSBkgDo3XcF7YdXDCQwAHQBo77kJFhcOAhU48KTOu0QkTj2RA7WwX+lw== X-Received: by 2002:a17:90a:c583:: with SMTP id l3mr2969530pjt.84.1586316498743; Tue, 07 Apr 2020 20:28:18 -0700 (PDT) Received: from localhost ([134.134.137.79]) by smtp.gmail.com with ESMTPSA id d21sm15253754pfo.49.2020.04.07.20.28.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 07 Apr 2020 20:28:18 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 4/5] targets: Support isoroot checksum on more platforms Date: Tue, 7 Apr 2020 20:27:52 -0700 Message-Id: <20200408032753.105267-4-mattst88@gentoo.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200408032753.105267-1-mattst88@gentoo.org> References: <20200408032753.105267-1-mattst88@gentoo.org> 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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: e9473b84-0bf2-4291-8b96-0ecce10b3c83 X-Archives-Hash: 876c6c4c760e6f05af4a941da2b66831 Signed-off-by: Matt Turner --- 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 -- 2.24.1