File tree 3 files changed +11
-3
lines changed
integrations/docker/images
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
- 5 : Use west to download the K32W0 SDK
1
+ 6 : Add support for K32W1 SDK
Original file line number Diff line number Diff line change @@ -22,8 +22,15 @@ RUN set -x \
22
22
&& cp -R examples/* core/boards && rm -rf examples \
23
23
&& : # last line
24
24
25
+ RUN set -x \
26
+ && mkdir -p k32w1
27
+ && wget https://cache.nxp.com/lgfiles/bsps/SDK_2_12_5_K32W148-EVK.zip \
28
+ && unzip SDK_2_12_5_K32W148-EVK.zip -d k32w1 \
29
+ && rm -rf SDK_2_12_5_K32W148-EVK.zip \
30
+
25
31
FROM ghcr.io/project-chip/chip-build:${VERSION}
26
32
27
33
COPY --from=build /opt/sdk/ /opt/sdk/
28
34
29
35
ENV NXP_K32W0_SDK_ROOT=/opt/sdk/core
36
+ ENV NXP_K32W1_SDK_ROOT=/opt/sdk/k32w1
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ COPY --from=crosscompile /opt/ubuntu-22.04.1-aarch64-sysroot /opt/ubuntu-22.04.1
48
48
49
49
COPY --from=ameba /opt/ameba /opt/ameba
50
50
51
- COPY --from=k32w /opt/sdk /opt/k32w_sdk
51
+ COPY --from=k32w /opt/sdk /opt/k32w
52
52
53
53
COPY --from=imx /opt/fsl-imx-xwayland /opt/fsl-imx-xwayland
54
54
@@ -104,7 +104,8 @@ ENV IDF_TOOLS_PATH=/opt/espressif/tools
104
104
ENV IMX_SDK_ROOT=/opt/fsl-imx-xwayland/6.1-langdale
105
105
ENV JAVA_PATH=/usr/lib/jvm/java-8-openjdk-amd64
106
106
ENV NRF5_TOOLS_ROOT=/opt/NordicSemiconductor/nRF5_tools
107
- ENV NXP_K32W0_SDK_ROOT=/opt/k32w_sdk
107
+ ENV NXP_K32W0_SDK_ROOT=/opt/k32w/core
108
+ ENV NXP_K32W1_SDK_ROOT=/opt/k32w/k32w1
108
109
ENV OPENOCD_PATH=/opt/openocd/
109
110
ENV PW_ENVIRONMENT_ROOT=/home/vscode/pigweed/env
110
111
ENV QEMU_ESP32=/opt/espressif/qemu/xtensa-softmmu/qemu-system-xtensa
You can’t perform that action at this time.
0 commit comments