From: Lucas De Marchi Date: Thu, 14 Jun 2012 19:29:28 +0000 (-0300) Subject: tools: rename source files X-Git-Tag: v9~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac78e109c37c2d1a075ee75f48cf86edfc516462;p=thirdparty%2Fkmod.git 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. --- 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