aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2013-07-03 12:42:04 -0300
committerLucas De Marchi <lucas.demarchi@intel.com>2013-07-03 12:42:04 -0300
commit3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85 (patch)
treef6fe0a38d74c3b5305b7e3307dbab608b995c909
parent9de9e07da6ce6fc110b4359ff058b13b5e92dcf4 (diff)
downloadkmod-3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85.tar.gz
kmod 14
-rw-r--r--Makefile.am2
-rw-r--r--NEWS19
-rw-r--r--configure.ac2
3 files changed, 21 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index f93ed78..c165868 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,7 +37,7 @@ SED_PROCESS = \
$(SED_PROCESS)
LIBKMOD_CURRENT=4
-LIBKMOD_REVISION=3
+LIBKMOD_REVISION=4
LIBKMOD_AGE=2
noinst_LTLIBRARIES = libkmod/libkmod-util.la
diff --git a/NEWS b/NEWS
index 5324934..8f2c1d7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+kmod 14
+=======
+
+- Bug fixes:
+ - Fix some format strings
+ - Protect against NULL being passed around to index
+ - Avoid calling syscall() with -1 when finit_module() is not available,
+ since this doesn't always work
+ - Fix not being able to remove alias due to checking the module's
+ refcount
+ - Minor fixes and refactors
+
+- New features:
+ - Improve libkmod documentation, particularly on how flags are dealt
+ with.
+ - Remove ability to build a static libkmod
+ - Add static-nodes command to kmod that parses modules.devname
+ generating output in useful formats
+
kmod 13
=======
diff --git a/configure.ac b/configure.ac
index 929eb7f..194dfab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.60)
AC_INIT([kmod],
- [13],
+ [14],
[linux-modules@vger.kernel.org],
[kmod],
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])