diff options
author | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-19 08:21:24 -0800 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2021-02-23 20:13:22 +0100 |
commit | 30b482551d838f0a4a2d0d024a28ac6393f6ab9c (patch) | |
tree | ab7934a8247e00324214d06da71d63070072aba9 /package/kernel/linux/modules/fs.mk | |
parent | 57fdcf66f0c2ae4410a169dfbc1bd5a2c66771b0 (diff) | |
download | upstream-30b482551d838f0a4a2d0d024a28ac6393f6ab9c.tar.gz upstream-30b482551d838f0a4a2d0d024a28ac6393f6ab9c.tar.bz2 upstream-30b482551d838f0a4a2d0d024a28ac6393f6ab9c.zip |
kernel: 5.10: fix kmod build failures
Modify existing modules to reflect their new location in Linux 5.10. Add
missing dependenices.
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
[enable CRYPTO_USER_API_ENABLE_OBSOLETE; add kmod-crypto-hash dependency
to usb-net-rtl8152]
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'package/kernel/linux/modules/fs.mk')
-rw-r--r-- | package/kernel/linux/modules/fs.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index a0db14ecfe..91ef535821 100644 --- a/package/kernel/linux/modules/fs.mk +++ b/package/kernel/linux/modules/fs.mk @@ -368,7 +368,8 @@ define KernelPackage/fs-nfs-common FILES:= \ $(LINUX_DIR)/fs/lockd/lockd.ko \ $(LINUX_DIR)/net/sunrpc/sunrpc.ko \ - $(LINUX_DIR)/fs/nfs_common/grace.ko + $(LINUX_DIR)/fs/nfs_common/grace.ko \ + $(LINUX_DIR)/fs/nfs_common/nfs_ssc.ko@ge5.10 AUTOLOAD:=$(call AutoLoad,30,grace sunrpc lockd) endef |