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
This commit is contained in:
Gaurav Shah
2011-01-05 14:47:45 -08:00
parent e37ff5d596
commit e13e480b7f

View File

@@ -15,6 +15,10 @@ GPT=cgpt
# The tag when the rootfs is changed. # The tag when the rootfs is changed.
TAG_NEEDS_TO_BE_SIGNED="/root/.need_to_be_signed" 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. # Array of actions that are executed during the clean up process.
declare -a cleanup_actions declare -a cleanup_actions