Skip to content

Commit c2a1bcb

Browse files
Improve dev container comments for Azure RTOS (now ThreadX) (#3147)
***NO_CI***
1 parent 6c70a49 commit c2a1bcb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.devcontainer/All/Dockerfile.All.SRC

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ RUN mkdir -p /usr/local/bin/gcc \
6666
# Alternative source for those having issues with git svn downloads:
6767
RUN git clone --branch stable_21.11.x https://github.com/ArduPilot/ChibiOS.svn.git --depth 1 ./sources/ChibiOs
6868

69-
# Clone support repos for STM32 including AzureRTOS
69+
# Clone support repos for STM32 including Eclipse ThreadX (a.k.a. Azure RTOS)
7070
RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git --depth 1 ./sources/STM32CubeL4 \
7171
&& git clone --branch nf-build https://github.com/nanoframework/STM32CubeF7.git --depth 1 ./sources/STM32CubeF7 \
7272
&& git clone --branch nf-build https://github.com/nanoframework/STM32CubeF4.git --depth 1 ./sources/STM32CubeF4 \
7373
&& git clone --branch nf-build https://github.com/nanoframework/STM32CubeH7.git --depth 1 ./sources/STM32CubeH7 \
7474
&& git clone --branch chibios-21.11.x https://github.com/ChibiOS/ChibiOS-Contrib.git --depth 1 ./sources/ChibiOs-Contrib
7575

76-
# Clone repos for AzureRTOS
76+
# Clone repos for Eclipse ThreadX (a.k.a. Azure RTOS)
7777
RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/threadx.git --depth 1 ./sources/AzureRTOS \
7878
&& git clone --branch v6.3.0_rel --recursive https://github.com/eclipse-threadx/netxduo.git --depth 1 ./sources/NetxDuo
7979

.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git
6262
&& git clone --branch nf-build https://github.com/nanoframework/STM32CubeF4.git --depth 1 ./sources/STM32CubeF4 \
6363
&& git clone --branch nf-build https://github.com/nanoframework/STM32CubeH7.git --depth 1 ./sources/STM32CubeH7
6464

65-
# Clone repos for AzureRTOS
65+
# Clone repos for Eclipse ThreadX (a.k.a. Azure RTOS)
6666
RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/threadx.git --depth 1 ./sources/AzureRTOS \
6767
&& git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/netxduo.git --depth 1 ./sources/NetxDuo
6868

.devcontainer/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ The available pre build images are:
88
* ghcr.io/nanoframework/dev-container-chibios: contains all elements to build a firmware image for any of the ChibiOS targets
99
* ghcr.io/nanoframework/dev-container-ti: contains all elements to build a firmware image for any of the TI SimpleLink targets
1010
* ghcr.io/nanoframework/dev-container-esp32: contains all elements to build a firmware image for any of the ESP32 targets
11-
* ghcr.io/nanoframework/dev-container-azure-rtos: contains all elements to build a firmware image for any of the Azure RTOS targets
11+
* ghcr.io/nanoframework/dev-container-azure-rtos: contains all elements to build a firmware image for any of the Eclipse ThreadX (a.k.a. Azure RTOS) targets
1212
* ghcr.io/nanoframework/dev-container-freertos-nxp: contains all elements to build a firmware image for any of the NXP targets
1313

1414
You can choose the dev container needed when opening a remote container in VSCode. The options are:
1515

1616
* `nanoFramework-All` to use the pre build container with all the elements to build a firmware image for any of the targets
17-
* `nanoFramework-AzureRTOS` to use the pre build container with all the elements to build Azure RTOS targets
17+
* `nanoFramework-AzureRTOS` to use the pre build container with all the elements to build Eclipse ThreadX (a.k.a. Azure RTOS) targets
1818
* `nanoFramework-ChibiOS` to use the pre build container with all the elements to build ChibiOS targets
1919
* `nanoFramework-ESP32` to use the pre build container with all the elements to build ESP32 targets
2020
* `nanoFramework-TI` to use the pre build container with all the elements to build TI SimpleLink targets
@@ -23,7 +23,7 @@ You can choose the dev container needed when opening a remote container in VSCod
2323
To use the source dockerfile for the respective platform adjust its `devcontainer.json` file and change the `"dockerFile": "Dockerfile.<platform>"` element for the image you would like to use:
2424

2525
* `Dockerfile.All.SRC` to build the container image from the source with all the elements to build all the images
26-
* `Dockerfile.AzureRTOS.SRC` to build the container image from the source with all the elements to build Azure RTOS based devices
26+
* `Dockerfile.AzureRTOS.SRC` to build the container image from the source with all the elements to build Eclipse ThreadX (a.k.a. Azure RTOS) based devices
2727
* `Dockerfile.ChibiOS.SRC` to build the container image from the source with all the elements to build ChibiOS based devices
2828
* `Dockerfile.ESP32.SRC` to build the container image from the source with all the elements to build ESP32 based devices
2929
* `Dockerfile.TI.SRC` to build the container image from the source with all the elements to build TI SimpleLink based devices

0 commit comments

Comments
 (0)