kernel: kmod-rxrpc: add missing dependencies
From commit dc0e6056de ("rxrpc: Fix missing dependency on NET_UDP_TUNNEL") upstream, kmod-rxrpc uses functions enabled by CONFIG_NET_UDP_TUNNEL. Add package dependencies on kmod-udptunnel4 and kmod-udptunnel6 to avoid build errors like: Package kmod-rxrpc is missing dependencies for the following libraries: ip6_udp_tunnel.ko udp_tunnel.ko This change applies to both kernels 5.15 and 6.1. Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
This commit is contained in:
parent
66fd0aa6ef
commit
ecc5324094
1 changed files with 2 additions and 1 deletions
|
@ -1275,7 +1275,8 @@ define KernelPackage/rxrpc
|
||||||
FILES:= \
|
FILES:= \
|
||||||
$(LINUX_DIR)/net/rxrpc/rxrpc.ko
|
$(LINUX_DIR)/net/rxrpc/rxrpc.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,30,rxrpc.ko)
|
AUTOLOAD:=$(call AutoLoad,30,rxrpc.ko)
|
||||||
DEPENDS:= +kmod-crypto-manager +kmod-crypto-pcbc +kmod-crypto-fcrypt
|
DEPENDS:= +kmod-crypto-manager +kmod-crypto-pcbc +kmod-crypto-fcrypt \
|
||||||
|
+kmod-udptunnel4 +kmod-udptunnel6
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/rxrpc/description
|
define KernelPackage/rxrpc/description
|
||||||
|
|
Loading…
Reference in a new issue