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

[script] enable TCP, DNS_CLIENT_OVER_TCP and OTBR_DHCP6_PD for 1.3 and 1.4 builds #89

Merged
Merged
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
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"
suveshpratapa marked this conversation as resolved.
Show resolved Hide resolved
"-DOT_DNS_CLIENT_OVER_TCP=ON"
"-DOTBR_TREL=ON"
"-DOTBR_NAT64=ON"
"-DOTBR_DHCP6_PD=ON"
)

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
Loading