1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 00:42:02 +03:00

[package] kernel/modules: fix kmod-fs-btrfs deps / zlib_deflate / makefile

btrfs needs zlib_deflate, which was built but not included

Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26632 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acinonyx 2011-04-12 23:18:30 +00:00
parent b42464ede0
commit b1d946d11b

View File

@ -28,10 +28,12 @@ define KernelPackage/fs-btrfs
DEPENDS:=+kmod-libcrc32c
KCONFIG:=\
CONFIG_BTRFS_FS \
CONFIG_BTRFS_FS_POSIX_ACL=n
CONFIG_BTRFS_FS_POSIX_ACL=n \
CONFIG_ZLIB_DEFLATE
FILES:=\
$(LINUX_DIR)/fs/btrfs/btrfs.ko
AUTOLOAD:=$(call AutoLoad,30,btrfs,1)
$(LINUX_DIR)/fs/btrfs/btrfs.ko \
$(LINUX_DIR)/lib/zlib_deflate/zlib_deflate.ko
AUTOLOAD:=$(call AutoLoad,30,zlib_deflate btrfs,1)
endef
define KernelPackage/fs-btrfs/description