diff options
-rw-r--r-- | jjb/common/include-apps-fetch-install-sdk.sh | 4 | ||||
-rw-r--r-- | jjb/common/include-apps-header.sh | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/jjb/common/include-apps-fetch-install-sdk.sh b/jjb/common/include-apps-fetch-install-sdk.sh index 5bcd4611..0d231865 100644 --- a/jjb/common/include-apps-fetch-install-sdk.sh +++ b/jjb/common/include-apps-fetch-install-sdk.sh @@ -47,9 +47,7 @@ export TARGETSDKNAME=$(curl -s "$SDKBASEURL" | grep -e "crosssdk.*\.sh<" | sed - if test x"" = x"${TARGETSDKNAME}" ; then echo "Could not retrieve TARGETSDKNAME from download.automotivelinux.org" - echo "Abort gracefully." - exit 0 - #exit 1 + exit 1 fi #set -x if test ! -f ${TARGETSDKNAME} ; then diff --git a/jjb/common/include-apps-header.sh b/jjb/common/include-apps-header.sh index 9a4e54b6..bc147a91 100644 --- a/jjb/common/include-apps-header.sh +++ b/jjb/common/include-apps-header.sh @@ -107,11 +107,11 @@ case "$TARGETARCH" in export TARGETSDKMACHINE="qemuarm" ;; x86-64) + export TARGETSDKARCH="corei7-64" + # starting with master, we use qemu for the SDK. 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 ;; |