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

Unified Diff: mod_image_for_recovery.sh

Issue 2948005: remove handling of kernel verification block from recovery image (Closed) Base URL: ssh://git@chromiumos-git/crosutils.git
Patch Set: Created 10 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mod_image_for_recovery.sh
diff --git a/mod_image_for_recovery.sh b/mod_image_for_recovery.sh
index 5d927f1931c547e9205613de7e2320342cba8877..faa240c3cd7560f665f8559d73271895e842b7ff 100755
--- a/mod_image_for_recovery.sh
+++ b/mod_image_for_recovery.sh
@@ -46,11 +46,6 @@ mount_gpt_cleanup() {
# Modifies an existing image for recovery use
update_recovery_packages() {
local image_name=$1
- local sector_size=512 # sector size in bytes
- local num_sectors_vb=128 # number of sectors in kernel verification blob
- # Start offset of kernel A (aligned to 4096-sector boundary)
- local start_kern_a=4096
- local vb_file="${STATEFUL_FS_DIR}/verification_blob.kernel"
echo "Modifying image ${image_name} for recovery use"
@@ -63,19 +58,6 @@ update_recovery_packages() {
# Mark the image as a recovery image (needed for recovery boot)
sudo touch "${STATEFUL_FS_DIR}/.recovery"
- # Copy verification blob out of kernel A into stateful partition
- # so that we can restore it during recovery
- sudo touch $vb_file
- echo "Backing up kernel verification blob onto stateful partition ..."
- sudo dd if="$image_name" of="$vb_file" skip=$start_kern_a bs=$sector_size \
- count=$num_sectors_vb conv=notrunc
-
- # Overwrite verification blob with recovery image verification blob
- # TODO(tgao): resign kernel for recovery image
- echo "Overwrite kernel verification blob with resigned blob for recovery..."
- sudo dd if=/dev/zero of="$image_name" seek=$start_kern_a bs=$sector_size \
- count=$num_sectors_vb conv=notrunc
-
trap - EXIT
${SCRIPTS_DIR}/mount_gpt_image.sh -u -r "${ROOT_FS_DIR}" \
-s "${STATEFUL_FS_DIR}"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698