From: Matthias Schiffer Date: Sun, 26 Jan 2025 14:13:19 +0000 (+0100) Subject: fastd: update to v23 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=24348066216aa27e49e18e6f78c719509fc8f450;p=feed%2Fpackages.git fastd: update to v23 Signed-off-by: Matthias Schiffer --- diff --git a/net/fastd/Makefile b/net/fastd/Makefile index d1561353be..ec1efc6455 100644 --- a/net/fastd/Makefile +++ b/net/fastd/Makefile @@ -8,13 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fastd -PKG_VERSION:=22 -PKG_RELEASE=3 +PKG_VERSION:=23 PKG_MAINTAINER:=Matthias Schiffer PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/neocturne/fastd/releases/download/v$(PKG_VERSION) -PKG_HASH:=19750b88705d66811b7c21b672537909c19ae6b21350688cbd1a3a54d08a8951 +PKG_HASH:=dcab54485c79dda22ce6308a2a48764d53977a518952facd1204ba21af1c86e0 PKG_LICENSE:=BSD-2-Clause LGPL-2.1-or-later PKG_LICENSE_FILES:=COPYRIGHT src/dep/libmnl/COPYING diff --git a/net/fastd/patches/0001-config-allow-disabling-L2TP-offload-when-fastd-doesn.patch b/net/fastd/patches/0001-config-allow-disabling-L2TP-offload-when-fastd-doesn.patch deleted file mode 100644 index a022bad391..0000000000 --- a/net/fastd/patches/0001-config-allow-disabling-L2TP-offload-when-fastd-doesn.patch +++ /dev/null @@ -1,33 +0,0 @@ -From d95ae843845760aecbbc62a734c2b93b401b1834 Mon Sep 17 00:00:00 2001 -Message-Id: -From: Matthias Schiffer -Date: Sun, 27 Jun 2021 14:45:46 +0200 -Subject: [PATCH] config: allow disabling L2TP offload when fastd doesn't - support it - -Only attempting to enable the offloading should raise an error when it -is not supported. ---- - src/config.y | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - ---- a/src/config.y -+++ b/src/config.y -@@ -282,12 +282,14 @@ offload: TOK_L2TP boolean { - #ifdef WITH_OFFLOAD_L2TP - conf.offload_l2tp = $2; - #else -+ if ($2) { - # ifdef __linux__ -- fastd_config_error(&@$, state, "L2TP offload is not supported by this build of fastd"); -+ fastd_config_error(&@$, state, "L2TP offload is not supported by this build of fastd"); - # else -- fastd_config_error(&@$, state, "L2TP offload is not supported on this platform"); -+ fastd_config_error(&@$, state, "L2TP offload is not supported on this platform"); - # endif -- YYERROR; -+ YYERROR; -+ } - #endif - } - ;