From 9dae26d67efff3a2fa7148228c7e9011501d24bb Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 26 Jun 2017 09:44:47 +0200 Subject: [PATCH] Intel SDK is now named corei7-64. --- scripts/xds-utils/install-agl-sdks.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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 -- 2.16.6