From patchwork Wed Aug 5 13:30:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Goldstein X-Patchwork-Id: 503993 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 18FCD1402D1 for ; Wed, 5 Aug 2015 23:30:29 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id D2E1028050F; Wed, 5 Aug 2015 15:29:46 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id EE167280163 for ; Wed, 5 Aug 2015 15:29:41 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 BOGUS_MX=2.1 CL_IP_EQ_HELO_IP=-2 (check from: .cardoe. - helo: .mail-yk0-f177.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -6.4 Received: from mail-yk0-f177.google.com (mail-yk0-f177.google.com [209.85.160.177]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 5 Aug 2015 15:29:40 +0200 (CEST) Received: by ykoo205 with SMTP id o205so35075739yko.0 for ; Wed, 05 Aug 2015 06:30:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=us80ntqd/IyyxXLH6GAP1avsHPGnqWsmnC8Sks10POU=; b=Mlbjsn6DQhRfagYgBe/x18NXGitmuCXEvKCvZuAVRgAnDFHYQWTLYf99yAfQutlqDb ig6Z6rOj9Zd43vGr9elbXF7ttwCkKrZF9aziCyZQ7Xrz2mDQAepGoDswWcidLLNvUn7A 7gTMM2Mx6YudE3Lwd23hDQyDiw9d3jomwxvNunAK1FvdrvjISY6hupymqJ1wsGv2N/4A 6xpdMNxzoJdCYRrmxbyBBlFSati0+YZ8+yjLSuoaS0beHJA1nCz5dpkSZMbAKtO6NSVk CHhSc58yeh1/Og81150k2rPwTz77bLEcmWFHs8rS65KnG/XTNZJPurOLJQijZz6c9J2l L0vw== X-Gm-Message-State: ALoCoQnlODkRUcaUMzfwUN8oVwHk5lWFIXvIPhhiMEAmu05Mmo362CWmCRybSQY8gXyCDNUfQWAu X-Received: by 10.170.55.20 with SMTP id 20mr9195348ykx.25.1438781417434; Wed, 05 Aug 2015 06:30:17 -0700 (PDT) Received: from doug-t430.lan ([67.63.141.2]) by smtp.gmail.com with ESMTPSA id n124sm2767459ywe.1.2015.08.05.06.30.16 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Aug 2015 06:30:16 -0700 (PDT) From: Doug Goldstein To: openwrt-devel@lists.openwrt.org Date: Wed, 5 Aug 2015 08:30:04 -0500 Message-Id: <1438781404-1995-1-git-send-email-cardoe@cardoe.com> X-Mailer: git-send-email 2.1.4 Subject: [OpenWrt-Devel] [PATCH] kmod-crypto-manager: autoload aead module X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" This package provides the aead module which other modules need loaded when they depend on this package. Signed-off-by: Doug Goldstein --- package/kernel/linux/modules/crypto.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index efa69b7..7295b98 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -58,6 +58,7 @@ define KernelPackage/crypto-manager CONFIG_CRYPTO_MANAGER \ $(foreach mod,$(CRYPTOMGR_MODULES),$(call crypto_confvar,$(mod))) FILES:=$(foreach mod,$(CRYPTOMGR_MODULES),$(call crypto_file,$(mod))) + AUTOLOAD:=$(call AutoLoad,08,aead) $(call AddDepends/crypto) endef