From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nipun Gupta Subject: [PATCH v5 3/5] drivers: add net as dependency for event drivers Date: Mon, 23 Oct 2017 18:07:04 +0530 Message-ID: <1508762226-18938-3-git-send-email-nipun.gupta@nxp.com> References: <1507657887-11366-1-git-send-email-nipun.gupta@nxp.com> <1508762226-18938-1-git-send-email-nipun.gupta@nxp.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , , , Nipun Gupta To: Return-path: Received: from NAM01-SN1-obe.outbound.protection.outlook.com (mail-sn1nam01on0074.outbound.protection.outlook.com [104.47.32.74]) by dpdk.org (Postfix) with ESMTP id 7C83B1B39F for ; Mon, 23 Oct 2017 08:22:02 +0200 (CEST) In-Reply-To: <1508762226-18938-1-git-send-email-nipun.gupta@nxp.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" With the introduction of eventdev-ethdev RX adapter support in event device, some of the event device will have dependency on their respective ethernet drivers. This patch adds the net as a dependency for eventdevs. Signed-off-by: Nipun Gupta --- Changes in v5: Added get commit message (Jerin) Changes in v4: This change is separated from patch-3/4 from v3 of this patchset (Jerin) drivers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/Makefile b/drivers/Makefile index 0467250..db0cd76 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -39,6 +39,6 @@ DEPDIRS-net := bus mempool DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += crypto DEPDIRS-crypto := bus mempool DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event -DEPDIRS-event := bus mempool +DEPDIRS-event := bus mempool net include $(RTE_SDK)/mk/rte.subdir.mk -- 1.9.1