aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2018-01-18 16:55:52 -0600
committerDaniel Díaz <daniel.diaz@linaro.org>2018-01-18 16:55:52 -0600
commit9f07f829a5c4284e41e5228422f89507816ab427 (patch)
tree59f6ac3ccd980098514bfbd95dade7904502c6a8
parent11494c0de1da5c73968907c8b4b15fa837a5ccb0 (diff)
rpb-openembedded/builders.sh: use regular image for LAVA
The LAVA console image is too big to fit in X15's. Jobs currently fail because of that. Since this image is solely used for boot testing for the time being, we can resort to the regular console image while the LAVA image makes progress in its new year's resolution of being more fit. Change-Id: I2169bf291526faeb997e7594f8c5ef73ce7061cb Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
-rwxr-xr-xrpb-openembedded/builders.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/rpb-openembedded/builders.sh b/rpb-openembedded/builders.sh
index 1eb8e68f52..28d8b6ec2f 100755
--- a/rpb-openembedded/builders.sh
+++ b/rpb-openembedded/builders.sh
@@ -93,7 +93,7 @@ cat conf/{site,auto}.conf
[ "${DISTRO}" = "rpb" ] && IMAGES+=" rpb-desktop-image rpb-desktop-image-lava"
[ "${DISTRO}" = "rpb-wayland" ] && IMAGES+=" rpb-weston-image rpb-weston-image-lava"
-[ "${MACHINE}" = "am57xx-evm" ] && IMAGES="rpb-console-image rpb-console-image-lava"
+[ "${MACHINE}" = "am57xx-evm" ] && IMAGES="rpb-console-image"
time bitbake ${IMAGES}
@@ -163,7 +163,12 @@ ROOTFS_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "rpb-console-image-lava-${MA
ROOTFS_DESKTOP_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "rpb-desktop-image-lava-${MACHINE}-*-${BUILD_NUMBER}.rootfs.img.gz" | xargs -r basename)
KERNEL_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "uImage-*-${MACHINE}-*-${BUILD_NUMBER}.bin" | xargs -r basename)
case "${MACHINE}" in
- am57xx-evm|juno)
+ am57xx-evm)
+ # LAVA image is too big for am57xx-evm
+ ROOTFS_IMG=$(find ${DEPLOY_DIR_IMAGE} -type f -name "rpb-console-image-${MACHINE}-*-${BUILD_NUMBER}.rootfs.img.gz" | xargs -r basename)
+ # FIXME: several dtb files case
+ ;;
+ juno)
# FIXME: several dtb files case
;;
*)