diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-03-23 22:09:13 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-03-23 22:09:13 +0100 |
commit | c78d5cb2dabb9600e50e082ea6a8e0de74bb292a (patch) | |
tree | 33e3f141916431659585336c325d1cb2d0cbb0aa | |
parent | 83531224e866ba5066c54b3d9d478fc7cf144530 (diff) |
Change SDK location to qemu for master branch
We merged intel-corei7-64 with qemux86-64. Thus adapt the SDK location.
Bug-AGL: SPEC-2931
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I65eea92c3c3956682645c787104c64779977e240
-rw-r--r-- | jjb/common/include-apps-header.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/jjb/common/include-apps-header.sh b/jjb/common/include-apps-header.sh index 22c9b6a2..9a4e54b6 100644 --- a/jjb/common/include-apps-header.sh +++ b/jjb/common/include-apps-header.sh @@ -107,8 +107,13 @@ case "$TARGETARCH" in export TARGETSDKMACHINE="qemuarm" ;; x86-64) - export TARGETSDKARCH="corei7-64" - export TARGETSDKMACHINE="intel-corei7-64" + if test x"master" = x"$AGLBRANCH" ; then + export TARGETSDKARCH="qemux86-64" + export TARGETSDKMACHINE="qemux86-64" + else + export TARGETSDKARCH="corei7-64" + export TARGETSDKMACHINE="intel-corei7-64" + fi ;; aarch64) export TARGETSDKARCH="aarch64" |