diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-03-09 10:12:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2021-03-09 10:12:55 +0000 |
commit | f82cd14def7370b5be40f7bb5fb0d8206e0db1dd (patch) | |
tree | c7847066383df9a306c270172063dac42759a790 | |
parent | adcbd80872d811ba5f094016fb5c21f8f839020f (diff) | |
parent | 3280d0c3e1abcfe23fc39784b30a87f3670bab7e (diff) |
Merge "SPEC-3811: Use a different rootfs image for h3ulcb-nogfx build"
-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 |