summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--NEWS23
-rw-r--r--configure.ac2
3 files changed, 25 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 7b01201..194e111 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -41,7 +41,7 @@ SED_PROCESS = \
$(SED_PROCESS)
LIBKMOD_CURRENT=5
-LIBKMOD_REVISION=2
+LIBKMOD_REVISION=3
LIBKMOD_AGE=3
noinst_LTLIBRARIES = shared/libshared.la
diff --git a/NEWS b/NEWS
index d268872..58a770e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,26 @@
+kmod 25
+=======
+
+- Improvements
+ - Add module signature to modinfo output
+
+ - Add support for external directories in depmod: now there's a new
+ "external" keyword parsed by depmod when calculating the dependencies.
+ It allows to add modules to other directories which are not relative
+ to where the modules are commonly installed. This results in
+ modules.dep and friends now understanding absolute paths rather than
+ relative paths only. For more information see depmod.d(1).
+
+ - Add support for CONFIG_MODULE_REL_CRCS
+
+ - Add missing documentation references in man pages
+
+ - Handle the case in which module has a .TOC symbol already while
+ calculating dependencies
+
+ - Improve testsuite and allow to use mkosi to run testsuite in different
+ distros
+
kmod 24
=======
diff --git a/configure.ac b/configure.ac
index 932e87d..fbc7391 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.64)
AC_INIT([kmod],
- [24],
+ [25],
[linux-modules@vger.kernel.org],
[kmod],
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])