diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2013-08-22 10:44:08 -0300 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2013-08-22 10:44:08 -0300 |
commit | 18811d22e9923893555b88a482aa967db0e7892a (patch) | |
tree | 008012858468f70e7ef81a271db30a4da471bc80 | |
parent | 493dc650d687a5a3acec37ea11d0d1d073b83d5e (diff) | |
download | kmod-18811d22e9923893555b88a482aa967db0e7892a.tar.gz kmod-18811d22e9923893555b88a482aa967db0e7892a.tar.bz2 kmod-18811d22e9923893555b88a482aa967db0e7892a.zip |
kmod 15v15
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 91a766a..c28d2b4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,7 +37,7 @@ SED_PROCESS = \ $(SED_PROCESS) LIBKMOD_CURRENT=4 -LIBKMOD_REVISION=4 +LIBKMOD_REVISION=5 LIBKMOD_AGE=2 noinst_LTLIBRARIES = libkmod/libkmod-util.la @@ -3,10 +3,16 @@ kmod 15 - Bug fixes: - kmod static-nodes doesn't fail if modules.devname isn't available + - Fix getting boolean parameter from kernel cmdline in case the value + is omitted + - Fix some mkdir_p() corner cases (used in testsuite and static-nodes) - New features: - kmod static-nodes creates parent directories if given a -o option - - kmod binary statically link to libkmod + - kmod binary statically links to libkmod - if distro is only interested + in the kmod tool (for example in an initrd) it can refrain from + installing the library + - Add shell completion for kmod tool kmod 14 ======= diff --git a/configure.ac b/configure.ac index 15c69d4..40e54cf 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.60) AC_INIT([kmod], - [14], + [15], [linux-modules@vger.kernel.org], [kmod], [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git]) |