2007-09-16 20:45:15 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
FS_MENU:=Filesystems
|
2006-10-19 05:05:17 +03:00
|
|
|
|
2007-09-03 11:58:14 +03:00
|
|
|
define KernelPackage/nls/Depends
|
|
|
|
ifneq ($(KERNEL),2.4)
|
|
|
|
DEPENDS+= +kmod-nls-base $(foreach m,$(1),+kmod-nls-$(m))
|
|
|
|
endif
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-cifs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=CIFS support
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_CIFS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/cifs/cifs.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,cifs)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-cifs/description
|
|
|
|
Kernel module for CIFS support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-cifs))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-minix
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=Minix filesystem support
|
2007-07-18 14:31:01 +03:00
|
|
|
KCONFIG:=CONFIG_MINIX_FS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/minix/minix.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,minix)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-minix/description
|
|
|
|
Kernel module for Minix filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-minix))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-08-11 16:09:27 +03:00
|
|
|
define KernelPackage/fs-ntfs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-08-11 16:09:27 +03:00
|
|
|
TITLE:=NTFS filesystem support
|
|
|
|
KCONFIG:=CONFIG_NTFS_FS
|
|
|
|
FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,ntfs)
|
2007-08-11 16:09:27 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-ntfs/description
|
|
|
|
Kernel module for NTFS filesystem support
|
|
|
|
endef
|
|
|
|
|
2007-08-11 16:09:27 +03:00
|
|
|
$(eval $(call KernelPackage,fs-ntfs))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-ext2
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=EXT2 filesystem support
|
2007-07-18 14:31:01 +03:00
|
|
|
KCONFIG:=CONFIG_EXT2_FS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/ext2/ext2.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,ext2)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-ext2/description
|
|
|
|
Kernel module for EXT2 filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-ext2))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-ext3
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=EXT3 filesystem support
|
2007-09-03 11:58:14 +03:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_EXT3_FS \
|
|
|
|
CONFIG_JBD
|
2006-10-19 05:05:17 +03:00
|
|
|
FILES:= \
|
2007-09-03 11:58:14 +03:00
|
|
|
$(LINUX_DIR)/fs/ext3/ext3.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/fs/jbd/jbd.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,jbd ext3)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-ext3/description
|
|
|
|
Kernel module for EXT3 filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-ext3))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-07-18 14:31:01 +03:00
|
|
|
define KernelPackage/fs-hfs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-07-18 14:31:01 +03:00
|
|
|
TITLE:=HFS+ filesystem support
|
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_HFS_FS
|
2007-07-18 14:31:01 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/hfs/hfs.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,hfs)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2007-07-18 14:31:01 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-hfs/description
|
|
|
|
Kernel module for HFS filesystem support
|
|
|
|
endef
|
|
|
|
|
2007-07-18 14:31:01 +03:00
|
|
|
$(eval $(call KernelPackage,fs-hfs))
|
|
|
|
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-hfsplus
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=HFS+ filesystem support
|
2007-07-18 14:31:01 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_HFSPLUS_FS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,hfsplus)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends,utf8)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-hfsplus/description
|
|
|
|
Kernel module for HFS+ filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-hfsplus))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-11-09 20:53:23 +02:00
|
|
|
define KernelPackage/fs-isofs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-11-09 20:53:23 +02:00
|
|
|
TITLE:=ISO9660 filesystem support
|
2007-09-03 11:58:14 +03:00
|
|
|
KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/isofs/isofs.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,isofs)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-11-09 20:53:23 +02:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-isofs/description
|
|
|
|
Kernel module for ISO9660 filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-11-09 20:53:23 +02:00
|
|
|
$(eval $(call KernelPackage,fs-isofs))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-11-09 20:53:23 +02:00
|
|
|
define KernelPackage/fs-udf
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-11-09 20:53:23 +02:00
|
|
|
TITLE:=UDF filesystem support
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_UDF_FS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/udf/udf.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,udf)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-11-09 20:53:23 +02:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-udf/description
|
|
|
|
Kernel module for UDF filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-11-09 20:53:23 +02:00
|
|
|
$(eval $(call KernelPackage,fs-udf))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-nfs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=NFS filesystem support
|
2007-09-03 11:58:14 +03:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_NFS_FS \
|
|
|
|
CONFIG_LOCKD \
|
|
|
|
CONFIG_SUNRPC
|
2006-10-19 05:05:17 +03:00
|
|
|
FILES:= \
|
2007-09-20 14:11:41 +03:00
|
|
|
$(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd nfs)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-nfs/description
|
|
|
|
Kernel module for NFS support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-nfs))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-03-28 02:34:37 +03:00
|
|
|
define KernelPackage/fs-nfsd
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-03-28 02:34:37 +03:00
|
|
|
TITLE:=NFS kernel server support
|
2007-09-09 23:37:50 +03:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_NFSD \
|
|
|
|
CONFIG_EXPORTFS
|
2007-08-28 14:44:15 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
|
2007-09-03 11:58:14 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,nfsd)
|
2007-06-14 10:45:33 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-nfsd/2.6
|
2007-09-09 23:37:50 +03:00
|
|
|
# KCONFIG+=CONFIG_EXPORTFS
|
2007-06-14 10:45:33 +03:00
|
|
|
FILES+=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX)
|
2007-09-03 11:58:14 +03:00
|
|
|
AUTOLOAD+=$(call AutoLoad,30,exportfs)
|
2007-06-14 10:45:33 +03:00
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-nfsd/description
|
|
|
|
Kernel module for NFS kernel server support
|
|
|
|
endef
|
|
|
|
|
2007-03-28 02:34:37 +03:00
|
|
|
$(eval $(call KernelPackage,fs-nfsd))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-12-09 21:47:32 +02:00
|
|
|
define KernelPackage/fs-msdos
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-12-09 21:47:32 +02:00
|
|
|
TITLE:=MSDOS filesystem support
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_MSDOS_FS
|
|
|
|
FILES:=$(LINUX_DIR)/fs/msdos/msdos.$(LINUX_KMOD_SUFFIX)
|
2006-12-24 00:50:36 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,msdos)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-12-09 21:47:32 +02:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-msdos/description
|
|
|
|
Kernel module for MSDOS filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-12-09 21:47:32 +02:00
|
|
|
$(eval $(call KernelPackage,fs-msdos))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-20 14:11:41 +03:00
|
|
|
define KernelPackage/fs-reiserfs
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=ReiserFS filesystem support
|
|
|
|
KCONFIG:=CONFIG_REISERFS_FS
|
|
|
|
FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,30,reiserfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-reiserfs/description
|
|
|
|
Kernel module for ReiserFS support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-reiserfs))
|
|
|
|
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-vfat
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=VFAT filesystem support
|
2007-09-03 11:58:14 +03:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_FAT_FS \
|
|
|
|
CONFIG_VFAT_FS
|
2006-10-19 05:05:17 +03:00
|
|
|
FILES:= \
|
2007-04-18 15:28:38 +03:00
|
|
|
$(LINUX_DIR)/fs/fat/fat.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/fs/vfat/vfat.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 14:44:15 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,fat vfat)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-vfat/description
|
|
|
|
Kernel module for VFAT filesystem support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-vfat))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/fs-xfs
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=XFS filesystem support
|
2007-07-18 14:31:01 +03:00
|
|
|
KCONFIG:=CONFIG_XFS_FS
|
2007-08-28 14:44:15 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
|
2007-09-03 11:58:14 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,xfs)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/fs-xfs/description
|
|
|
|
Kernel module for XFS support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,fs-xfs))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-base
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=Native Language Support
|
2007-07-18 14:31:01 +03:00
|
|
|
KCONFIG:=CONFIG_NLS
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_base.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,nls_base)
|
|
|
|
endef
|
2007-08-28 15:33:43 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-base/description
|
|
|
|
Kernel module for NLS (Native Language Support)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,nls-base))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp437
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=Codepage 437 (United States, Canada)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_437
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp437.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp437)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-cp437/description
|
|
|
|
Kernel module for NLS Codepage 437 (United States, Canada)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,nls-cp437))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp850
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=Codepage 850 (Europe)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_850
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp850.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp850)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-cp850/description
|
|
|
|
Kernel module for NLS Codepage 850 (Europe)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,nls-cp850))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-04-09 00:18:19 +03:00
|
|
|
define KernelPackage/nls-cp1250
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-04-09 00:18:19 +03:00
|
|
|
TITLE:=Codepage 1250 (Eastern Europe)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_1250
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp1250.$(LINUX_KMOD_SUFFIX)
|
2007-04-09 00:18:19 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp1250)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2007-04-09 00:18:19 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-cp1250/description
|
|
|
|
Kernel module for NLS Codepage 1250 (Eastern Europe)
|
|
|
|
endef
|
|
|
|
|
2007-04-09 00:18:19 +03:00
|
|
|
$(eval $(call KernelPackage,nls-cp1250))
|
2006-10-19 05:05:17 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/nls-iso8859-1
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=ISO 8859-1 (Latin 1; Western European Languages)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_ISO8859_1
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-1.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-1)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-iso8859-1/description
|
|
|
|
Kernel module for NLS ISO 8859-1 (Latin 1)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,nls-iso8859-1))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-07-23 15:57:27 +03:00
|
|
|
define KernelPackage/nls-iso8859-2
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-07-23 15:57:27 +03:00
|
|
|
TITLE:=ISO 8859-2 (Latin 2; Central European Languages)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_ISO8859_2
|
2007-07-23 15:57:27 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-2.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-2)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2007-07-23 15:57:27 +03:00
|
|
|
endef
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-iso8859-2/description
|
|
|
|
Kernel module for NLS ISO 8859-2 (Latin 2)
|
|
|
|
endef
|
|
|
|
|
2007-07-23 15:57:27 +03:00
|
|
|
$(eval $(call KernelPackage,nls-iso8859-2))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/nls-iso8859-15
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-10-19 05:05:17 +03:00
|
|
|
TITLE:=ISO 8859-15 (Latin 9; Western, with Euro symbol)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_ISO8859_15
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-15.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-15)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-iso8859-15/description
|
|
|
|
Kernel module for NLS ISO 8859-15 (Latin 9)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
$(eval $(call KernelPackage,nls-iso8859-15))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-11-04 18:29:14 +02:00
|
|
|
define KernelPackage/nls-koi8r
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2006-11-04 18:29:14 +02:00
|
|
|
TITLE:=KOI8-R (Russian)
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_KOI8_R
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_koi8-r.$(LINUX_KMOD_SUFFIX)
|
2006-11-04 18:29:14 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_koi8-r)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-11-04 18:29:14 +02:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-koi8r/description
|
|
|
|
Kernel module for NLS KOI8-R (Russian)
|
|
|
|
endef
|
|
|
|
|
2006-11-04 18:29:14 +02:00
|
|
|
$(eval $(call KernelPackage,nls-koi8r))
|
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
define KernelPackage/nls-utf8
|
2007-09-16 20:45:15 +03:00
|
|
|
SUBMENU:=$(FS_MENU)
|
2007-09-07 11:34:51 +03:00
|
|
|
TITLE:=UTF-8
|
2007-08-21 18:51:22 +03:00
|
|
|
DEPENDS:=+kmod-nls-base
|
2007-08-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_NLS_UTF8
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_utf8.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 05:05:17 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_utf8)
|
2007-09-03 11:58:14 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
2006-10-19 05:05:17 +03:00
|
|
|
endef
|
2007-06-01 17:05:35 +03:00
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define KernelPackage/nls-utf8/description
|
|
|
|
Kernel module for NLS UTF-8
|
|
|
|
endef
|
2006-10-19 05:05:17 +03:00
|
|
|
|
2007-08-28 14:44:15 +03:00
|
|
|
$(eval $(call KernelPackage,nls-utf8))
|