aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-09-06 16:26:53 -0300
committerLucas De Marchi <lucas.demarchi@profusion.mobi>2012-09-06 16:26:53 -0300
commit40758602647a3871e6f432b1c59d2a756208d207 (patch)
tree21b66f75009d6830adc7de2e39ed1cad95687e73
parent85734b2446905ed2b009e622fc31b7d04e360f0a (diff)
downloadkmod-40758602647a3871e6f432b1c59d2a756208d207.tar.gz
kmod 10v10
-rw-r--r--Makefile.am6
-rw-r--r--NEWS19
-rw-r--r--configure.ac2
3 files changed, 23 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index bc95922..6e494c4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,9 +37,9 @@ SED_PROCESS = \
%.pc: %.pc.in Makefile
$(SED_PROCESS)
-LIBKMOD_CURRENT=3
-LIBKMOD_REVISION=3
-LIBKMOD_AGE=1
+LIBKMOD_CURRENT=4
+LIBKMOD_REVISION=0
+LIBKMOD_AGE=2
noinst_LTLIBRARIES = libkmod/libkmod-util.la
libkmod_libkmod_util_la_SOURCES = libkmod/libkmod-hash.c \
diff --git a/NEWS b/NEWS
index a99d9ba..36a7bf0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+kmod 10
+=======
+
+- New features:
+ - Read coresize from /sys if supported
+
+ - Add flag to kmod_module_probe_insert() to apply blaklisting during
+ probe only if mod is and alias. Now modprobe uses this flag by default.
+ This is needed to fix a change in behavior regarding module-init-tools
+ and ultimately make us loading a blacklisted module.
+
+- Better formatting in man pages
+
+- Add option to disable man pages at build time
+
+- Fixes in testsuite and refactor of LDPRELOAD'ed libraries
+
+- Re-licensing testsuite as LGPL
+
kmod 9
======
diff --git a/configure.ac b/configure.ac
index 2b02238..901780b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.60)
AC_INIT([kmod],
- [9],
+ [10],
[linux-modules@vger.kernel.org],
[kmod],
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])