From patchwork Fri Dec 4 20:16:38 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Boyer X-Patchwork-Id: 84758 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 92598A09E3; Fri, 4 Dec 2020 21:17:45 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3C479C8C4; Fri, 4 Dec 2020 21:17:33 +0100 (CET) Received: from mail-pg1-f195.google.com (mail-pg1-f195.google.com [209.85.215.195]) by dpdk.org (Postfix) with ESMTP id 07A185681 for ; Fri, 4 Dec 2020 21:17:30 +0100 (CET) Received: by mail-pg1-f195.google.com with SMTP id t3so4194628pgi.11 for ; Fri, 04 Dec 2020 12:17:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pensando.io; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=3ZdgIYv9szTFl7Jj0SgMMEbhaB5fAUA3zT6n33RwCFs=; b=U/F2r2Dx9nxHyRT/KC+loD2bFfDBagIfCaKnCXDU1o5D6X6xICi5v1k/jGgeMZCUR3 Vdd4HMg0SHica7LVuFN660l25Kaa2pXM43Z8OW+jGiJbHjZafiYKDCHB6DH3TPAPKRi/ 3p3YW+tF9KCONOuVFWWtWsH6sbGddcdEOqIV+YokcmjpDTVdrg8DIL3ShVpYgApRIVWY p0iLvwTdw8Xr+0aSi0eQHF/LKPZKSQnVKwRBZ1J0fJgTGvP6PUxAVv7oQCwPGQ3i4VIu 5yEf0MQhGPoikPxHhpq9hKQuqh47XWBohXRwql9vqaF335RaFFFjo+OxH51WpoQJwSV8 ABGg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=3ZdgIYv9szTFl7Jj0SgMMEbhaB5fAUA3zT6n33RwCFs=; b=hI4i859SUYSJ2Mu49mGdSvY1t9vjPwYhKAhcF11ZqnBWzoOutfveXWJXF7NcZPTEBj BU48IWaIA591ahpdYjzFTuJ6Rrd4Qm6pOL5mqKG20Fm4LTPPDy9tq6k0uCIsg3ufU375 5qaBIZp5QxDDu1Kh4MNk6AEB1zDwkqq9GxUewvRYC3rLvUu5r4reJUScc9io9T72roRB N5aRfXsd9bxROO/QxmRD7tHOP6ZpSvOuHZKuPksgYcp8cwiEvtpyxqZbUJwGjoICvz/q qnRsz15mRNC6H/1yIDuyqCAzP/3euMNotx0JkaHPTuaoGgmrm1es1lnmtLWGqRB2eY9s AYMw== X-Gm-Message-State: AOAM530ElbRBnXvxtbu+G331ziCjcQ9Ky4wBodf0NRZ+HnNgvMRLIdv5 3j2C6gtuO1mG1vk9PIahP5CXpQ6VZZRwMA== X-Google-Smtp-Source: ABdhPJxR6IBp9AZyOTrICcsVL21Rse4HeqKsC8FqzCTlUDBmExsiA/N8FznwFSYcBLVreZqpJZ214Q== X-Received: by 2002:a63:a902:: with SMTP id u2mr8978883pge.263.1607113049105; Fri, 04 Dec 2020 12:17:29 -0800 (PST) Received: from driver-dev1.pensando.io ([12.226.153.42]) by smtp.gmail.com with ESMTPSA id z20sm2911805pjq.16.2020.12.04.12.17.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 04 Dec 2020 12:17:28 -0800 (PST) From: Andrew Boyer To: dev@dpdk.org Cc: Alfredo Cardigliano , Andrew Boyer Date: Fri, 4 Dec 2020 12:16:38 -0800 Message-Id: <20201204201646.51746-2-aboyer@pensando.io> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201204201646.51746-1-aboyer@pensando.io> References: <20201204201646.51746-1-aboyer@pensando.io> In-Reply-To: <20201203203418.15064-1-aboyer@pensando.io> References: <20201203203418.15064-1-aboyer@pensando.io> Subject: [dpdk-dev] [PATCH v3 1/9] net/ionic: connect ionic to the build system 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Otherwise the ionic PMD is never built. Signed-off-by: Andrew Boyer --- drivers/net/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 29f477750..6e4aa6bf3 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -26,6 +26,7 @@ drivers = ['af_packet', 'iavf', 'ice', 'igc', + 'ionic', 'ipn3ke', 'ixgbe', 'kni',