add nls support modules
SVN-Revision: 2037
This commit is contained in:
parent
4dc9b07d89
commit
cf690e07fe
7 changed files with 78 additions and 1 deletions
|
@ -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
|
||||
|
|
6
openwrt/target/linux/control/kmod-nls-base.control
Normal file
6
openwrt/target/linux/control/kmod-nls-base.control
Normal 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
|
6
openwrt/target/linux/control/kmod-nls-cp437.control
Normal file
6
openwrt/target/linux/control/kmod-nls-cp437.control
Normal 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
|
6
openwrt/target/linux/control/kmod-nls-cp850.control
Normal file
6
openwrt/target/linux/control/kmod-nls-cp850.control
Normal 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
|
6
openwrt/target/linux/control/kmod-nls-iso8859-1.control
Normal file
6
openwrt/target/linux/control/kmod-nls-iso8859-1.control
Normal 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
|
6
openwrt/target/linux/control/kmod-nls-utf8.control
Normal file
6
openwrt/target/linux/control/kmod-nls-utf8.control
Normal 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
|
|
@ -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 \
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue