Skip to content

Commit

Permalink
[Docker][K32W1] Add support for K32W1 SDK
Browse files Browse the repository at this point in the history
Signed-off-by: Marius Tache <marius.tache@nxp.com>
  • Loading branch information
marius-alex-tache committed Aug 9, 2023
1 parent 4111aac commit 07dc0cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/docker/images/base/chip-build/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5 : Use west to download the K32W0 SDK
6 : Add support for K32W1 SDK
7 changes: 7 additions & 0 deletions integrations/docker/images/stage-2/chip-build-k32w/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ RUN set -x \
&& cp -R examples/* core/boards && rm -rf examples \
&& : # last line

RUN set -x \
&& mkdir -p k32w1
&& wget https://cache.nxp.com/lgfiles/bsps/SDK_2_12_5_K32W148-EVK.zip \
&& unzip SDK_2_12_5_K32W148-EVK.zip -d k32w1 \
&& rm -rf SDK_2_12_5_K32W148-EVK.zip \

FROM ghcr.io/project-chip/chip-build:${VERSION}

COPY --from=build /opt/sdk/ /opt/sdk/

ENV NXP_K32W0_SDK_ROOT=/opt/sdk/core
ENV NXP_K32W1_SDK_ROOT=/opt/sdk/k32w1

0 comments on commit 07dc0cc

Please sign in to comment.