From: Mathew McBride Date: Mon, 29 Sep 2025 07:53:16 +0000 (+1000) Subject: openvswitch: add missing dependency X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=2a317ac466005961cb27ac4d6502535c39014269;p=openwrt-packages.git openvswitch: add missing dependency This resolves this failure observed when building on a 6.12 kernel: Package kmod-openvswitch is missing dependencies for the following libraries: psample.ko The psample module is provided by kmod-sched-act-sample. Closes: https://github.com/openwrt/packages/issues/26571 Signed-off-by: Mathew McBride --- diff --git a/net/openvswitch/Makefile b/net/openvswitch/Makefile index cf27b0e99..26e2f71d4 100644 --- a/net/openvswitch/Makefile +++ b/net/openvswitch/Makefile @@ -17,7 +17,7 @@ include ./openvswitch.mk # PKG_NAME:=openvswitch PKG_VERSION:=$(ovs_version) -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.openvswitch.org/releases/ PKG_HASH:=e1b3fa472676626853f22d63f959e5ad061e1bf57e1bbd444d0ed88f947ef8b1 @@ -83,6 +83,7 @@ ovs_kmod_openvswitch_depends:=\ +IPV6:kmod-nf-conntrack6 \ +kmod-nsh \ +kmod-ipt-conntrack-extra \ + +kmod-sched-act-sample \ ovs_kmod_openvswitch_files:=$(ovs_kmod_upstream_dir)/openvswitch.ko $(eval $(call OvsKmodPackageTemplate,openvswitch))