From: Corentin LABBE Date: Fri, 5 Mar 2021 09:35:23 +0000 (+0000) Subject: SPEC-3811: Use a different rootfs image for h3ulcb-nogfx build X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F35%2F26135%2F1;p=ci-management.git SPEC-3811: Use a different rootfs image for h3ulcb-nogfx build For all branches (except jellyfish/halibut), h3ulcb-nogfx build based boards should now use the agl-demo-platform-crosssdk-h3ulcb.ext4.xz rootfs image. Change-Id: I57de9c9c20f97c7b36fab053ca4b6d6e0ad7fecd Bug-AGL: SPEC-3811 Signed-off-by: Corentin LABBE --- diff --git a/jjb/common/include-agl-header.sh b/jjb/common/include-agl-header.sh index b8b12ecb..f925f569 100644 --- a/jjb/common/include-agl-header.sh +++ b/jjb/common/include-agl-header.sh @@ -154,14 +154,16 @@ fi set -x # h3ulcb-nogfx means no graphic drivers if test x"h3ulcb-nogfx" = x"$MACHINE"; then - export TARGETIMAGE=${TARGETIMAGEnogfx} + if [ "${TARGETBRANCH}" = 'jellyfish' -o "${TARGETBRANCH}" = 'halibut' ];then + export TARGETIMAGE=${TARGETIMAGEnogfx} + export TARGETSDKIMAGE="agl-image-ivi-crosssdk" + fi if test x"master" = x"${TARGETBRANCH}" -o x"koi" = x"${TARGETBRANCH}"; then export TARGETFEATURES="${TARGETFEATURESnogfx} agl-refhw-h3" else export TARGETFEATURES="${TARGETFEATURESnogfx}" fi export TARGETMACHINE="h3ulcb" - export TARGETSDKIMAGE="agl-image-ivi-crosssdk" fi set +x