aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/common/include-apps-fetch-install-sdk.sh
diff options
context:
space:
mode:
authorbuild.automotivelinux.org <jenkins@automotivelinux.org>2019-06-19 19:32:28 +0200
committerbuild.automotivelinux.org <jenkins@automotivelinux.org>2019-06-19 19:32:45 +0200
commite7e5abe204b4bb2808945bf6f7de7c09eb002016 (patch)
treeedb163b8f3b19c8c5adabe5ceb20983e1fe236e5 /jjb/common/include-apps-fetch-install-sdk.sh
parent7128200e94862a96e1b579a6deaba5de3263f6ec (diff)
Use the generic qemu* toolchains for the applications
We no longer need to pick a specific board for an architecture. All supported architecture (x86-64, arm, aarch64) have now a qemu target and a matching toolchain. Bug-AGL: SPEC-2540 Change-Id: I4f77acb10c1e35e745e2a2c11aee1f8f49cb96ab Signed-off-by: build.automotivelinux.org <jenkins@automotivelinux.org>
Diffstat (limited to 'jjb/common/include-apps-fetch-install-sdk.sh')
-rw-r--r--jjb/common/include-apps-fetch-install-sdk.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/jjb/common/include-apps-fetch-install-sdk.sh b/jjb/common/include-apps-fetch-install-sdk.sh
index 49fb27b6..42847c4f 100644
--- a/jjb/common/include-apps-fetch-install-sdk.sh
+++ b/jjb/common/include-apps-fetch-install-sdk.sh
@@ -15,6 +15,11 @@ SDKHOSTDIR="~/agl-sdk"
# should probably switch to release ... or multiple (release/snapshot) fwiw
if test x"" = x"$AGLBRANCH"; then echo "AGLBRANCH not set, quitting" ; exit 1 ; fi
+if test x"albacore" = x"$AGLBRANCH"; then echo "Unsupported branch"; exit 0; fi
+if test x"blowfish" = x"$AGLBRANCH"; then echo "Unsupported branch"; exit 0; fi
+if test x"chinook" = x"$AGLBRANCH"; then echo "Unsupported branch"; exit 0; fi
+if test x"dab" = x"$AGLBRANCH"; then echo "Unsupported branch"; exit 0; fi
+
# default to release
SDKBASEURL="http://download.automotivelinux.org/AGL/release/${AGLBRANCH}/latest/${TARGETSDKMACHINE}/deploy/sdk/"
@@ -24,8 +29,8 @@ if test x"master" = x"$AGLBRANCH" ; then
fi
# special case for dab
if test x"dab" = x"$AGLBRANCH" ; then
- if test x"dragonboard-410c" = x"$TARGETSDKMACHINE"; then
- echo "Skipping dragonboard-410c/aarch64 .... "
+ if test x"qemuarm64" = x"$TARGETSDKMACHINE"; then
+ echo "Skipping aarch64 .... "
exit 0
fi
SDKBASEURL="http://download.automotivelinux.org/AGL/release/dab/latest/${TARGETSDKMACHINE}/deploy/sdk/"