| Index: common.sh
|
| diff --git a/common.sh b/common.sh
|
| index a11f2572899ed6885699745aa73f8d32e90e79bb..6b55b707dc9afc97701f3edf82937fdc93ee376e 100644
|
| --- a/common.sh
|
| +++ b/common.sh
|
| @@ -14,6 +14,14 @@
|
| # and dpkg-buildpackage
|
| NUM_JOBS=`grep -c "^processor" /proc/cpuinfo`
|
|
|
| +# True if we have the 'pv' utility - also set up COMMON_PV_CAT for convenience
|
| +COMMON_PV_OK=1
|
| +COMMON_PV_CAT=pv
|
| +pv -V >/dev/null 2>&1 || COMMON_PV_OK=0
|
| +if [ $COMMON_PV_OK -eq 0 ]; then
|
| + COMMON_PV_CAT=cat
|
| +fi
|
| +
|
| # Store location of the calling script.
|
| TOP_SCRIPT_DIR="${TOP_SCRIPT_DIR:-$(dirname $0)}"
|
|
|
| @@ -124,6 +132,12 @@ else
|
| INSIDE_CHROOT=0
|
| fi
|
|
|
| +
|
| +# Standard filenames
|
| +CHROMEOS_IMAGE_NAME="chromiumos_image.bin"
|
| +CHROMEOS_TEST_IMAGE_NAME="chromiumos_test_image.bin"
|
| +
|
| +
|
| # Directory locations inside the dev chroot
|
| CHROOT_TRUNK_DIR="/home/$USER/trunk"
|
|
|
| @@ -527,3 +541,46 @@ chroot_hacks_from_outside() {
|
| sudo bash -c "echo root ALL=\(ALL\) ALL >> \"${chroot_dir}/etc/sudoers\""
|
| fi
|
| }
|
| +
|
| +# This function converts a chromiumos image into a test image, either
|
| +# in place or by copying to a new test image filename first. It honors
|
| +# the following flags (see mod_image_for_test.sh)
|
| +#
|
| +# --factory
|
| +# --factory_install
|
| +# --force_copy
|
| +#
|
| +# On entry, pass the directory containing the image, and the image filename
|
| +# On exit, it puts the pathname of the resulting test image into
|
| +# CHROMEOS_RETURN_VAL
|
| +# (yes this is ugly, but perhaps less ugly than the alternatives)
|
| +#
|
| +# Usage:
|
| +# SRC_IMAGE=$(prepare_test_image "directory" "imagefile")
|
| +prepare_test_image() {
|
| + # If we're asked to modify the image for test, then let's make a copy and
|
| + # modify that instead.
|
| + # Check for manufacturing image.
|
| + local args
|
| +
|
| + if [ ${FLAGS_factory} -eq ${FLAGS_TRUE} ]; then
|
| + args="--factory"
|
| + fi
|
| +
|
| + # Check for install shim.
|
| + if [ ${FLAGS_factory_install} -eq ${FLAGS_TRUE} ]; then
|
| + args="--factory_install"
|
| + fi
|
| +
|
| + # Check for forcing copy of image
|
| + if [ ${FLAGS_force_copy} -eq ${FLAGS_TRUE} ]; then
|
| + args="${args} --force_copy"
|
| + fi
|
| +
|
| + # Modify the image for test, creating a new test image
|
| + "${SCRIPTS_DIR}/mod_image_for_test.sh" --board=${FLAGS_board} \
|
| + --image="$1/$2" --noinplace ${args}
|
| +
|
| + # From now on we use the just-created test image
|
| + CHROMEOS_RETURN_VAL="$1/${CHROMEOS_TEST_IMAGE_NAME}"
|
| +}
|
|
|