From a1756310190a044547f6d71ff5592486eb02a890 Mon Sep 17 00:00:00 2001 From: BujSet Date: Thu, 14 Aug 2025 18:08:26 +0000 Subject: [PATCH] Zephyr SDK Version Bump --- .ci/scripts/zephyr-utils.sh | 6 +++--- .github/workflows/trunk.yml | 2 +- examples/arm/setup.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ci/scripts/zephyr-utils.sh b/.ci/scripts/zephyr-utils.sh index 28dca2c1dfb..ac65f4f2d27 100644 --- a/.ci/scripts/zephyr-utils.sh +++ b/.ci/scripts/zephyr-utils.sh @@ -6,9 +6,9 @@ # LICENSE file in the root directory of this source tree. download_arm_zephyr_sdk () { - wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/zephyr-sdk-0.17.2_linux-x86_64.tar.xz - tar -xf zephyr-sdk-0.17.2_linux-x86_64.tar.xz - rm -f zephyr-sdk-0.17.2_linux-x86_64.tar.xz + wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/zephyr-sdk-0.17.3_linux-x86_64.tar.xz + tar -xf zephyr-sdk-0.17.3_linux-x86_64.tar.xz + rm -f zephyr-sdk-0.17.3_linux-x86_64.tar.xz } setup_zephyr_et_module () { diff --git a/.github/workflows/trunk.yml b/.github/workflows/trunk.yml index ee17524acce..c369f6709e2 100644 --- a/.github/workflows/trunk.yml +++ b/.github/workflows/trunk.yml @@ -92,7 +92,7 @@ jobs: # TODO @Bujji: Should see if this can be moved into the docker image itself download_arm_zephyr_sdk - ./zephyr-sdk-0.17.2/setup.sh -c -t arm-zephyr-eabi + ./zephyr-sdk-0.17.3/setup.sh -c -t arm-zephyr-eabi cd $ZEPHYR_PROJ_ROOT setup_zephyr_et_module diff --git a/examples/arm/setup.sh b/examples/arm/setup.sh index e5dc6d07ba4..5861809cbd0 100755 --- a/examples/arm/setup.sh +++ b/examples/arm/setup.sh @@ -277,7 +277,7 @@ function select_toolchain() { if [[ "${OS}" == "Linux" ]]; then if [[ "${target_toolchain}" == "zephyr" ]]; then # TODO can include support for zephyr toolchain for other host platforms later - toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz" + toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz" toolchain_dir="arm-zephyr-eabi" toolchain_md5_checksum="93128be0235cf5cf5f1ee561aa6eac5f" else @@ -299,7 +299,7 @@ function select_toolchain() { fi elif [[ "${OS}" == "Linux" ]]; then if [[ "${target_toolchain}" == "zephyr" ]]; then - toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-aarch64_arm-zephyr-eabi.tar.xz" + toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/toolchain_linux-aarch64_arm-zephyr-eabi.tar.xz" toolchain_dir="arm-zephyr-eabi" toolchain_md5_checksum="ef4ca56786204439a75270ba800cc64b" else