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

Unified Diff: scripts/image_signing/make_dev_ssd.sh

Issue 5698004: make_dev_ssh.sh should handle image C as well (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: Created 10 years 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: scripts/image_signing/make_dev_ssd.sh
diff --git a/scripts/image_signing/make_dev_ssd.sh b/scripts/image_signing/make_dev_ssd.sh
index c189eb6777b6c9468121b312e4539ac5920095dd..9006b6ebbd417bae81afb0b30e1a44bad3425aad 100755
--- a/scripts/image_signing/make_dev_ssd.sh
+++ b/scripts/image_signing/make_dev_ssd.sh
@@ -91,6 +91,9 @@ cros_kernel_name() {
4)
echo "Kernel B"
;;
+ 6)
+ echo "Kernel C"
+ ;;
*)
err_die "unknown kernel index: $1"
esac
@@ -107,7 +110,7 @@ resign_ssd_kernel() {
local max_kernel_size=65536
local resigned_kernels=0
- for kernel_index in 2 4; do
+ for kernel_index in 2 4 6; do
local old_blob="$(make_temp_file)"
local new_blob="$(make_temp_file)"
local name="$(cros_kernel_name $kernel_index)"
« 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