diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-09-04 18:06:49 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-09-04 18:06:49 +0000 |
commit | 573f15826d5e588ca2f57af0555036d9c4224206 (patch) | |
tree | e6684559d082a6d3fc51ea06807f89c60b7d82c6 /package/kernel/modules/fs.mk | |
parent | 54f4be5bd6f4e0abdac2edf72d0adc8ccde52c0f (diff) | |
download | upstream-573f15826d5e588ca2f57af0555036d9c4224206.tar.gz upstream-573f15826d5e588ca2f57af0555036d9c4224206.tar.bz2 upstream-573f15826d5e588ca2f57af0555036d9c4224206.zip |
kmod-sctp: Add SCTP kernel support
This adds a new kmod-sctp option that enables support of SCTP in 2.6x
kernels.
The patch also contains a small cleanup in the dependencies.
Signed-off-by: Sebastien Decugis <sdecugis@nict.go.jp>
SVN-Revision: 22917
Diffstat (limited to 'package/kernel/modules/fs.mk')
-rw-r--r-- | package/kernel/modules/fs.mk | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index 71b1a59fcd..e5714aab64 100644 --- a/package/kernel/modules/fs.mk +++ b/package/kernel/modules/fs.mk @@ -25,16 +25,13 @@ $(eval $(call KernelPackage,fs-autofs4)) define KernelPackage/fs-btrfs SUBMENU:=$(FS_MENU) TITLE:=BTRFS filesystem support - # for crc32c - DEPENDS:=+kmod-crypto-core +kmod-crypto-misc + DEPENDS:=+kmod-libcrc32c KCONFIG:=\ - CONFIG_LIBCRC32C \ CONFIG_BTRFS_FS \ CONFIG_BTRFS_FS_POSIX_ACL=n FILES:=\ - $(LINUX_DIR)/lib/libcrc32c.ko \ $(LINUX_DIR)/fs/btrfs/btrfs.ko - AUTOLOAD:=$(call AutoLoad,30,crc32c libcrc32c btrfs,1) + AUTOLOAD:=$(call AutoLoad,30,btrfs,1) endef define KernelPackage/fs-btrfs/description |