From 1c3c75721d44a7dbf2be39dee53db34f01b26423 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sun, 6 Apr 2025 23:48:22 +0100 Subject: [PATCH] Improve dev container comments for azure RTOS it is now Eclipse ThreadX --- .devcontainer/All/Dockerfile.All.SRC | 4 ++-- .devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC | 2 +- .devcontainer/README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/All/Dockerfile.All.SRC b/.devcontainer/All/Dockerfile.All.SRC index a4107b04ca..d934ee2ddc 100644 --- a/.devcontainer/All/Dockerfile.All.SRC +++ b/.devcontainer/All/Dockerfile.All.SRC @@ -66,14 +66,14 @@ RUN mkdir -p /usr/local/bin/gcc \ # Alternative source for those having issues with git svn downloads: RUN git clone --branch stable_21.11.x https://github.com/ArduPilot/ChibiOS.svn.git --depth 1 ./sources/ChibiOs -# Clone support repos for STM32 including AzureRTOS +# Clone support repos for STM32 including Eclipse ThreadX (a.k.a. Azure RTOS) RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git --depth 1 ./sources/STM32CubeL4 \ && git clone --branch nf-build https://github.com/nanoframework/STM32CubeF7.git --depth 1 ./sources/STM32CubeF7 \ && git clone --branch nf-build https://github.com/nanoframework/STM32CubeF4.git --depth 1 ./sources/STM32CubeF4 \ && git clone --branch nf-build https://github.com/nanoframework/STM32CubeH7.git --depth 1 ./sources/STM32CubeH7 \ && git clone --branch chibios-21.11.x https://github.com/ChibiOS/ChibiOS-Contrib.git --depth 1 ./sources/ChibiOs-Contrib -# Clone repos for AzureRTOS +# Clone repos for Eclipse ThreadX (a.k.a. Azure RTOS) RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/threadx.git --depth 1 ./sources/AzureRTOS \ && git clone --branch v6.3.0_rel --recursive https://github.com/eclipse-threadx/netxduo.git --depth 1 ./sources/NetxDuo diff --git a/.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC b/.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC index 7ae37f9d97..f61ae04792 100644 --- a/.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC +++ b/.devcontainer/AzureRTOS/Dockerfile.AzureRTOS.SRC @@ -62,7 +62,7 @@ RUN git clone --branch nf-build https://github.com/nanoframework/STM32CubeL4.git && git clone --branch nf-build https://github.com/nanoframework/STM32CubeF4.git --depth 1 ./sources/STM32CubeF4 \ && git clone --branch nf-build https://github.com/nanoframework/STM32CubeH7.git --depth 1 ./sources/STM32CubeH7 -# Clone repos for AzureRTOS +# Clone repos for Eclipse ThreadX (a.k.a. Azure RTOS) RUN git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/threadx.git --depth 1 ./sources/AzureRTOS \ && git clone --branch v6.4.0_rel --recursive https://github.com/eclipse-threadx/netxduo.git --depth 1 ./sources/NetxDuo diff --git a/.devcontainer/README.md b/.devcontainer/README.md index ed849679ac..55b33d5e59 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -8,13 +8,13 @@ The available pre build images are: * ghcr.io/nanoframework/dev-container-chibios: contains all elements to build a firmware image for any of the ChibiOS targets * ghcr.io/nanoframework/dev-container-ti: contains all elements to build a firmware image for any of the TI SimpleLink targets * ghcr.io/nanoframework/dev-container-esp32: contains all elements to build a firmware image for any of the ESP32 targets -* ghcr.io/nanoframework/dev-container-azure-rtos: contains all elements to build a firmware image for any of the Azure RTOS targets +* 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 * ghcr.io/nanoframework/dev-container-freertos-nxp: contains all elements to build a firmware image for any of the NXP targets You can choose the dev container needed when opening a remote container in VSCode. The options are: * `nanoFramework-All` to use the pre build container with all the elements to build a firmware image for any of the targets -* `nanoFramework-AzureRTOS` to use the pre build container with all the elements to build Azure RTOS targets +* `nanoFramework-AzureRTOS` to use the pre build container with all the elements to build Eclipse ThreadX (a.k.a. Azure RTOS) targets * `nanoFramework-ChibiOS` to use the pre build container with all the elements to build ChibiOS targets * `nanoFramework-ESP32` to use the pre build container with all the elements to build ESP32 targets * `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 To use the source dockerfile for the respective platform adjust its `devcontainer.json` file and change the `"dockerFile": "Dockerfile."` element for the image you would like to use: * `Dockerfile.All.SRC` to build the container image from the source with all the elements to build all the images -* `Dockerfile.AzureRTOS.SRC` to build the container image from the source with all the elements to build Azure RTOS based devices +* `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 * `Dockerfile.ChibiOS.SRC` to build the container image from the source with all the elements to build ChibiOS based devices * `Dockerfile.ESP32.SRC` to build the container image from the source with all the elements to build ESP32 based devices * `Dockerfile.TI.SRC` to build the container image from the source with all the elements to build TI SimpleLink based devices