diff options
Diffstat (limited to 'scripts/xds-utils')
-rwxr-xr-x | scripts/xds-utils/install-agl-sdks.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/xds-utils/install-agl-sdks.sh b/scripts/xds-utils/install-agl-sdks.sh index f230569..5442552 100755 --- a/scripts/xds-utils/install-agl-sdks.sh +++ b/scripts/xds-utils/install-agl-sdks.sh @@ -8,7 +8,8 @@ # Support only poky_agl profile for now PROFILE="poky-agl" -SDKS=$(curl -s ${SDK_BASEURL} | grep -oP 'href="[^"]*.sh"' | cut -d '"' -f 2) +# Dynamically retreive SDKs (reduce timeout in case of iot website is not available) +SDKS=$(curl -s ${SDK_BASEURL} --connect-timeout 10 | grep -oP 'href="[^"]*.sh"' | cut -d '"' -f 2) || echo "WARNING: IoT.bzh download site not available." usage() { echo "Usage: $(basename $0) [-h|--help] [-clean] [-f|--file <agl-sdk-filename>] [-a|--arch <arch name>] [-l|--list]" |