[source] kernel: kmod-rxrpc: handle renamed kernel module

LEDE Commits lede-commits at lists.infradead.org
Sat Dec 16 13:18:27 PST 2017


hauke pushed a commit to source.git, branch master:
https://git.lede-project.org/ac27f3867a0f240d6d10293f86dc092c8a3539ae

commit ac27f3867a0f240d6d10293f86dc092c8a3539ae
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sun Nov 12 22:15:14 2017 +0100

    kernel: kmod-rxrpc: handle renamed kernel module
    
    The kernel module was renamed with kernel 4.11, handle that in the
    package definition.
    
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 package/kernel/linux/modules/netsupport.mk | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
index 178a00a..836034a 100644
--- a/package/kernel/linux/modules/netsupport.mk
+++ b/package/kernel/linux/modules/netsupport.mk
@@ -925,9 +925,10 @@ define KernelPackage/rxrpc
 	CONFIG_RXKAD=m \
 	CONFIG_AF_RXRPC_DEBUG=n
   FILES:= \
-	$(LINUX_DIR)/net/rxrpc/af-rxrpc.ko \
+	$(LINUX_DIR)/net/rxrpc/af-rxrpc.ko at lt4.11 \
+	$(LINUX_DIR)/net/rxrpc/rxrpc.ko at ge4.11 \
 	$(LINUX_DIR)/net/rxrpc/rxkad.ko at lt4.7
-  AUTOLOAD:=$(call AutoLoad,30,rxkad at lt4.7 af-rxrpc)
+  AUTOLOAD:=$(call AutoLoad,30,rxkad at lt4.7 af-rxrpc.ko at lt4.11 rxrpc.ko at ge4.11)
   DEPENDS:= +kmod-crypto-manager +kmod-crypto-pcbc +kmod-crypto-fcrypt
 endef
 



More information about the lede-commits mailing list