summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGaurav Shah <gauravsh@chromium.org>2011-01-05 14:47:45 -0800
committerGaurav Shah <gauravsh@chromium.org>2011-01-05 14:47:45 -0800
commite13e480b7f7bec28f3ac00f61da57fbe87b3a166 (patch)
treeb9f6c4734500dc1a65ab09c03fa60b1e3f9d9590 /scripts
parente37ff5d5960c3a94809f54d7e412b387a7c396e5 (diff)
downloadvboot-e13e480b7f7bec28f3ac00f61da57fbe87b3a166.tar.gz
Fix missing file list variable defintions.
http://codereview.chromium.org/5878005 modified common.sh but the final checked in CL clobbered some of the variable defintions (most likely due to a manual merge) making the scripts that use it to fail. This CL puts them back. BUG=chrome-os-partner:1903 TEST=manual; sign_official_build gets hung before, works fine now. Change-Id: I8d19a086d66b0a0d1e9f7231a14fcf37d42a2f01 Review URL: http://codereview.chromium.org/6104002
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/image_signing/common.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/image_signing/common.sh b/scripts/image_signing/common.sh
index 1566b9d3..98229b01 100755
--- a/scripts/image_signing/common.sh
+++ b/scripts/image_signing/common.sh
@@ -15,6 +15,10 @@ GPT=cgpt
# The tag when the rootfs is changed.
TAG_NEEDS_TO_BE_SIGNED="/root/.need_to_be_signed"
+# List of Temporary files and mount points.
+TEMP_FILE_LIST=$(mktemp)
+TEMP_DIR_LIST=$(mktemp)
+
# Array of actions that are executed during the clean up process.
declare -a cleanup_actions