From 3100e1bb981f3fc795d45f99df1897297295e547 Mon Sep 17 00:00:00 2001 From: Alex Tsitsiura Date: Mon, 28 Nov 2022 15:56:44 +0200 Subject: [PATCH] [Telink] Update Telink Docker with latest Telink Zephyr (SDK 0.15.1). --- .../docker/images/chip-build-telink/Dockerfile | 10 +++++----- .../docker/images/chip-build-vscode/Dockerfile | 4 ++-- integrations/docker/images/chip-build/version | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/integrations/docker/images/chip-build-telink/Dockerfile b/integrations/docker/images/chip-build-telink/Dockerfile index 5f6b08c5b04ad8..d64039ab704c5a 100644 --- a/integrations/docker/images/chip-build-telink/Dockerfile +++ b/integrations/docker/images/chip-build-telink/Dockerfile @@ -11,13 +11,13 @@ RUN set -x \ # Setup toolchain RUN set -x \ - && wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.13.2/zephyr-toolchain-riscv64-0.13.2-linux-x86_64-setup.run -O /tmp/zephyr-toolchain-riscv64-setup.run \ + && wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.15.1/zephyr-toolchain-riscv64-0.15.1-linux-x86_64-setup.run -O /tmp/zephyr-toolchain-riscv64-setup.run \ && chmod +x /tmp/zephyr-toolchain-riscv64-setup.run \ - && /tmp/zephyr-toolchain-riscv64-setup.run -- -d /opt/telink/zephyr-sdk-0.13.2 \ + && /tmp/zephyr-toolchain-riscv64-setup.run -- -d /opt/telink/zephyr-sdk-0.15.1 \ && : # last line # Setup Zephyr -ARG ZEPHYR_REVISION=dac17979d626bb820268660b4272a56d04d8083b +ARG ZEPHYR_REVISION=cb97e73b88b278a6e50b383f509ec6184725020d WORKDIR /opt/telink/zephyrproject RUN set -x \ && python3 -m pip install -U --no-cache-dir \ @@ -34,11 +34,11 @@ RUN set -x \ FROM connectedhomeip/chip-build:${VERSION} -COPY --from=build /opt/telink/zephyr-sdk-0.13.2/ /opt/telink/zephyr-sdk-0.13.2/ +COPY --from=build /opt/telink/zephyr-sdk-0.15.1/ /opt/telink/zephyr-sdk-0.15.1/ COPY --from=build /opt/telink/zephyrproject/ /opt/telink/zephyrproject/ ENV ZEPHYR_TOOLCHAIN_VARIANT=zephyr -ENV ZEPHYR_SDK_INSTALL_DIR=/opt/telink/zephyr-sdk-0.13.2 +ENV ZEPHYR_SDK_INSTALL_DIR=/opt/telink/zephyr-sdk-0.15.1 RUN set -x \ && apt-get update \ diff --git a/integrations/docker/images/chip-build-vscode/Dockerfile b/integrations/docker/images/chip-build-vscode/Dockerfile index eb49bab5f87f7c..6711957aa060d9 100644 --- a/integrations/docker/images/chip-build-vscode/Dockerfile +++ b/integrations/docker/images/chip-build-vscode/Dockerfile @@ -34,7 +34,7 @@ COPY --from=mbedos /opt/openocd/ /opt/openocd/ COPY --from=p6 /opt/ModusToolbox /opt/ModusToolbox COPY --from=telink /opt/telink/zephyrproject /opt/telink/zephyrproject -COPY --from=telink /opt/telink/zephyr-sdk-0.13.2 /opt/telink/zephyr-sdk-0.13.2 +COPY --from=telink /opt/telink/zephyr-sdk-0.15.1 /opt/telink/zephyr-sdk-0.15.1 COPY --from=tizen /opt/tizen-sdk /opt/tizen-sdk @@ -102,7 +102,7 @@ ENV QEMU_ESP32=/opt/espressif/qemu/xtensa-softmmu/qemu-system-xtensa ENV QEMU_ESP32_DIR=/opt/espressif/qemu ENV SYSROOT_AARCH64=/opt/ubuntu-21.04-aarch64-sysroot ENV TELINK_ZEPHYR_BASE=/opt/telink/zephyrproject/zephyr -ENV TELINK_ZEPHYR_SDK_DIR=/opt/telink/zephyr-sdk-0.13.2 +ENV TELINK_ZEPHYR_SDK_DIR=/opt/telink/zephyr-sdk-0.15.1 ENV TI_SYSCONFIG_ROOT=/opt/ti/sysconfig_1.13.0 ENV ZEPHYR_BASE=/opt/NordicSemiconductor/nrfconnect/zephyr ENV ZEPHYR_TOOLCHAIN_VARIANT=gnuarmemb diff --git a/integrations/docker/images/chip-build/version b/integrations/docker/images/chip-build/version index 9d2a1e88240ae6..3aa9795468b20f 100644 --- a/integrations/docker/images/chip-build/version +++ b/integrations/docker/images/chip-build/version @@ -1 +1 @@ -0.6.12 Version bump reason: Update Bouffalo Lab build environment. +0.6.13 Version bump reason: [Telink] Update Telink Docker with latest Telink Zephyr (SDK 0.15.1).