summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2014-04-06 17:52:44 -0300
committerLucas De Marchi <lucas.demarchi@intel.com>2014-04-06 17:52:44 -0300
commit49d8e0b59052999de577ab732b719cfbeb89504d (patch)
treed96f8ef2097863a29a71e16df2683623e4148f27
parent3e68b2c4556020c0c3327641de1bafeaec51b56e (diff)
downloadkmod-49d8e0b59052999de577ab732b719cfbeb89504d.tar.gz
kmod-49d8e0b59052999de577ab732b719cfbeb89504d.tar.bz2
kmod-49d8e0b59052999de577ab732b719cfbeb89504d.zip
kmod 17v17
-rw-r--r--Makefile.am2
-rw-r--r--NEWS30
-rw-r--r--configure.ac2
3 files changed, 32 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 199588c..305d48e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -38,7 +38,7 @@ SED_PROCESS = \
$(SED_PROCESS)
LIBKMOD_CURRENT=4
-LIBKMOD_REVISION=6
+LIBKMOD_REVISION=7
LIBKMOD_AGE=2
noinst_LTLIBRARIES = libkmod/libkmod-util.la
diff --git a/NEWS b/NEWS
index 6c79ada..dfdb911 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+kmod 17
+=======
+
+- Bug fixes:
+ - Fix matching a "." in kernel cmdline, making garbage in the command
+ line be parsed as kmod options
+ - Fix man pages to clarify we don't fallback to parsing modules.dep
+ but instead we depend on modules.dep.bin (generated by depmod) to
+ be present
+ - Fix ELF parsing on 32 bit systems assigning the wrong class.
+ - Fix partial matches of search directives in depmod. Previously having
+ a line in depmod.conf such as "search foo foobar built-in" would cause
+ unpretictable results because foo is a partial match of foobar as well.
+ - Fix unaligned access in modinfo when getting the signature from a
+ module
+ - Make sure softdeps are treated as optional dependencies
+
+- New features:
+ - Accept special files given to "-C" switch in modprobe. This way it's
+ possible to skip system configuration with "modprobe -C /dev/null"
+ - Do not require xsltproc on released tarballs
+ - Don't use Werror anymore
+ - Add experimental python bindings, merged from python-kmod repository
+ (https://github.com/agrover/python-kmod)
+ - Parse softdeps exported by the kernel as
+ /lib/modules/`uname -r`/modules.softdep
+
+- Improvements to testsuite:
+ - Check the list of loaded modules after a test
+
kmod 16
=======
diff --git a/configure.ac b/configure.ac
index b195296..579d981 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.60)
AC_INIT([kmod],
- [16],
+ [17],
[linux-modules@vger.kernel.org],
[kmod],
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])