summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-03-02 22:34:36 -0300
committerLucas De Marchi <lucas.demarchi@profusion.mobi>2012-03-02 22:34:36 -0300
commit26906fe73eb8ca40761c0378ccdc1f2ed9a15a08 (patch)
tree0c3fb3691a6b456cc9e72f7be7d353dc83ae34c5
parent49c6489d74f525e42ebffed4c5b1e52dbab913ab (diff)
downloadkmod-26906fe73eb8ca40761c0378ccdc1f2ed9a15a08.tar.gz
kmod 6v6
-rw-r--r--Makefile.am4
-rw-r--r--NEWS24
-rw-r--r--configure.ac2
3 files changed, 27 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 6d0cbe4..b2a46fa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -39,9 +39,9 @@ SED_PROCESS = \
%.pc: %.pc.in Makefile
$(SED_PROCESS)
-LIBKMOD_CURRENT=2
+LIBKMOD_CURRENT=3
LIBKMOD_REVISION=0
-LIBKMOD_AGE=0
+LIBKMOD_AGE=1
noinst_LTLIBRARIES = libkmod/libkmod-util.la
libkmod_libkmod_util_la_SOURCES = libkmod/libkmod-hash.c \
diff --git a/NEWS b/NEWS
index 4181097..809cfaf 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,27 @@
+kmod 6
+======
+
+- New API in libkmod:
+ - kmod_module_apply_filter(): a generic function to apply filters in a
+ list of modules. This deprecates the use of
+ kmod_module_get_filtered_blacklist()
+
+- More tests in testsuite
+
+- Add compatibility with uClibc again
+
+- Lookup modules.builtin.bin to decide if a module is built in kernel
+
+- Downgrade some log messages so we don't annoy people with useless messages
+
+- Bug fixes:
+ - Flag --ignore-loaded was not being properly handled
+ - Infinite loop with softdeps
+ - Infinite loop with dumb user configuration with install commands
+ - Fix leak in index when there's a partial match
+
+- Move repository and tarballs to kernel.org
+
kmod 5
======
diff --git a/configure.ac b/configure.ac
index af70820..7c04a4a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.60)
AC_INIT([kmod],
- [5],
+ [6],
[linux-modules@vger.kernel.org],
[kmod],
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])