[openwrt/openwrt] kernel: kmod-nls-cp932: Add nls_euc-jp.ko too

LEDE Commits lede-commits at lists.infradead.org
Wed Aug 10 15:51:59 PDT 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/d29353d30e1ed5eb0fb0667934dc285faea8d2a3

commit d29353d30e1ed5eb0fb0667934dc285faea8d2a3
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sat Aug 6 00:45:04 2022 +0200

    kernel: kmod-nls-cp932: Add nls_euc-jp.ko too
    
    The CONFIG_NLS_CODEPAGE_932 Config option builds the nls_cp932.ko and
    the nls_euc-jp.ko kernel module, package both of them.
    
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 package/kernel/linux/modules/nls.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/kernel/linux/modules/nls.mk b/package/kernel/linux/modules/nls.mk
index 05fce27bbc..7450ed1ce5 100644
--- a/package/kernel/linux/modules/nls.mk
+++ b/package/kernel/linux/modules/nls.mk
@@ -135,8 +135,10 @@ define KernelPackage/nls-cp932
   SUBMENU:=Native Language Support
   TITLE:=Codepage 932 (Japanese)
   KCONFIG:=CONFIG_NLS_CODEPAGE_932
-  FILES:=$(LINUX_DIR)/fs/nls/nls_cp932.ko
-  AUTOLOAD:=$(call AutoLoad,25,nls_cp932)
+  FILES:= \
+	$(LINUX_DIR)/fs/nls/nls_cp932.ko \
+	$(LINUX_DIR)/fs/nls/nls_euc-jp.ko
+  AUTOLOAD:=$(call AutoLoad,25,nls_cp932 nls_euc-jp)
   $(call AddDepends/nls)
 endef
 




More information about the lede-commits mailing list