add a workaround preventing opkg to install anything on squashfs-based fs layouts...
[openwrt.git] / package / kernel / modules / crypto.mk
index af26808..26d0717 100644 (file)
@@ -37,6 +37,7 @@ define KernelPackage/crypto-core
   TITLE:=Core CryptoAPI modules
   KCONFIG:= \
        CONFIG_CRYPTO=y \
+       CONFIG_CRYPTO_AEAD \
        CONFIG_CRYPTO_ALGAPI \
        CONFIG_CRYPTO_BLKCIPHER \
        CONFIG_CRYPTO_CBC \
@@ -47,6 +48,7 @@ define KernelPackage/crypto-core
        CONFIG_CRYPTO_MANAGER
   FILES:= \
        $(LINUX_DIR)/crypto/crypto_algapi.$(LINUX_KMOD_SUFFIX) \
+       $(LINUX_DIR)/crypto/aead.$(LINUX_KMOD_SUFFIX) \
        $(LINUX_DIR)/crypto/$(BLKCIPHER_PREFIX)blkcipher.$(LINUX_KMOD_SUFFIX) \
        $(LINUX_DIR)/crypto/cbc.$(LINUX_KMOD_SUFFIX) \
        $(LINUX_DIR)/crypto/deflate.$(LINUX_KMOD_SUFFIX) \
@@ -55,9 +57,10 @@ define KernelPackage/crypto-core
        $(LINUX_DIR)/crypto/cryptomgr.$(LINUX_KMOD_SUFFIX)
   AUTOLOAD:=$(call AutoLoad,01, \
        crypto_algapi \
+       aead \
+       $(BLKCIPHER_PREFIX)blkcipher \
        cryptomgr \
        crypto_hash \
-       $(BLKCIPHER_PREFIX)blkcipher \
        cbc \
        ecb \
        deflate \
@@ -123,8 +126,7 @@ define KernelPackage/crypto-hw-ixp4xx
   SUBMENU:=$(CRYPTO_MENU)
   TITLE:=Intel IXP4xx hardware crypto module
   DEPENDS:= \
-       @TARGET_ixp4xx +kmod-crypto-core +kmod-crypto-des +kmod-crypto-aead \
-       +kmod-crypto-authenc
+       @TARGET_ixp4xx +kmod-crypto-core +kmod-crypto-des +kmod-crypto-authenc
   KCONFIG:= CONFIG_CRYPTO_DEV_IXP4XX
   FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.$(LINUX_KMOD_SUFFIX)
   AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto)
@@ -167,21 +169,10 @@ endef
 $(eval $(call KernelPackage,crypto-arc4))
 
 
-define KernelPackage/crypto-aead
-  SUBMENU:=$(CRYPTO_MENU)
-  TITLE:=Authenticated Encryption with Associated Data
-  DEPENDS:=+kmod-crypto-core
-  KCONFIG:=CONFIG_CRYPTO_AEAD
-  FILES:=$(LINUX_DIR)/crypto/aead.$(LINUX_KMOD_SUFFIX)
-  AUTOLOAD:=$(call AutoLoad,09,aead)
-endef
-
-$(eval $(call KernelPackage,crypto-aead))
-
 define KernelPackage/crypto-authenc
   SUBMENU:=$(CRYPTO_MENU)
   TITLE:=Combined mode wrapper for IPsec
-  DEPENDS:=+kmod-crypto-core +kmod-crypto-aead
+  DEPENDS:=+kmod-crypto-core
   KCONFIG:=CONFIG_CRYPTO_AUTHENC
   FILES:=$(LINUX_DIR)/crypto/authenc.$(LINUX_KMOD_SUFFIX)
   AUTOLOAD:=$(call AutoLoad,09,authenc)
This page took 0.024084 seconds and 4 git commands to generate.