Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update submodules 'ot-br-posix' and 'openthread' for OTBR PD REF support #94

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
==========
* 10/18/2024
* Updated submodules
* openthread commitid: deb35b0
* ot-br-posix commitid: 7f04c18
* ot-nrf528xx commitid: f485040

* 09/14/2024
* Updated submodules
* openthread commitid: 97a3f76
Expand Down
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 776 files
2 changes: 1 addition & 1 deletion ot-br-posix
Submodule ot-br-posix updated 93 files
+14 −14 .github/workflows/border_router.yml
+1 −2 .github/workflows/macOS.yml
+2 −1 etc/docker/docker_entrypoint.sh
+1 −0 examples/platforms/debian/default
+1 −0 examples/platforms/raspbian/default
+7 −8 script/_border_routing
+68 −0 script/_dhcpv6_pd_ref
+2 −2 script/_initrc
+6 −0 script/_otbr
+15 −1 script/bootstrap
+75 −0 script/reference-device/dhcpcd.enter-hook
+74 −0 script/reference-device/dhcpcd.exit-hook
+3 −0 script/setup
+0 −6 src/agent/application.hpp
+0 −30 src/agent/uris.hpp
+0 −3 src/backbone_router/backbone_agent.hpp
+0 −1 src/backbone_router/constants.hpp
+0 −4 src/backbone_router/dua_routing_manager.hpp
+0 −7 src/backbone_router/nd_proxy.hpp
+0 −1 src/border_agent/border_agent.cpp
+0 −7 src/border_agent/border_agent.hpp
+7 −0 src/common/api_strings.cpp
+1 −1 src/common/api_strings.hpp
+0 −1 src/common/callback.hpp
+0 −8 src/common/code_utils.hpp
+0 −9 src/common/dns_utils.hpp
+0 −18 src/common/logging.hpp
+0 −6 src/common/mainloop.hpp
+0 −7 src/common/mainloop_manager.hpp
+0 −9 src/common/task_runner.hpp
+0 −14 src/common/tlv.hpp
+0 −40 src/common/types.hpp
+0 −2 src/dbus/client/client_error.hpp
+0 −70 src/dbus/client/thread_api_dbus.hpp
+0 −1 src/dbus/common/error.hpp
+0 −35 src/dbus/common/types.hpp
+0 −3 src/dbus/server/dbus_agent.hpp
+0 −11 src/dbus/server/dbus_object.hpp
+0 −9 src/dbus/server/dbus_request.hpp
+0 −2 src/dbus/server/dbus_thread_object_ncp.hpp
+19 −2 src/dbus/server/dbus_thread_object_rcp.cpp
+0 −1 src/dbus/server/dbus_thread_object_rcp.hpp
+0 −1 src/dbus/server/error_helper.hpp
+0 −27 src/mdns/mdns.hpp
+0 −3 src/mdns/mdns_avahi.cpp
+0 −1 src/mdns/mdns_avahi.hpp
+0 −1 src/mdns/mdns_mdnssd.hpp
+0 −6 src/ncp/async_task.hpp
+21 −0 src/ncp/ncp_host.cpp
+5 −5 src/ncp/ncp_host.hpp
+140 −5 src/ncp/ncp_spinel.cpp
+24 −19 src/ncp/ncp_spinel.hpp
+2 −0 src/ncp/posix/CMakeLists.txt
+433 −0 src/ncp/posix/infra_if.cpp
+98 −0 src/ncp/posix/infra_if.hpp
+204 −0 src/ncp/posix/netif.cpp
+4 −0 src/ncp/posix/netif.hpp
+64 −1 src/ncp/rcp_host.cpp
+16 −15 src/ncp/rcp_host.hpp
+21 −13 src/ncp/thread_host.hpp
+0 −70 src/openwrt/ubus/otubus.hpp
+3 −3 src/proto/CMakeLists.txt
+0 −6 src/rest/connection.hpp
+0 −21 src/rest/json.hpp
+0 −4 src/rest/parser.hpp
+0 −12 src/rest/request.hpp
+0 −8 src/rest/resource.hpp
+0 −9 src/rest/response.hpp
+0 −4 src/rest/rest_web_server.hpp
+0 −6 src/sdp_proxy/advertising_proxy.hpp
+0 −4 src/sdp_proxy/discovery_proxy.hpp
+0 −7 src/trel_dnssd/trel_dnssd.hpp
+0 −5 src/utils/crc16.hpp
+0 −3 src/utils/dns_utils.hpp
+0 −6 src/utils/infra_link_selector.hpp
+0 −1 src/utils/pskc.hpp
+0 −9 src/utils/sha256.hpp
+0 −2 src/utils/socket_utils.hpp
+0 −9 src/utils/steering_data.hpp
+0 −2 src/utils/string_utils.hpp
+0 −1 src/utils/system_utils.hpp
+2 −3 src/utils/thread_helper.cpp
+0 −19 src/utils/thread_helper.hpp
+8 −3 src/web/main.cpp
+0 −8 src/web/web-service/ot_client.hpp
+0 −5 src/web/web-service/web_server.hpp
+0 −13 src/web/web-service/wpan_service.hpp
+1 −1 tests/dbus/test-client
+1 −0 tests/gtest/CMakeLists.txt
+173 −0 tests/gtest/test_infra_if.cpp
+113 −4 tests/gtest/test_netif.cpp
+5 −3 tests/scripts/check-docker
+1 −1 third_party/openthread/repo
2 changes: 1 addition & 1 deletion ot-nrf528xx
Submodule ot-nrf528xx updated 2 files
+1 −1 openthread
+1 −1 src/src/radio.c
2 changes: 2 additions & 0 deletions script/otbr-setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ elif [ "${REFERENCE_RELEASE_TYPE?}" = "1.4" ]; then
'BORDER_ROUTING=1'
'NAT64=1'
'DNS64=1'
'DHCPV6_PD_REF=1'
"OTBR_OPTIONS=\"${OTBR_THREAD_1_4_OPTIONS[@]} -DOT_RCP_RESTORATION_MAX_COUNT=100 -DCMAKE_CXX_FLAGS='-DOPENTHREAD_CONFIG_MAC_CSL_REQUEST_AHEAD_US=5000'\""
)
build_options+=("${LOCAL_OPTIONS[@]}")
Expand All @@ -166,6 +167,7 @@ elif [ "${REFERENCE_RELEASE_TYPE?}" = "1.4" ]; then
'BORDER_ROUTING=1'
'NAT64=1'
'DNS64=1'
'DHCPV6_PD_REF=1'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just curious: @sunytt, Do you have any idea why we need to repeat OTBR features' config as part of LOCAL_OPTIONS?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know the reason why these local options are repeated from the beginning, I think different platforms can share the same definition. Could be an improvement for future.

"OTBR_OPTIONS=\"${OTBR_THREAD_1_4_OPTIONS[@]}\""
)
build_options+=("${LOCAL_OPTIONS[@]}")
Expand Down