diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2021-03-05 09:35:23 +0000 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2021-03-05 09:35:23 +0000 |
commit | 3280d0c3e1abcfe23fc39784b30a87f3670bab7e (patch) | |
tree | 3477e6ed8cc9b7f12a2d5d5b898322beffe616ec /jjb | |
parent | ecc8c3c6691fba1d2126d68e8fef69a8649b6ef8 (diff) |
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 <clabbe@baylibre.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-header.sh | 6 |
1 files changed, 4 insertions, 2 deletions
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 |