Skip to content
Snippets Groups Projects
Commit ecb5c610 authored by Hauke Mehrtens's avatar Hauke Mehrtens
Browse files

kernel: fix dependency to xor-neon.ko


If this module gets build the xor module depends on it

Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>

SVN-Revision: 40666
parent 973c9a0f
No related branches found
No related tags found
No related merge requests found
...@@ -138,8 +138,15 @@ define KernelPackage/lib-xor ...@@ -138,8 +138,15 @@ define KernelPackage/lib-xor
TITLE:=XOR blocks algorithm support TITLE:=XOR blocks algorithm support
HIDDEN:=1 HIDDEN:=1
KCONFIG:=CONFIG_XOR_BLOCKS KCONFIG:=CONFIG_XOR_BLOCKS
ifneq ($(wildcard $(LINUX_DIR)/arch/arm/lib/xor-neon.ko),)
FILES:= \
$(LINUX_DIR)/crypto/xor.ko \
$(LINUX_DIR)/arch/arm/lib/xor-neon.ko
AUTOLOAD:=$(call AutoProbe,xor-neon xor)
else
FILES:=$(LINUX_DIR)/crypto/xor.ko FILES:=$(LINUX_DIR)/crypto/xor.ko
AUTOLOAD:=$(call AutoProbe,xor) AUTOLOAD:=$(call AutoProbe,xor)
endif
endef endef
define KernelPackage/lib-xor/description define KernelPackage/lib-xor/description
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment