Skip to content

Commit

Permalink
ot-br-posix 6934ff024cc217dfd55aac8b21d6198d7013ed81 (#96)
Browse files Browse the repository at this point in the history
openthread 0fb1c22d2458a22c87be77f94aa5e2358313e83b
ot-nrf528xx e3ea7ae20197d2f849aa237392cc58a9ca665a26

Add prefix delegation daemon service
  • Loading branch information
yangsong-cnyn authored Nov 11, 2024
1 parent dbba91b commit 23a825b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ FEATURES

CHANGELOG
==========
* 11/08/2024
* Updated submodules
* openthread commitid: 0fb1c22
* ot-br-posix commitid: 6934ff0
* ot-nrf528xx commitid: e3ea7ae

* 10/18/2024
* Updated submodules
* openthread commitid: deb35b0
Expand Down
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 134 files
2 changes: 1 addition & 1 deletion ot-br-posix
Submodule ot-br-posix updated 43 files
+17 −3 .github/workflows/ncp_mode.yml
+2 −0 CMakeLists.txt
+90 −14 script/_dhcpv6_pd_ref
+143 −0 script/reference-device/dhcp6_pd_daemon.py
+10 −3 script/reference-device/dhcpcd.enter-hook
+8 −3 script/reference-device/dhcpcd.exit-hook
+1 −4 script/test
+1 −1 src/agent/CMakeLists.txt
+40 −54 src/agent/application.cpp
+24 −22 src/agent/application.hpp
+34 −5 src/agent/main.cpp
+2 −2 src/border_agent/border_agent.hpp
+6 −1 src/common/CMakeLists.txt
+30 −0 src/common/logging.cpp
+9 −0 src/common/logging.hpp
+7 −10 src/dbus/server/dbus_thread_object_rcp.cpp
+8 −1 src/dbus/server/introspect.xml
+18 −0 src/mdns/mdns.cpp
+58 −0 src/mdns/mdns.hpp
+47 −4 src/ncp/ncp_host.cpp
+10 −3 src/ncp/ncp_host.hpp
+113 −16 src/ncp/ncp_spinel.cpp
+32 −5 src/ncp/ncp_spinel.hpp
+88 −4 src/ncp/posix/infra_if.cpp
+5 −0 src/ncp/posix/infra_if.hpp
+118 −4 src/ncp/rcp_host.cpp
+10 −9 src/ncp/rcp_host.hpp
+1 −31 src/ncp/thread_host.cpp
+53 −4 src/ncp/thread_host.hpp
+1 −1 src/rest/openapi.yaml
+2 −2 src/sdp_proxy/advertising_proxy.hpp
+1 −1 src/sdp_proxy/discovery_proxy.hpp
+4 −1 src/trel_dnssd/trel_dnssd.cpp
+2 −2 src/trel_dnssd/trel_dnssd.hpp
+20 −0 tests/gtest/CMakeLists.txt
+86 −0 tests/gtest/fake_posix_platform.cpp
+85 −0 tests/gtest/test_infra_if.cpp
+235 −0 tests/gtest/test_rcp_host_api.cpp
+2 −1 tests/scripts/bootstrap.sh
+66 −0 tests/scripts/expect/_common.exp
+70 −0 tests/scripts/expect/ncp_border_routing.exp
+105 −33 tests/scripts/ncp_mode
+1 −1 third_party/openthread/repo
2 changes: 1 addition & 1 deletion ot-nrf528xx
Submodule ot-nrf528xx updated 1 files
+1 −1 openthread
3 changes: 3 additions & 0 deletions script/otbr-setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ cmake --version

pip3 install zeroconf

apt-get install -y --no-install-recommends libgirepository1.0-dev
pip3 install dbus-python PyGObject

su -c "${build_options[*]} script/setup" pi

if [[ "$REFERENCE_RELEASE_TYPE" = "1.2" || "$REFERENCE_RELEASE_TYPE" = "1.3" || "$REFERENCE_RELEASE_TYPE" = "1.4" ]]; then
Expand Down

0 comments on commit 23a825b

Please sign in to comment.