From ac78e109c37c2d1a075ee75f48cf86edfc516462 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 14 Jun 2012 16:29:28 -0300 Subject: [PATCH] tools: rename source files There's no point anymore in having "kmod-" prefix. This is a historical thing when we started implementation of these tools. --- Makefile.am | 8 ++++---- tools/{kmod-depmod.c => depmod.c} | 0 tools/{kmod-insmod.c => insmod.c} | 0 tools/{kmod-lsmod.c => lsmod.c} | 0 tools/{kmod-modinfo.c => modinfo.c} | 0 tools/{kmod-modprobe.c => modprobe.c} | 0 tools/{kmod-rmmod.c => rmmod.c} | 0 7 files changed, 4 insertions(+), 4 deletions(-) rename tools/{kmod-depmod.c => depmod.c} (100%) rename tools/{kmod-insmod.c => insmod.c} (100%) rename tools/{kmod-lsmod.c => lsmod.c} (100%) rename tools/{kmod-modinfo.c => modinfo.c} (100%) rename tools/{kmod-modprobe.c => modprobe.c} (100%) rename tools/{kmod-rmmod.c => rmmod.c} (100%) diff --git a/Makefile.am b/Makefile.am index faad5b8b..ee279138 100644 --- a/Makefile.am +++ b/Makefile.am @@ -102,10 +102,10 @@ bin_PROGRAMS = tools/kmod noinst_SCRIPTS = tools/insmod tools/rmmod tools/lsmod \ tools/modprobe tools/modinfo tools/depmod -tools_kmod_SOURCES = tools/kmod.c tools/kmod.h tools/kmod-lsmod.c \ - tools/kmod-rmmod.c tools/kmod-insmod.c \ - tools/kmod-modinfo.c tools/kmod-modprobe.c \ - tools/kmod-depmod.c +tools_kmod_SOURCES = tools/kmod.c tools/kmod.h tools/lsmod.c \ + tools/rmmod.c tools/insmod.c \ + tools/modinfo.c tools/modprobe.c \ + tools/depmod.c tools_kmod_CPPFLAGS = $(AM_CPPFLAGS) -DKMOD_BUNDLE_TOOL=1 tools_kmod_CFLAGS = $(AM_CFLAGS) tools_kmod_LDADD = libkmod/libkmod-util.la \ diff --git a/tools/kmod-depmod.c b/tools/depmod.c similarity index 100% rename from tools/kmod-depmod.c rename to tools/depmod.c diff --git a/tools/kmod-insmod.c b/tools/insmod.c similarity index 100% rename from tools/kmod-insmod.c rename to tools/insmod.c diff --git a/tools/kmod-lsmod.c b/tools/lsmod.c similarity index 100% rename from tools/kmod-lsmod.c rename to tools/lsmod.c diff --git a/tools/kmod-modinfo.c b/tools/modinfo.c similarity index 100% rename from tools/kmod-modinfo.c rename to tools/modinfo.c diff --git a/tools/kmod-modprobe.c b/tools/modprobe.c similarity index 100% rename from tools/kmod-modprobe.c rename to tools/modprobe.c diff --git a/tools/kmod-rmmod.c b/tools/rmmod.c similarity index 100% rename from tools/kmod-rmmod.c rename to tools/rmmod.c -- 2.47.2