File tree 2 files changed +14
-7
lines changed
integrations/docker/images
2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1
- 50 : [Telink ] Update Docker image (Zephyr update)
1
+ 51 : [NuttX ] Update Docker image to support compile with external source
Original file line number Diff line number Diff line change @@ -24,20 +24,27 @@ RUN set -x \
24
24
&& rm -rf ../../gcc_build \
25
25
&& : # last line
26
26
27
+ RUN set -x \
28
+ && ! test -f /opt/nuttx/gcc-13/bin/cc \
29
+ && ln -s /opt/nuttx/gcc-13/bin/gcc /opt/nuttx/gcc-13/bin/cc \
30
+ && : # last line
31
+
27
32
# ------------------------------------------------------------------------------
28
33
# Download NuttX SDK
29
34
RUN set -x \
30
35
&& cd /opt/nuttx \
31
36
&& rm -rf nuttx \
32
- && wget -q -O nuttx.zip https://codeload.github.com/apache/nuttx/zip/ce61e866 \
37
+ && wget -q -O nuttx.zip https://codeload.github.com/apache/nuttx/zip/6e941aed \
33
38
&& unzip -q nuttx.zip \
34
- && mv nuttx-ce61e866 nuttx \
35
- && rm nuttx.zip
39
+ && mv nuttx-6e941aed nuttx \
40
+ && rm nuttx.zip \
41
+ && : # last line
36
42
37
43
RUN set -x \
38
44
&& cd /opt/nuttx \
39
45
&& rm -rf apps \
40
- && wget -q -O nuttx_app.zip https://codeload.github.com/apache/nuttx-apps/zip/e2805fc9 \
46
+ && wget -q -O nuttx_app.zip https://codeload.github.com/apache/nuttx-apps/zip/c6051e4c \
41
47
&& unzip -q nuttx_app.zip \
42
- && mv nuttx-apps-e2805fc9 apps \
43
- && rm nuttx_app.zip
48
+ && mv nuttx-apps-c6051e4c apps \
49
+ && rm nuttx_app.zip \
50
+ && : # last line
You can’t perform that action at this time.
0 commit comments