Skip to content

Commit ecb5fa7

Browse files
committed
openthread-br: bump source version to 2024-11-20 and add missing dependencies
Bumping ot-br-posix that openthread-br is based on to latest code. Due to some major changes required some more compilation flags, and in order to avoid the ot-br agent had to add some dependencies as well Dependecies: 1. kmod-tun: otherwise the otbr fails to load and crashed immidiedtly Compilation flags: 1. OTBR_NAT64, OT_NAT64_BORDER_ROUTING set to OFF: a temporary workaround to a compilation problem with openwrt, could be reverted once the issue here is fixed: openthread/ot-br-posix#2606 2. OT_TARGET_OPENWRT: wasn't assumed from OTBR_OPENWRT in some targets Signed-off-by: Itay Shoshani <[email protected]>
1 parent 6945c7b commit ecb5fa7

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Diff for: net/openthread-br/Makefile

+7-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
include $(TOPDIR)/rules.mk
55

66
PKG_NAME:=openthread-br
7-
PKG_SOURCE_DATE:=2023-08-01
8-
PKG_SOURCE_VERSION:=1738d8cd8b42106c2ef1262fbbac2f06beab83ba
7+
PKG_SOURCE_DATE:=2024-11-20
8+
PKG_SOURCE_VERSION:=bd7bc77742920eba3b3801a410c3eba3372c98bb
99
PKG_RELEASE:=1
1010

1111
PKG_SOURCE_PROTO:=git
1212
PKG_SOURCE_URL=https://github.com/openthread/ot-br-posix.git
13-
PKG_MIRROR_HASH:=035925e78df115d4c08ca5ab50197855ce47d70ee5fb76caeef1c91e9d804f04
13+
PKG_MIRROR_HASH:=ca4352e527e38de26c8c4242ced5899e6fd1e4fea57d0dc4b2a6bd433e6b14b6
1414

1515
PKG_MAINTAINER:=Stijn Tintel <[email protected]>
1616
PKG_LICENSE:=BSD-3-Clause
@@ -32,6 +32,7 @@ define Package/openthread-br
3232
SECTION:=net
3333
TITLE:=OpenThread Border Router
3434
DEPENDS:= \
35+
+kmod-tun \
3536
+libblobmsg-json \
3637
+libjson-c \
3738
+libncurses \
@@ -57,12 +58,14 @@ CMAKE_OPTIONS += \
5758
-DOT_CHANNEL_MANAGER=ON \
5859
-DOT_CHANNEL_MONITOR=ON \
5960
-DOT_FIREWALL=OFF \
61+
-DOT_NAT64_BORDER_ROUTING=OFF \
62+
-DOT_TARGET_OPENWRT=ON \
6063
-DOTBR_BACKBONE_ROUTER=ON \
6164
-DOTBR_BORDER_ROUTING=ON \
6265
-DOTBR_DNSSD_DISCOVERY_PROXY=ON \
6366
-DOTBR_DUA_ROUTING=ON \
6467
-DOTBR_MDNS=mDNSResponder \
65-
-DOTBR_NAT64=ON \
68+
-DOTBR_NAT64=OFF \
6669
-DOTBR_OPENWRT=ON \
6770
-DOTBR_REST=ON \
6871
-DOTBR_SRP_ADVERTISING_PROXY=ON \

0 commit comments

Comments
 (0)