Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(962)

Unified Diff: scripts/image_signing/convert_recovery_to_ssd.sh

Issue 6533015: Add script to in-place modify a recovery image to ssd (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: 80 chars Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/image_signing/sign_official_build.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/image_signing/convert_recovery_to_ssd.sh
diff --git a/scripts/image_signing/convert_recovery_to_ssd.sh b/scripts/image_signing/convert_recovery_to_ssd.sh
new file mode 100755
index 0000000000000000000000000000000000000000..9b078afe80b01b22a3ceddeaa806979b5763faad
--- /dev/null
+++ b/scripts/image_signing/convert_recovery_to_ssd.sh
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+# Copyright (c) 2011 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.
+
+# Script to convert a recovery image into an SSD image. Changes are made in-
+# place.
+
+# Load common constants and variables.
+. "$(dirname "$0")/common_minimal.sh"
+
+usage() {
+ cat <<EOF
+Usage: $PROG <image> [--force]
+
+In-place converts recovery <image> into an SSD image. With --force, does not ask for
+confirmation from the user.
+
+EOF
+}
+
+if [ $# -gt 2 ]; then
+ usage
+ exit 1
+fi
+
+type -P cgpt &>/dev/null ||
+ { echo "cgpt tool must be in the path"; exit 1; }
+
+# Abort on errors.
+set -e
+
+IMAGE=$1
+IS_FORCE=$2
+
+if [ "${IS_FORCE}" != "--force" ]; then
+ echo "This will modify ${IMAGE} in-place and convert it into an SSD image."
+ read -p "Are you sure you want to continue (y/N)?" SURE
+ SURE="${SURE:0:1}"
+ [ "${SURE}" != "y" ] && exit 1
+fi
+
+kerna_offset=$(partoffset ${IMAGE} 2)
+kernb_offset=$(partoffset ${IMAGE} 4)
+# Kernel partition sizes should be the same.
+kern_size=$(partsize ${IMAGE} 2)
+
+# Move Kernel B to Kernel A.
+kernb=$(make_temp_file)
+echo "Replacing Kernel partition A with Kernel partition B"
+extract_image_partition ${IMAGE} 4 ${kernb}
+replace_image_partition ${IMAGE} 2 ${kernb}
+
+# Overwrite the vblock.
+stateful_dir=$(make_temp_dir)
+tmp_vblock=$(make_temp_file)
+mount_image_partition_ro ${IMAGE} 1 ${stateful_dir}
+sudo cp ${stateful_dir}/vmlinuz_hd.vblock ${tmp_vblock}
+# Unmount before overwriting image to avoid sync issues.
+sudo umount -d ${stateful_dir}
+echo "Overwriting kernel partition A vblock with SSD vblock"
+sudo dd if=${tmp_vblock} of=${IMAGE} seek=${kerna_offset} bs=512 conv=notrunc
+
+# Zero out Kernel B partition.
+echo "Zeroing out Kernel partition B"
+sudo dd if=/dev/zero of=${IMAGE} seek=${kernb_offset} bs=512 count=${kern_size} conv=notrunc
+echo "${IMAGE} was converted to an SSD image."
« no previous file with comments | « no previous file | scripts/image_signing/sign_official_build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698