Skip to content

Commit

Permalink
[Openthread] Update Openthread submodule (#18277)
Browse files Browse the repository at this point in the history
* update openthread

* update ot platforms

* update ot-br-posisx hach to match openthread

* TI fix

* Disable web service

* Added systemd install

* fix typo

* remove systemd

* test CI fix
  • Loading branch information
mkardous-silabs authored and pull[bot] committed Feb 7, 2024
1 parent 1703fe7 commit 1bcb681
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ RUN apt-get update \
&& git submodule update --init --depth=1 \
&& ./script/bootstrap \
&& ./script/setup \
&& chmod 644 /etc/bind/named.conf.options \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
git psmisc ninja-build cmake wget libreadline-dev libncurses-dev libcpputest-dev \
libavahi-common-dev libavahi-client-dev libboost-dev libboost-filesystem-dev \
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/cirque_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function __cirquetest_clean_flask() {

function __cirquetest_build_ot() {
echo -e "[$BOLD_YELLOW_TEXT""INFO""$RESET_COLOR] Cache miss, build openthread simulation."
script/cmake-build simulation -DOT_THREAD_VERSION=1.2 -DOT_MTD=OFF -DOT_FTD=OFF
script/cmake-build simulation -DOT_THREAD_VERSION=1.2 -DOT_MTD=OFF -DOT_FTD=OFF -DWEB_GUI=0 -DNETWORK_MANAGER=0 -DREST_API=0 -DNAT64=0
tar czf "$OT_SIMULATION_CACHE" build
echo "$OPENTHREAD_CHECKOUT" >"$OT_SIMULATION_CACHE_STAMP_FILE"
}
Expand Down
2 changes: 2 additions & 0 deletions src/platform/cc13x2_26x2/openthread-core-cc13x2_26x2-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@
#define OPENTHREAD_CONFIG_JOINER_ENABLE 0

#define OPENTHREAD_CONFIG_ENABLE_BUILTIN_MBEDTLS 0
// TCP disabled until OpenThread has a GN/Ninja build for the tcplp library
#define OPENTHREAD_CONFIG_TCP_ENABLE 0
2 changes: 1 addition & 1 deletion third_party/openthread/ot-nxp
Submodule ot-nxp updated 48 files
+15 −4 .github/workflows/build.yml
+34 −18 CMakeLists.txt
+6 −8 README.md
+ doc/img/imxrt1060/DisableAutoBuild.JPG
+ doc/img/imxrt1060/gdbDisableAutoBuild.JPG
+ doc/img/imxrt1060/gdbdebugger.JPG
+ doc/img/imxrt1060/mcu_settings.JPG
+ doc/img/imxrt1060/rt1060_k32w061_pin_settings.jpg
+20 −20 examples/cli/app_ot.h
+3 −70 examples/cli/main.c
+155 −0 examples/cli/rtos/app_ot_freertos.c
+1 −1 openthread
+33 −5 script/build_k32w061
+15 −2 script/build_rt1060
+3 −5 script/test
+157 −0 src/common/alarm_freertos.c
+0 −0 src/common/diag.c
+21 −4 src/common/entropy.c
+359 −0 src/common/flash_nvm.c
+1 −1 src/common/logging.c
+153 −0 src/common/ot_platform_common.h
+189 −0 src/common/uart.c
+7 −3 src/imx_rt/platform/misc.c
+7 −17 src/imx_rt/platform/radio.cpp
+332 −0 src/imx_rt/platform/spinel_hdlc.cpp
+23 −57 src/imx_rt/platform/spinel_hdlc.hpp
+135 −0 src/imx_rt/platform/system.c
+31 −14 src/imx_rt/rt1060/CMakeLists.txt
+172 −1 src/imx_rt/rt1060/README.md
+99 −41 src/imx_rt/rt1060/RT1060.ld
+0 −107 src/imx_rt/rt1060/alarm.c
+52 −9 src/imx_rt/rt1060/arm-none-eabi.cmake
+25 −0 src/imx_rt/rt1060/board/hardware_init.c
+525 −0 src/imx_rt/rt1060/board/pin_mux.c
+368 −0 src/imx_rt/rt1060/board/pin_mux.h
+0 −142 src/imx_rt/rt1060/flash.c
+213 −0 src/imx_rt/rt1060/freertos/FreeRTOSConfig.h
+0 −41 src/imx_rt/rt1060/memory.c
+84 −4 src/imx_rt/rt1060/openthread-core-rt1060-config.h
+0 −241 src/imx_rt/rt1060/platform-rt1060.h
+383 −0 src/imx_rt/rt1060/rt1060-mbedtls-config.h
+0 −169 src/imx_rt/rt1060/spinel_hdlc.cpp
+0 −99 src/imx_rt/rt1060/system.c
+0 −85 src/imx_rt/rt1060/uart.c
+1 −1 src/k32w0/platform/alarm.c
+3 −1 src/k32w0/platform/settings_k32w.c
+23 −2 third_party/k32w061_sdk/CMakeLists.txt
+296 −11 third_party/rt1060_sdk/CMakeLists.txt
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 1273 files
2 changes: 1 addition & 1 deletion third_party/ot-br-posix/repo
Submodule repo updated 147 files
2 changes: 1 addition & 1 deletion third_party/ti_simplelink_sdk/repo_cc13xx_cc26xx

0 comments on commit 1bcb681

Please sign in to comment.