]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
kmod 11 v11
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 8 Nov 2012 04:30:21 +0000 (02:30 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 8 Nov 2012 04:30:21 +0000 (02:30 -0200)
Makefile.am
NEWS
configure.ac

index 6dc4d8c82c84900cb090c2e6b50eabb06e56f03d..4865e5265bf3cc24bd803f58f9763d38875c2584 100644 (file)
@@ -37,7 +37,7 @@ SED_PROCESS = \
        $(SED_PROCESS)
 
 LIBKMOD_CURRENT=4
-LIBKMOD_REVISION=0
+LIBKMOD_REVISION=1
 LIBKMOD_AGE=2
 
 noinst_LTLIBRARIES = libkmod/libkmod-util.la
diff --git a/NEWS b/NEWS
index 3f307bdf90a7a6a0d6179f3059d398822c0e6e5a..30e50c9913806ada6eab0ce49b0f1a12a74c3c30 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,31 @@
+kmod 11
+=======
+
+- Improvements to testsuite:
+       - Fix testsuite defining symbols twice on 32 bit systems
+       - Allow to check generated files against correct ones
+
+- New features:
+       - libkmod now keeps a file opened after the first call to
+         kmod_module_get_{info,versions,symbols,dependency_symbols}. This
+         reduces signficantly the amount of time depmod tool takes to
+         execute. Particularly if compressed modules are used.
+       - Remove --with-rootprefix from build system. It was not a great idea
+         after all and should not be use since it causes more harm then
+         benefits.
+       - Hide --wait option on rmmod. This feature is being targeted for
+         removal from kernel. rmmod still accepts this option, but it's hidden
+         now: man page and usage() says nothing about it and if it's used,
+         user will get a 10s sleep. This way we can check and help if anyone
+         is using this feature.
+       - Refactor message logging on all tools, giving proper prefix, routing
+         everything to syslog when asked for, etc.
+
+- Bug fixes:
+       - Fix parsing of modules.order when using compressed modules
+       - Usage messages go to stdout instead of stderr
+       - Fix memory leak in hash implementation
+
 kmod 10
 =======
 
index ce0946b6b21a844e8c8f0e0fb839ccb76c20960d..208102aa242dd566577688c44a16db154e8379e6 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ(2.60)
 AC_INIT([kmod],
-       [10],
+       [11],
        [linux-modules@vger.kernel.org],
        [kmod],
        [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])