From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 916518D39 for ; Thu, 17 May 2018 22:15:42 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 May 2018 13:15:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,412,1520924400"; d="scan'208";a="40793826" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga008.fm.intel.com with ESMTP; 17 May 2018 13:15:41 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , Shepard Siegel , Ed Czeck , John Miller Date: Thu, 17 May 2018 21:15:12 +0100 Message-Id: <20180517201526.28658-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20180517201526.28658-1-bruce.richardson@intel.com> References: <20180517201526.28658-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH-18.08 01/15] net/ark: add to meson build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 20:15:44 -0000 Signed-off-by: Bruce Richardson --- CC: Shepard Siegel CC: Ed Czeck CC: John Miller --- drivers/net/ark/meson.build | 13 +++++++++++++ drivers/net/meson.build | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 drivers/net/ark/meson.build diff --git a/drivers/net/ark/meson.build b/drivers/net/ark/meson.build new file mode 100644 index 000000000..99151bba1 --- /dev/null +++ b/drivers/net/ark/meson.build @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +sources = files('ark_ddm.c', + 'ark_ethdev.c', + 'ark_ethdev_rx.c', + 'ark_ethdev_tx.c', + 'ark_mpu.c', + 'ark_pktchkr.c', + 'ark_pktdir.c', + 'ark_pktgen.c', + 'ark_rqp.c', + 'ark_udm.c') diff --git a/drivers/net/meson.build b/drivers/net/meson.build index b7d00a04c..d0ae7c34b 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -1,7 +1,8 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['af_packet', 'axgbe', 'bonding', 'dpaa', 'dpaa2', +drivers = ['ark', + 'af_packet', 'axgbe', 'bonding', 'dpaa', 'dpaa2', 'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe', 'mvpp2', 'null', 'octeontx', 'pcap', 'ring', 'sfc', 'thunderx', 'virtio'] -- 2.11.0