From 732d5886274bbe495c443cdb821ba8d866b727cc Mon Sep 17 00:00:00 2001 From: David Michael Date: Mon, 27 Feb 2017 17:00:20 -0800 Subject: [PATCH] Revert "offline_signing: download all UEFI binaries" This reverts commit d91c0c398f63599e1a5af37ed06ed58bd91f6a77. --- offline_signing/download.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/offline_signing/download.sh b/offline_signing/download.sh index b4123fe8c2..d2f305b4aa 100755 --- a/offline_signing/download.sh +++ b/offline_signing/download.sh @@ -3,29 +3,18 @@ set -ex BOARD="$1" VERSION="$2" -GS="gs://builds.release.core-os.net/unsigned/boards/$BOARD/$VERSION" +GS="gs://builds.release.core-os.net/stable/boards/$BOARD/$VERSION" cd "${3:-.}" -# The shim only exists for amd64 boards. -[ "x${BOARD}" = xamd64-usr ] && shim=1 || shim= - gsutil cp \ "${GS}/coreos_production_image.vmlinuz" \ "${GS}/coreos_production_image.vmlinuz.sig" \ - "${GS}/coreos_production_image.grub" \ - "${GS}/coreos_production_image.grub.sig" \ - ${shim:+ - "${GS}/coreos_production_image.shim" - "${GS}/coreos_production_image.shim.sig" - } \ "${GS}/coreos_production_update.bin.bz2" \ "${GS}/coreos_production_update.bin.bz2.sig" \ "${GS}/coreos_production_update.zip" \ "${GS}/coreos_production_update.zip.sig" ./ gpg --verify "coreos_production_image.vmlinuz.sig" -gpg --verify "coreos_production_image.grub.sig" -[ -z "$shim" ] || gpg --verify "coreos_production_image.shim.sig" gpg --verify "coreos_production_update.bin.bz2.sig" gpg --verify "coreos_production_update.zip.sig"