batman-adv: update to version 2025.0 1103/head
authorSven Eckelmann <sven@narfation.org>
Fri, 7 Feb 2025 20:56:20 +0000 (21:56 +0100)
committerSven Eckelmann <sven@narfation.org>
Fri, 7 Feb 2025 21:01:58 +0000 (22:01 +0100)
* support latest kernels (5.4 - 6.14)
* handle VLAN 0 as untagged VLAN
* TT changes in OGMs no longer contain redundant TT changes
* coding style cleanups and refactoring
* bugs squashed:
  - fix incorrect offset in OGM handler for translation table TVLV
  - force stop of throughput detection workers on interface removal

Signed-off-by: Sven Eckelmann <sven@narfation.org>
batman-adv/Makefile
batman-adv/patches/0003-Revert-batman-adv-move-asm-unaligned.h-to-linux-unal.patch

index 3c0544dc0b4c5b1345e15d8e4732686f141a63f8..86e2c51b1fc3b07389c3304d8b2a816dc399d3ba 100644 (file)
@@ -3,12 +3,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=batman-adv
-PKG_VERSION:=2024.4
+PKG_VERSION:=2025.0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://downloads.open-mesh.org/batman/releases/batman-adv-$(PKG_VERSION)
-PKG_HASH:=a554df6fc7abccc6b243f56ea7b184486c95ea986db1133f87aafe237da92f21
+PKG_HASH:=b90c4544d3cf39f6d7cd9206126b162f5110fbb4980de96d45fbcf5033d0851a
 PKG_EXTMOD_SUBDIRS:=net/batman-adv
 
 PKG_MAINTAINER:=Simon Wunderlich <sw@simonwunderlich.de>
index d072f535dfa6c1ae37d860020f54b8e63181d356..1c500c70c11dcf15396618a81582f8d5a6226f07 100644 (file)
@@ -31,12 +31,19 @@ This reverts commit ee60832ebec47a023d634b06f9434103ec090aed.
 -#endif /* _NET_BATMAN_ADV_COMPAT_LINUX_UNALIGNED_H_ */
 --- a/net/batman-adv/distributed-arp-table.c
 +++ b/net/batman-adv/distributed-arp-table.c
-@@ -7,7 +7,7 @@
+@@ -7,6 +7,7 @@
  #include "distributed-arp-table.h"
  #include "main.h"
  
--#include <linux/unaligned.h>
 +#include <asm/unaligned.h>
  #include <linux/atomic.h>
  #include <linux/bitops.h>
  #include <linux/byteorder/generic.h>
+@@ -32,7 +33,6 @@
+ #include <linux/stddef.h>
+ #include <linux/string.h>
+ #include <linux/udp.h>
+-#include <linux/unaligned.h>
+ #include <linux/workqueue.h>
+ #include <net/arp.h>
+ #include <net/genetlink.h>