X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fxds-utils%2Finstall-agl-sdks.sh;h=8c0ee84ba946fb3261ecb2c964151628f5d11ddc;hb=9dae26d67efff3a2fa7148228c7e9011501d24bb;hp=36849f976fee5b1d7b795f271a1ca2bc008b1bfc;hpb=d3cb7d647c0f3c3aad9a60a8655b1f5427bbd778;p=src%2Fxds%2Fxds-server.git diff --git a/scripts/xds-utils/install-agl-sdks.sh b/scripts/xds-utils/install-agl-sdks.sh index 36849f9..8c0ee84 100755 --- a/scripts/xds-utils/install-agl-sdks.sh +++ b/scripts/xds-utils/install-agl-sdks.sh @@ -12,7 +12,7 @@ SDKS=$(curl -s ${SDK_BASEURL} | grep -oP 'href="[^"]*.sh"' | cut -d '"' -f 2) usage() { echo "Usage: $(basename $0) [-h|--help] [-clean] [-f|--file ] [-a|--arch ] [-l|--list]" - echo "For example, arch name is: aarch64, armv7vehf or x86-64" + echo "For example, arch name is: aarch64, armv7vehf or corei7-64" exit 1 } @@ -61,14 +61,20 @@ while [ $# -ne 0 ]; do shift done +if [ "$ARCH" = "x86-64" ]; then + echo "Warning x86-64 architure name is deprecated, please use corei7-64 instead !" + exit 1 +fi + [ ! -d ${XDT_SDK} ] && mkdir -p ${XDT_SDK} if [ "$FILE" = "" ]; then FILE=$(getFile $ARCH) - SDK_FILE=${XDT_SDK}/${FILE} - if [ "$?" != 0 ]; then + if [ "$?" != "0" ]; then + echo "$FILE" exit 1 fi + SDK_FILE=${XDT_SDK}/${FILE} elif [ ! -f $FILE ]; then echo "SDK file not found: $FILE" exit 1