Skip to content

Commit

Permalink
[script] Enable TCP, DNS_CLIENT_OVER_TCP and OTBR_DHCP6_PD for 1.3 an…
Browse files Browse the repository at this point in the history
…d 1.4 builds.

* OTBR_BORDER_ROUTING_DHCP6_PD has been renamed to OTBR_DHCP6_PD
* Update openthread, ot-br-posix and ot-nrf528xx to latest for 1.4 reference builds
  • Loading branch information
suveshpratapa committed Sep 10, 2024
1 parent 89a78e6 commit 7d177b5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 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
==========
* 09/05/2024
* Updated submodules
* openthread commitid: e19c775
* ot-br-posix commitid: 9f86725
* ot-nrf528xx commitid: 3cfafb9

* 08/26/2024
* Updated NCS to `887bdfc`

Expand Down
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 202 files
2 changes: 1 addition & 1 deletion ot-nrf528xx
Submodule ot-nrf528xx updated 2 files
+1 −1 openthread
+17 −8 src/src/radio.c
11 changes: 8 additions & 3 deletions script/otbr-setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,11 @@ readonly OTBR_THREAD_1_3_OPTIONS=(
"-DOT_BORDER_ROUTING=ON"
"-DOT_SRP_CLIENT=ON"
"-DOT_DNS_CLIENT=ON"
"-DOTBR_TREL=OFF"
"-DOTBR_NAT64=OFF"
"-DOT_TCP=ON"
"-DOT_DNS_CLIENT_OVER_TCP=ON"
"-DOTBR_TREL=ON"
"-DOTBR_NAT64=ON"
"-DOTBR_DHCP6_PD=OFF"
)

readonly OTBR_THREAD_1_4_OPTIONS=(
Expand All @@ -87,9 +90,11 @@ readonly OTBR_THREAD_1_4_OPTIONS=(
"-DOT_BORDER_ROUTING=ON"
"-DOT_SRP_CLIENT=ON"
"-DOT_DNS_CLIENT=ON"
"-DOT_TCP=ON"
"-DOT_DNS_CLIENT_OVER_TCP=ON"
"-DOTBR_TREL=ON"
"-DOTBR_NAT64=ON"
"-DOTBR_BORDER_ROUTING_DHCP6_PD=ON"
"-DOTBR_DHCP6_PD=ON"
)

build_options=(
Expand Down

0 comments on commit 7d177b5

Please sign in to comment.