diff options
author | Daniel Golle <daniel@makrotopia.org> | 2024-03-11 23:23:23 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2024-03-11 23:49:25 +0000 |
commit | f7a68458b42d30ae4bb03f0be66cfd4cfae9602d (patch) | |
tree | c04045d95d322b2a066d48ccc2e80526ba35094b | |
parent | 448b48c24566f6d7961bccaae1074da887b1b8b9 (diff) |
kernel: modules: don't override NLS dependencies
Recent changes for Linux 6.6 broke things when building with older
kernels:
Package kmod-fs-jfs is missing dependencies for the following libraries:
nls_base.ko
Fix this by adding NLS dependencies after the added dependency applying
on Linux 6.6.
Fixes: f9198480da ("kernel: modules: fs: adapt for kernel 6.6")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r-- | package/kernel/linux/modules/fs.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index 8f1ed41484..0d98c5a681 100644 --- a/package/kernel/linux/modules/fs.mk +++ b/package/kernel/linux/modules/fs.mk @@ -344,8 +344,8 @@ define KernelPackage/fs-jfs KCONFIG:=CONFIG_JFS_FS FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko AUTOLOAD:=$(call AutoLoad,30,jfs,1) - $(call AddDepends/nls) DEPENDS:=+LINUX_6_6:kmod-nls-ucs2-utils + $(call AddDepends/nls) endef define KernelPackage/fs-jfs/description |