kernel: fix lzo and lz4 modules
both of these have been split up and require additional ko files. Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
parent
bc50a97dfc
commit
b9e700cd58
1 changed files with 6 additions and 2 deletions
|
@ -102,13 +102,15 @@ define KernelPackage/lib-lzo
|
|||
SUBMENU:=$(LIB_MENU)
|
||||
TITLE:=LZO support
|
||||
KCONFIG:= \
|
||||
CONFIG_CRYPTO_LZO@ge4.9 \
|
||||
CONFIG_LZO_COMPRESS \
|
||||
CONFIG_LZO_DECOMPRESS
|
||||
HIDDEN:=1
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/crypto/lzo.ko@ge4.9 \
|
||||
$(LINUX_DIR)/lib/lzo/lzo_compress.ko \
|
||||
$(LINUX_DIR)/lib/lzo/lzo_decompress.ko
|
||||
AUTOLOAD:=$(call AutoProbe,lzo_compress lzo_decompress)
|
||||
AUTOLOAD:=$(call AutoProbe,lzo@ge4.9 lzo_compress lzo_decompress)
|
||||
endef
|
||||
|
||||
define KernelPackage/lib-lzo/description
|
||||
|
@ -123,12 +125,14 @@ define KernelPackage/lib-lz4
|
|||
TITLE:=LZ4 support
|
||||
HIDDEN:=1
|
||||
KCONFIG:= \
|
||||
CONFIG_CRYPTO_LZ4@ge4.9 \
|
||||
CONFIG_LZ4_COMPRESS \
|
||||
CONFIG_LZ4_DECOMPRESS
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/crypto/lz4.ko@ge4.9 \
|
||||
$(LINUX_DIR)/lib/lz4/lz4_compress.ko \
|
||||
$(LINUX_DIR)/lib/lz4/lz4_decompress.ko
|
||||
AUTOLOAD:=$(call AutoProbe,lz4_compress lz4_decompress)
|
||||
AUTOLOAD:=$(call AutoProbe,lz4@ge4.9 lz4_compress lz4_decompress)
|
||||
endef
|
||||
|
||||
define KernelPackage/lib-lz4/description
|
||||
|
|
Loading…
Reference in a new issue