From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH 02/16] virtio: rename library Date: Tue, 4 Feb 2014 16:54:17 +0100 Message-ID: <1391529271-24606-3-git-send-email-thomas.monjalon@6wind.com> References: <1391529271-24606-1-git-send-email-thomas.monjalon@6wind.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1391529271-24606-1-git-send-email-thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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 --- 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