aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-10 09:25:36 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-10 09:25:51 +0100
commitf0ef71b0196c6df4e7dfb0f3cc543b865381e51a (patch)
tree2d4a49c30f780ec22482b5606b9781a0f923a525
parentdd877bc8168c1a87a9d05d36f42b333b861c6e7e (diff)
Update sdks list with EEL/5.0.0 release.v1.0.1
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rwxr-xr-xscripts/sdks/agl/_build-sdks-json.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/sdks/agl/_build-sdks-json.sh b/scripts/sdks/agl/_build-sdks-json.sh
index 82cb2f3..6a6ad4e 100755
--- a/scripts/sdks/agl/_build-sdks-json.sh
+++ b/scripts/sdks/agl/_build-sdks-json.sh
@@ -24,11 +24,9 @@ SDK_AGL_IOTBZH_BASEURL="http://iot.bzh/download/public/XDS/sdk"
DOWNLOADABLE_URLS="
${SDK_AGL_BASEURL}/snapshots/master/latest/*/deploy/sdk
- ${SDK_AGL_BASEURL}/release/dab/3.99.3/m3ulcb-nogfx/deploy/sdk
${SDK_AGL_BASEURL}/release/dab/4.0.2/*/deploy/sdk
- ${SDK_AGL_BASEURL}/release/eel/4.99.4/*/deploy/sdk
- ${SDK_AGL_BASEURL}/release/eel/latest/*/deploy/sdk
+ ${SDK_AGL_BASEURL}/release/eel/5.0.0/*/deploy/sdk
${SDK_AGL_IOTBZH_BASEURL}
"
@@ -82,6 +80,12 @@ for url in $(echo $urls); do
name=$(echo "AGL-$(echo ${endUrl} | cut -d'/' -f2,3,4,5)" | sed s:/:-:g)
fi
+ # Distringuish qemux86-64 and corei7-64
+ if [[ "$name" == *"qemux86-64"* && "$arch" == "corei7-64" ]]; then
+ arch="qemux86-64"
+ fi
+
+
[ "${profile}" = "" ] && { echo " ERROR: profile not set" continue; }
[ "${version}" = "" ] && { echo " ERROR: version not set" continue; }
[ "${arch}" = "" ] && { echo " ERROR: arch not set" continue; }