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.
|
|
|
|
#
|
|
|
|
|
|
|
|
FS_MENU:=Filesystems
|
2006-10-19 05:05:17 +03:00
|
|
|
|
2007-09-03 11:58:14 +03:00
|
|
|
define KernelPackage/nls/Depends
|
2009-08-28 19:26:53 +03:00
|
|
|
DEPENDS:= +!LINUX_2_4:kmod-nls-base
|
2007-09-03 11:58:14 +03:00
|
|
|
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-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)
|
2009-08-28 19:26:48 +03:00
|
|
|
$(call KernelPackage/nls/Depends)
|
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
|
|
|
|
2007-12-23 03:40:06 +02:00
|
|
|
define KernelPackage/fs-mbcache
|
|
|
|
SUBMENU:=$(FS_MENU)
|
2010-02-21 22:14:24 +02:00
|
|
|
TITLE:=mbcache (used by ext2/ext3/ext4)
|
2007-12-23 03:40:06 +02:00
|
|
|
KCONFIG:=CONFIG_FS_MBCACHE
|
|
|
|
ifneq ($(CONFIG_FS_MBCACHE),)
|
|
|
|
FILES:=$(LINUX_DIR)/fs/mbcache.$(LINUX_KMOD_SUFFIX)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,mbcache,1)
|
2007-12-23 03:40:06 +02:00
|
|
|
endif
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-ext2/description
|
|
|
|
Meta Block cache used by ext2/ext3
|
|
|
|
This package will only be installed if extended attributes
|
|
|
|
are enabled for ext2/ext3
|
|
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,fs-mbcache))
|
|
|
|
|
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-12-23 03:40:06 +02:00
|
|
|
DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
|
2007-04-18 15:28:38 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/ext2/ext2.$(LINUX_KMOD_SUFFIX)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,ext2,1)
|
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
|
|
|
|
|
2010-02-27 00:46:00 +02:00
|
|
|
$(eval $(call KernelPackage,fs-ext2,1))
|
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/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
|
2007-12-23 03:40:06 +02:00
|
|
|
DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
|
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)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,31,jbd ext3,1)
|
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))
|
|
|
|
|
2009-04-12 18:18:49 +03:00
|
|
|
define KernelPackage/fs-ext4
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=EXT4 filesystem support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_EXT4_FS_XATTR=y \
|
|
|
|
CONFIG_EXT4_FS_POSIX_ACL=y \
|
|
|
|
CONFIG_EXT4_FS_SECURITY=y \
|
2009-04-25 22:48:54 +03:00
|
|
|
CONFIG_EXT4_FS \
|
|
|
|
CONFIG_JBD2
|
2010-02-21 22:26:37 +02:00
|
|
|
DEPENDS:= @LINUX_2_6 +kmod-crc16 $(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
|
2009-04-12 18:18:49 +03:00
|
|
|
FILES:= \
|
2009-12-27 23:42:38 +02:00
|
|
|
$(LINUX_DIR)/fs/ext4/ext4.$(LINUX_KMOD_SUFFIX) \
|
2009-04-25 22:48:54 +03:00
|
|
|
$(LINUX_DIR)/fs/jbd2/jbd2.$(LINUX_KMOD_SUFFIX)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,jbd2 ext4,1)
|
2009-04-12 18:18:49 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-ext4/description
|
|
|
|
Kernel module for EXT4 filesystem support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-ext4))
|
|
|
|
|
|
|
|
|
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
|
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-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-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))
|
|
|
|
|
2008-07-19 19:56:24 +03:00
|
|
|
define KernelPackage/fs-nfs-common
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Common NFS filesystem modules
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_LOCKD \
|
2008-07-22 13:14:02 +03:00
|
|
|
CONFIG_SUNRPC
|
2008-07-19 19:56:24 +03:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \
|
2008-07-22 13:14:02 +03:00
|
|
|
$(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
|
2008-07-19 19:56:24 +03:00
|
|
|
endef
|
|
|
|
|
2010-02-20 07:17:39 +02:00
|
|
|
$(eval $(call KernelPackage,fs-nfs-common))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/fs-nfs-common-v4
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Common NFS V4 filesystem modules
|
|
|
|
KCONFIG+=\
|
|
|
|
CONFIG_SUNRPC_GSS\
|
|
|
|
CONFIG_NFS_V4=y\
|
|
|
|
CONFIG_NFSD_V4=y
|
2010-03-10 19:53:04 +02:00
|
|
|
DEPENDS:= @LINUX_2_6 @BROKEN
|
2009-05-11 23:44:27 +03:00
|
|
|
FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.$(LINUX_KMOD_SUFFIX)
|
2010-02-20 07:17:39 +02:00
|
|
|
AUTOLOAD=$(call AutoLoad,30,auth_rpcgss)
|
2009-05-11 23:44:27 +03:00
|
|
|
endef
|
|
|
|
|
2010-02-20 07:17:39 +02:00
|
|
|
define KernelPackage/fs-nfs-common-v4/description
|
|
|
|
Kernel modules for NFS V4 & NFSD V4 kernel support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-nfs-common-v4))
|
2008-07-19 19:56:24 +03:00
|
|
|
|
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
|
2009-05-17 06:07:24 +03:00
|
|
|
DEPENDS:=+kmod-fs-nfs-common
|
2007-09-03 11:58:14 +03:00
|
|
|
KCONFIG:= \
|
2008-07-22 13:14:02 +03:00
|
|
|
CONFIG_NFS_FS
|
2006-10-19 05:05:17 +03:00
|
|
|
FILES:= \
|
2008-07-22 13:14:02 +03:00
|
|
|
$(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX)
|
2008-07-19 19:56:24 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,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
|
|
|
|
2009-05-11 23:44:27 +03:00
|
|
|
define KernelPackage/fs-exportfs
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=exportfs kernel server support
|
|
|
|
KCONFIG:=CONFIG_EXPORTFS
|
|
|
|
FILES=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,exportfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-exportfs/description
|
|
|
|
Kernel module for exportfs. Needed for some other modules.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-exportfs))
|
|
|
|
|
|
|
|
|
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
|
2009-05-17 06:07:24 +03:00
|
|
|
DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
|
2008-07-29 13:57:02 +03:00
|
|
|
KCONFIG:=CONFIG_NFSD
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,nfsd)
|
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))
|
|
|
|
|
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-28 14:44:15 +03:00
|
|
|
KCONFIG:=CONFIG_MSDOS_FS
|
2010-01-06 03:11:31 +02:00
|
|
|
FILES:=$(LINUX_DIR)/fs/fat/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
|
|
|
|
2010-01-06 03:11:31 +02:00
|
|
|
define KernelPackage/fs-msdos/2.4
|
|
|
|
FILES:=$(LINUX_DIR)/fs/msdos/msdos.$(LINUX_KMOD_SUFFIX)
|
|
|
|
endef
|
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)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
|
2007-09-20 14:11:41 +03:00
|
|
|
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) \
|
2010-01-06 03:11:31 +02:00
|
|
|
$(LINUX_DIR)/fs/fat/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
|
|
|
|
2010-01-06 03:11:31 +02:00
|
|
|
define KernelPackage/fs-vfat/2.4
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/fs/fat/fat.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/fs/vfat/vfat.$(LINUX_KMOD_SUFFIX)
|
|
|
|
endef
|
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
|
2009-05-11 23:44:27 +03:00
|
|
|
DEPENDS:= +kmod-fs-exportfs
|
2007-08-28 14:44:15 +03:00
|
|
|
FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,xfs,1)
|
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))
|
|
|
|
|
2009-07-26 13:49:39 +03:00
|
|
|
define KernelPackage/fs-btrfs
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=BTRFS filesystem support
|
|
|
|
KCONFIG:=\
|
|
|
|
CONFIG_CRYPTO_CRC32C \
|
|
|
|
CONFIG_LIBCRC32C \
|
|
|
|
CONFIG_BTRFS_FS \
|
|
|
|
CONFIG_BTRFS_FS_POSIX_ACL=n
|
|
|
|
# for crc32c
|
2010-01-23 19:07:59 +02:00
|
|
|
DEPENDS:=+kmod-crypto-core
|
2009-07-26 13:49:39 +03:00
|
|
|
FILES:=\
|
|
|
|
$(LINUX_DIR)/crypto/crc32c.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/lib/libcrc32c.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/fs/btrfs/btrfs.$(LINUX_KMOD_SUFFIX)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,crc32c libcrc32c btrfs,1)
|
2009-07-26 13:49:39 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-btrfs/description
|
|
|
|
Kernel module for BTRFS support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-btrfs))
|
|
|
|
|
2009-10-04 17:01:17 +03:00
|
|
|
define KernelPackage/fs-autofs4
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=AUTOFS4 filesystem support
|
|
|
|
KCONFIG:=CONFIG_AUTOFS4_FS
|
|
|
|
FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,30,autofs4)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/fs-autofs4/description
|
|
|
|
Kernel module for AutoFS4 support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,fs-autofs4))
|
|
|
|
|
2006-10-19 05:05:17 +03:00
|
|
|
|
|
|
|
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)
|
2010-02-27 00:46:00 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,nls_base,1)
|
2006-10-19 05:05:17 +03:00
|
|
|
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-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-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
|
|
|
|
2009-02-15 17:35:00 +02:00
|
|
|
define KernelPackage/nls-cp852
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Codepage 852 (Europe)
|
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_852
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp852.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp852)
|
|
|
|
$(call KernelPackage/nls/Depends)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp852/description
|
|
|
|
Kernel module for NLS Codepage 852 (Europe)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,nls-cp852))
|
|
|
|
|
|
|
|
|
2009-12-08 01:59:06 +02:00
|
|
|
define KernelPackage/nls-cp866
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Codepage 866 (Cyrillic)
|
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_866
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp866.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp866)
|
|
|
|
$(call KernelPackage/nls/Depends)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp866/description
|
|
|
|
Kernel module for NLS Codepage 866 (Cyrillic)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,nls-cp866))
|
|
|
|
|
|
|
|
|
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-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
|
|
|
|
2008-07-14 00:59:49 +03:00
|
|
|
define KernelPackage/nls-cp1251
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Codepage 1251 (Russian)
|
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_1251
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp1251.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp1251)
|
|
|
|
$(call KernelPackage/nls/Depends)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp1251/description
|
|
|
|
Kernel module for NLS Codepage 1251 (Russian)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,nls-cp1251))
|
|
|
|
|
|
|
|
|
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-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-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-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-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-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))
|
2009-07-06 19:10:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-iso8859-13
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=ISO 8859-13 (Latin 7; Baltic)
|
|
|
|
KCONFIG:=CONFIG_NLS_ISO8859_13
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-13.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-13)
|
|
|
|
$(call KernelPackage/nls/Depends)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-iso8859-13/description
|
|
|
|
Kernel module for NLS ISO 8859-13 (Latin 7; Baltic)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,nls-iso8859-13))
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp775
|
|
|
|
SUBMENU:=$(FS_MENU)
|
|
|
|
TITLE:=Codepage 775 (Baltic Rim)
|
|
|
|
KCONFIG:=CONFIG_NLS_CODEPAGE_775
|
|
|
|
FILES:=$(LINUX_DIR)/fs/nls/nls_cp775.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,nls_cp775)
|
|
|
|
$(call KernelPackage/nls/Depends)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/nls-cp775/description
|
|
|
|
Kernel module for NLS Codepage 775 (Baltic Rim)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,nls-cp775))
|
|
|
|
|