#
-# Copyright (C) 2006-2010 OpenWrt.org
+# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
define KernelPackage/fs-btrfs
SUBMENU:=$(FS_MENU)
TITLE:=BTRFS filesystem support
- DEPENDS:=+kmod-libcrc32c
+ DEPENDS:=+kmod-libcrc32c +kmod-zlib
KCONFIG:=\
CONFIG_BTRFS_FS \
CONFIG_BTRFS_FS_POSIX_ACL=n
SUBMENU:=$(FS_MENU)
TITLE:=EXT2 filesystem support
KCONFIG:=CONFIG_EXT2_FS
- DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
+ DEPENDS:=@LINUX_2_6_30||LINUX_2_6_31
FILES:=$(LINUX_DIR)/fs/ext2/ext2.ko
AUTOLOAD:=$(call AutoLoad,32,ext2,1)
endef
KCONFIG:= \
CONFIG_EXT3_FS \
CONFIG_JBD
- DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
+ DEPENDS:=@LINUX_2_6_30||LINUX_2_6_31
FILES:= \
$(LINUX_DIR)/fs/ext3/ext3.ko \
$(LINUX_DIR)/fs/jbd/jbd.ko
KCONFIG:= \
CONFIG_EXT4_FS \
CONFIG_JBD2
- DEPENDS:= $(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
FILES:= \
$(LINUX_DIR)/fs/ext4/ext4.ko \
$(LINUX_DIR)/fs/jbd2/jbd2.ko
- AUTOLOAD:=$(call AutoLoad,30,jbd2 ext4,1)
+ ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.37)),1)
+ FILES+= \
+ $(LINUX_DIR)/fs/mbcache.ko
+ AUTOLOAD:=$(call AutoLoad,30,mbcache jbd2 ext4,1)
+ else
+ AUTOLOAD:=$(call AutoLoad,30,jbd2 ext4,1)
+ endif
$(call AddDepends/crc16)
endef
$(eval $(call KernelPackage,fs-isofs))
-define KernelPackage/fs-mbcache
- SUBMENU:=$(FS_MENU)
- TITLE:=mbcache (used by ext2/ext3/ext4)
- KCONFIG:=CONFIG_FS_MBCACHE
- ifneq ($(CONFIG_FS_MBCACHE),)
- FILES:=$(LINUX_DIR)/fs/mbcache.ko
- AUTOLOAD:=$(call AutoLoad,20,mbcache,1)
- endif
-endef
-
-define KernelPackage/fs-mbcache/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))
-
-
define KernelPackage/fs-minix
SUBMENU:=$(FS_MENU)
TITLE:=Minix filesystem support
$(call AddDepends/nls)
endef
-define KernelPackage/fs-msdos/2.4
- FILES:=$(LINUX_DIR)/fs/msdos/msdos.ko
-endef
-
define KernelPackage/fs-msdos/description
Kernel module for MSDOS filesystem support
endef
$(call AddDepends/nls)
endef
-define KernelPackage/fs-vfat/2.4
- FILES:= \
- $(LINUX_DIR)/fs/fat/fat.ko \
- $(LINUX_DIR)/fs/vfat/vfat.ko
-endef
-
define KernelPackage/fs-vfat/description
Kernel module for VFAT filesystem support
endef