From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53])
 by dpdk.org (Postfix) with ESMTP id C0FF35951
 for <dev@dpdk.org>; Tue,  4 Feb 2014 16:53:31 +0100 (CET)
Received: by mail-wg0-f53.google.com with SMTP id y10so13129906wgg.20
 for <dev@dpdk.org>; Tue, 04 Feb 2014 07:54:52 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to
 :references;
 bh=eGpPcPOOMMaL5Y827dpRXude4QNjNa8IUyNiDur4590=;
 b=IO/iW0xXmRcbso9VUumb4ktegQKmBOSOKlHflKhPya4hGaq38/BFMEezxBJlotp0cn
 1EXsGQb33uTUumUOERgLXus8UkCkBvQp8wJJEhnCrvqSMJgNpYn5DRjbFhBiaZIKPRnm
 LpNyne+a+wYMQ+mbsDJg0G2lOrhDQVq7j98fzn7A0FYkfQEKdPZD9xEYO72kAkhhWG3r
 FtD5/QxPIU3GxwTpy7OOlsnT9C72TiFITcaABeS8AZuXqQkRPEosY9qP2g58QwnisXlj
 PeDRmqlLSsRJvzcJ3gaDtHUJs1lgpy6A3LtSQJvxsEnp3s4PKpUhcbakQy/nngzOEzXt
 Vq6Q==
X-Gm-Message-State: ALoCoQmpKnXbEND+elHW+qY+TVq083KXwBljDT3Hi7ko+1NF/8cyQ++gKRmJ4oHjFx4Z42gWE+JA
X-Received: by 10.194.86.200 with SMTP id r8mr2482485wjz.49.1391529292226;
 Tue, 04 Feb 2014 07:54:52 -0800 (PST)
Received: from angus.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237])
 by mx.google.com with ESMTPSA id q2sm53639203wjq.0.2014.02.04.07.54.50
 for <dev@dpdk.org>
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Tue, 04 Feb 2014 07:54:51 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: dev@dpdk.org
Date: Tue,  4 Feb 2014 16:54:17 +0100
Message-Id: <1391529271-24606-3-git-send-email-thomas.monjalon@6wind.com>
X-Mailer: git-send-email 1.7.10.4
In-Reply-To: <1391529271-24606-1-git-send-email-thomas.monjalon@6wind.com>
References: <1391529271-24606-1-git-send-email-thomas.monjalon@6wind.com>
Subject: [dpdk-dev] [PATCH 02/16] virtio: rename library
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Tue, 04 Feb 2014 15:53:32 -0000

In order to distinguish clearly this implementation from the extension
virtio-net-pmd, it is renamed to reflect its usage of uio framework.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
 lib/librte_pmd_virtio/Makefile |    2 +-
 mk/rte.app.mk                  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/librte_pmd_virtio/Makefile b/lib/librte_pmd_virtio/Makefile
index 764d8e8..a60c5f4 100644
--- a/lib/librte_pmd_virtio/Makefile
+++ b/lib/librte_pmd_virtio/Makefile
@@ -34,7 +34,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 #
 # library name
 #
-LIB = librte_pmd_virtio.a
+LIB = librte_pmd_virtio_uio.a
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
diff --git a/mk/rte.app.mk b/mk/rte.app.mk
index 1652029..6432f17 100644
--- a/mk/rte.app.mk
+++ b/mk/rte.app.mk
@@ -73,7 +73,7 @@ LDLIBS += -lrte_pmd_ixgbe
 endif
 
 ifeq ($(CONFIG_RTE_LIBRTE_VIRTIO_PMD),y)
-LDLIBS += -lrte_pmd_virtio
+LDLIBS += -lrte_pmd_virtio_uio
 endif
 
 ifeq ($(CONFIG_RTE_LIBRTE_CMDLINE),y)
-- 
1.7.10.4