add nls support modules

SVN-Revision: 2037
This commit is contained in:
Waldemar Brodkorb 2005-10-03 00:24:03 +00:00
parent 4dc9b07d89
commit cf690e07fe
7 changed files with 78 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,6 @@
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

View File

@ -0,0 +1,6 @@
Package: kmod-nls-cp437
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for codepage 437

View File

@ -0,0 +1,6 @@
Package: kmod-nls-cp850
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for codepage 850

View File

@ -0,0 +1,6 @@
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

View File

@ -0,0 +1,6 @@
Package: kmod-nls-utf8
Priority: optional
Section: sys
Maintainer: Waldemar Brodkorb <wbx@openwrt.org>
Source: buildroot internal
Description: Kernel module for utf8 support

View File

@ -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 \
))