Skip to content
Snippets Groups Projects
Commit 5a4e70d3 authored by wbx's avatar wbx
Browse files

add nls support modules

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2037 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent fce3ee15
No related branches found
No related tags found
No related merge requests found
......@@ -252,6 +252,8 @@ config BR2_PACKAGE_KMOD_IDE
config BR2_PACKAGE_KMOD_VFAT
tristate "VFAT filesystem support"
default m
depends on BR2_PACKAGE_KMOD_NLS_BASE
depends on BR2_PACKAGE_KMOD_NLS_CP437 || BR2_PACKAGE_KMOD_NLS_CP850
help
Kernel modules for VFAT filesystem support
useful for usb mass storage devices
......@@ -360,6 +362,36 @@ config BR2_PACKAGE_KMOD_SCHED
help
Kernel schedulers for IP traffic
config BR2_PACKAGE_KMOD_NLS_BASE
tristate "basic native language support for filesystems"
default m
help
Kernel native language support
config BR2_PACKAGE_KMOD_NLS_CP437
tristate "code page 437"
default m
help
Kernel native language support
config BR2_PACKAGE_KMOD_NLS_CP850
tristate "code page 850"
default m
help
Kernel native language support
config BR2_PACKAGE_KMOD_NLS_UTF8
tristate "utf8"
default m
help
Kernel native language support
config BR2_PACKAGE_KMOD_NLS_IS08859_1
tristate "iso8859-1"
default m
help
Kernel native language support
config BR2_PACKAGE_KMOD_VIDEODEV
tristate "Video (For Linux) kernel support"
default m
......
Package: kmod-nls-base
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel modules for basic native language support
Package: kmod-nls-cp437
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for codepage 437
Package: kmod-nls-cp850
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for codepage 850
Package: kmod-nls-iso8859-1
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for iso8859-1 charset support
Package: kmod-nls-utf8
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for utf8 support
......@@ -135,7 +135,22 @@ $(eval $(call KMOD_template,VFAT,vfat,\
$(MODULES_DIR)/kernel/fs/vfat/vfat.ko \
$(MODULES_DIR)/kernel/fs/fat/fat.ko \
$(MODULES_DIR)/kernel/fs/nls/nls_base.ko \
,CONFIG_VFAT_FS,,30,nls_base fat vfat))
,CONFIG_VFAT_FS,,30,fat vfat))
$(eval $(call KMOD_template,NLS_BASE,nls-base,\
$(MODULES_DIR)/kernel/fs/nls/nls_base.ko \
,CONFIG_NLS,,20,nls_base))
$(eval $(call KMOD_template,NLS_UTF8,nls-utf8,\
$(MODULES_DIR)/kernel/fs/nls/nls_utf8.ko \
,CONFIG_NLS_UTF8,,20,nls_utf8))
$(eval $(call KMOD_template,NLS_ISO8859_1,nls-iso8859-1,\
$(MODULES_DIR)/kernel/fs/nls/nls_iso8859-1.ko \
,CONFIG_NLS_ISO8859_1,,20,nls_iso8859-1))
$(eval $(call KMOD_template,NLS_CP437,nls-cp437,\
$(MODULES_DIR)/kernel/fs/nls/nls_cp437.ko \
,CONFIG_NLS_CODEPAGE_437,,20,nls_cp437))
$(eval $(call KMOD_template,NLS_CP850,nls-cp850,\
$(MODULES_DIR)/kernel/fs/nls/nls_cp850.ko \
,CONFIG_NLS_CODEPAGE_850,,20,nls_cp850))
$(eval $(call KMOD_template,CRYPTO,crypto,\
$(MODULES_DIR)/kernel/crypto/*.ko \
))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment