summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2013-08-22 10:44:08 -0300
committerLucas De Marchi <lucas.demarchi@intel.com>2013-08-22 10:44:08 -0300
commit18811d22e9923893555b88a482aa967db0e7892a (patch)
tree008012858468f70e7ef81a271db30a4da471bc80
parent493dc650d687a5a3acec37ea11d0d1d073b83d5e (diff)
downloadkmod-18811d22e9923893555b88a482aa967db0e7892a.tar.gz
kmod 15v15
-rw-r--r--Makefile.am2
-rw-r--r--NEWS8
-rw-r--r--configure.ac2
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
diff --git a/NEWS b/NEWS
index 491146d..8260183 100644
--- a/NEWS
+++ b/NEWS
@@ -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])