Skip to content

Commit 4004d0b

Browse files
authored
[NuttX] Update docker image (project-chip#32707)
1 parent d26d2e5 commit 4004d0b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
42 : [Ameba] Update Ameba System time
1+
43 : [NuttX] Fix build errors

integrations/docker/images/stage-2/chip-build-nuttx/Dockerfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ RUN set -x \
2828
# Download NuttX SDK
2929
RUN set -x \
3030
&& cd /opt/nuttx \
31-
&& wget -q -O nuttx.zip https://codeload.github.com/apache/nuttx/zip/b8e0423 \
31+
&& rm -rf nuttx \
32+
&& wget -q -O nuttx.zip https://codeload.github.com/apache/nuttx/zip/ce61e866 \
3233
&& unzip -q nuttx.zip \
33-
&& mv nuttx-b8e0423 nuttx \
34+
&& mv nuttx-ce61e866 nuttx \
3435
&& rm nuttx.zip
3536

3637
RUN set -x \
3738
&& cd /opt/nuttx \
38-
&& wget -q -O nuttx_app.zip https://codeload.github.com/apache/nuttx-apps/zip/9c48a8d \
39+
&& rm -rf apps \
40+
&& wget -q -O nuttx_app.zip https://codeload.github.com/apache/nuttx-apps/zip/e2805fc9 \
3941
&& unzip -q nuttx_app.zip \
40-
&& mv nuttx-apps-9c48a8d apps \
42+
&& mv nuttx-apps-e2805fc9 apps \
4143
&& rm nuttx_app.zip

0 commit comments

Comments
 (0)