From 1a0accaddbef180f6d91715c9e7d40399abea037 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 16 Feb 2018 16:53:35 +0000 Subject: [PATCH] app/procinfo: rename folder to remove underscore All other apps in the app folder use "-" rather than "_" to separate words in the app name, so rename proc_info to be consistent. Signed-off-by: Bruce Richardson Acked-by: Harry van Haaren --- MAINTAINERS | 2 +- app/Makefile | 2 +- app/{proc_info => proc-info}/Makefile | 0 app/{proc_info => proc-info}/main.c | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename app/{proc_info => proc-info}/Makefile (100%) rename app/{proc_info => proc-info}/main.c (100%) diff --git a/MAINTAINERS b/MAINTAINERS index a646ca3e1e..aa30bd9486 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1006,7 +1006,7 @@ F: test/test/test_event_ring.c Procinfo tool M: Maryam Tahhan M: Reshma Pattan -F: app/proc_info/ +F: app/proc-info/ F: doc/guides/tools/proc_info.rst diff --git a/app/Makefile b/app/Makefile index 0eaed5384c..069fa9849f 100644 --- a/app/Makefile +++ b/app/Makefile @@ -4,7 +4,7 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd -DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info +DIRS-$(CONFIG_RTE_PROC_INFO) += proc-info DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y) diff --git a/app/proc_info/Makefile b/app/proc-info/Makefile similarity index 100% rename from app/proc_info/Makefile rename to app/proc-info/Makefile diff --git a/app/proc_info/main.c b/app/proc-info/main.c similarity index 100% rename from app/proc_info/main.c rename to app/proc-info/main.c -- 2.20.1