image_getver: remove

This utility does not meet the shell style guide.  As it is not in use, remove it instead of getting it to a maintainable state.

BUG=None
TEST=None

Change-Id: Iab7218eff0f13386121204fa31997b5d288aa1ca
Reviewed-on: https://chromium-review.googlesource.com/1724834
Tested-by: Erick Ramos <erickramos@chromium.org>
Commit-Ready: Kevin Shelton <kmshelton@chromium.org>
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: Kevin Shelton <kmshelton@chromium.org>
diff --git a/provingground/firmware/image_getver.sh b/provingground/firmware/image_getver.sh
deleted file mode 100755
index 7328cc0..0000000
--- a/provingground/firmware/image_getver.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-#
-# Copyright 2016 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-#
-# Given a chrome OS bin file, extract and display the firmware version.
-# Usage: $0 chromiumos_image.bin
-#
-
-CHROOT=~/chromiumos
-IMG=$1
-
-cd $CHROOT
-if [ -z "$IMG" ]; then
-  cros_sdk -- sudo dd if=/dev/sdd of=/tmp/chromiumos_image.bin bs=1M
-  cat <<EOF | cros_sdk
-  /home/$USER/trunk/src/scripts/mount_gpt_image.sh -f /tmp -i chromiumos_image.bin
-  /tmp/m/usr/sbin/chromeos-firmwareupdate -V
-  cat /tmp/m/etc/lsb-release
-  /home/$USER/trunk/src/scripts/mount_gpt_image.sh -u --image /tmp/chromiumos_image.bin
-  rm /tmp/chromiumos_image.bin
-EOF
-else
-  cp $IMG $CHROOT/chroot/tmp
-  filename=$(basename $IMG)
-  cat <<EOF | cros_sdk
-  /home/$USER/trunk/src/scripts/mount_gpt_image.sh -f /tmp -i $filename
-  /tmp/m/usr/sbin/chromeos-firmwareupdate -V
-  cat /tmp/m/etc/lsb-release
-  /home/$USER/trunk/src/scripts/mount_gpt_image.sh -u --image /tmp/$filename
-  rm /tmp/$filename
-EOF
-fi