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

Unified Diff: scripts/image_signing/make_dev_firmware.sh

Issue 6727019: vboot_reference: fix make_dev_firmware to fit latest dev firmware design (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: split and remove non-related fix Created 9 years, 9 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: scripts/image_signing/make_dev_firmware.sh
diff --git a/scripts/image_signing/make_dev_firmware.sh b/scripts/image_signing/make_dev_firmware.sh
index 3a9348dc2b54076c4184e51c30f2c89e54483f81..d66d6f65c504a807cc3ef960043e470651c60e08 100755
--- a/scripts/image_signing/make_dev_firmware.sh
+++ b/scripts/image_signing/make_dev_firmware.sh
@@ -141,6 +141,8 @@ main() {
local recovery_pubkey="$FLAGS_keys/recovery_key.vbpubk"
local firmware_keyblock="$FLAGS_keys/firmware.keyblock"
local firmware_prvkey="$FLAGS_keys/firmware_data_key.vbprivk"
+ local dev_firmware_keyblock="$FLAGS_keys/dev_firmware.keyblock"
+ local dev_firmware_prvkey="$FLAGS_keys/dev_firmware_data_key.vbprivk"
local kernel_sub_pubkey="$FLAGS_keys/kernel_subkey.vbpubk"
local new_bmpfv="$FLAGS_bmpfv"
local is_from_live=0
@@ -225,6 +227,8 @@ main() {
"$IMAGE" \
"$firmware_prvkey" \
"$firmware_keyblock" \
+ "$dev_firmware_prvkey" \
+ "$dev_firmware_keyblock" \
"$kernel_sub_pubkey" >"$EXEC_LOG" 2>&1 ||
err_die "Failed to re-sign firmware. (message: $(cat "$EXEC_LOG"))"
« 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