From 083662748f5c7fa30e7350c1e5b944b808965f23 Mon Sep 17 00:00:00 2001 From: Gilad Arnold Date: Wed, 8 Feb 2012 10:46:26 -0800 Subject: [PATCH] common.sh: add a variable for default recovery image name. This is a preparatory step for changes to image_to_usb.sh and mod_image_for_recovery.sh. In general, by migrating the default recovery image name to common.sh we can improve the interoperability between the different scripts. BUG=chromium-os:26010 TEST=Obvious change; tested to see the mod_image_for_recovery.sh and image_to_usb.sh still work. Change-Id: I765d665b656d5d25b2d9b0e40bf5c05048c3f255 Reviewed-on: https://gerrit.chromium.org/gerrit/15507 Commit-Ready: Gilad Arnold Reviewed-by: Gilad Arnold Tested-by: Gilad Arnold --- common.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/common.sh b/common.sh index a21cfa5384..340eddf694 100644 --- a/common.sh +++ b/common.sh @@ -196,6 +196,7 @@ BUILD_DIR= CHROMEOS_BASE_IMAGE_NAME="chromiumos_base_image.bin" CHROMEOS_IMAGE_NAME="chromiumos_image.bin" CHROMEOS_DEVELOPER_IMAGE_NAME="chromiumos_image.bin" +CHROMEOS_RECOVERY_IMAGE_NAME="recovery_image.bin" CHROMEOS_TEST_IMAGE_NAME="chromiumos_test_image.bin" CHROMEOS_FACTORY_TEST_IMAGE_NAME="chromiumos_factory_image.bin" CHROMEOS_FACTORY_INSTALL_SHIM_NAME="factory_install_shim.bin"