| Index: src/scripts/archive_build.sh
|
| diff --git a/src/scripts/archive_build.sh b/src/scripts/archive_build.sh
|
| index b09ed8e64975cd96eab0c212802cb047e9763cec..127638d71463e59951414b4b5e065d6b20a2cc69 100755
|
| --- a/src/scripts/archive_build.sh
|
| +++ b/src/scripts/archive_build.sh
|
| @@ -93,9 +93,11 @@ mkdir -p "$OUTDIR"
|
| if [ $FLAGS_test_mod -eq $FLAGS_TRUE ]
|
| then
|
| echo "Modifying image for test"
|
| - cp "${FLAGS_from}/rootfs.image" "${FLAGS_from}/rootfs_test.image"
|
| + SRC_IMAGE="${FLAGS_from}/chromiumos_image.bin"
|
| + cp -f "${SRC_IMAGE}" "${FLAGS_from}/chromiumos_test_image.bin"
|
| + SRC_IMAGE="${FLAGS_from}/chromiumos_test_image.bin"
|
| "${SCRIPTS_DIR}/mod_image_for_test.sh" --board $FLAGS_board --yes --image \
|
| - "${FLAGS_from}/rootfs_test.image"
|
| + "${SRC_IMAGE}"
|
| cd "${FLAGS_chroot}/build/${FLAGS_board}/usr/local"
|
| echo "Archiving autotest build artifacts"
|
| tar cjf "${FLAGS_from}/autotest.tar.bz2" autotest
|
|
|