]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
kmod 17 v17
authorLucas De Marchi <lucas.demarchi@intel.com>
Sun, 6 Apr 2014 20:52:44 +0000 (17:52 -0300)
committerLucas De Marchi <lucas.demarchi@intel.com>
Sun, 6 Apr 2014 20:52:44 +0000 (17:52 -0300)
Makefile.am
NEWS
configure.ac

index 199588c8f97dd680af11f42872a3d7c7c71f9366..305d48e913360b04fb988532c368ddbc2a4dca51 100644 (file)
@@ -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 6c79adad4d0d8e4af217c4dfbba9e6fd17967de7..dfdb9112a3093c7ac809e715fdff2714447bfa4f 100644 (file)
--- 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
 =======
 
index b19529619b361657f71a87c7b10e919333596364..579d981cc6482eac8de5f71c8a314794e1fb226e 100644 (file)
@@ -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])