Commit 2210320 1 parent 86fd491 commit 2210320 Copy full SHA for 2210320
File tree 2 files changed +10
-6
lines changed
integrations/docker/images
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- 4 : [Ameba] Upgrade to c++17
1
+ 5 : Use west to download the K32W0 SDK
Original file line number Diff line number Diff line change @@ -11,15 +11,19 @@ RUN set -x \
11
11
&& : # last line
12
12
13
13
WORKDIR /opt/sdk
14
- # Setup the K32W SDK
14
+
15
15
RUN set -x \
16
- && wget https://cache.nxp.com/lgfiles/bsps/SDK_2_6_11_K32W061DK6.zip \
17
- && unzip SDK_2_6_11_K32W061DK6.zip \
18
- && rm -rf SDK_2_6_11_K32W061DK6.zip \
16
+ && python3 -m pip install -U --no-cache-dir west==1.0.0 \
17
+ && west init -m https://github.com/nxp-mcuxpresso/mcux-sdk --mr "release/2.6.x_k32w0" \
18
+ && west update \
19
+ && chmod +x core/tools/imagetool/sign_images.sh \
20
+ && ln -sf ../rtos core \
21
+ && ln -sf ../middleware core \
22
+ && cp -R examples/* core/boards && rm -rf examples \
19
23
&& : # last line
20
24
21
25
FROM ghcr.io/project-chip/chip-build:${VERSION}
22
26
23
27
COPY --from=build /opt/sdk/ /opt/sdk/
24
28
25
- ENV NXP_K32W0_SDK_ROOT=/opt/sdk
29
+ ENV NXP_K32W0_SDK_ROOT=/opt/sdk/core
You can’t perform that action at this time.
0 commit comments