]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
kmod 2 v2
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 21 Dec 2011 01:48:46 +0000 (23:48 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 21 Dec 2011 01:48:46 +0000 (23:48 -0200)
Makefile.am
NEWS
configure.ac

index ccc364fd5c310a8a07e0fc8617600f7b5c3bc896..1186cff014532044349122c71df5ce9844afc4e9 100644 (file)
@@ -19,9 +19,9 @@ AM_LDFLAGS = \
        -Wl,--gc-sections \
        -Wl,--as-needed
 
-LIBKMOD_CURRENT=1
+LIBKMOD_CURRENT=2
 LIBKMOD_REVISION=0
-LIBKMOD_AGE=0
+LIBKMOD_AGE=1
 
 include_HEADERS = libkmod/libkmod.h
 lib_LTLIBRARIES = libkmod/libkmod.la
diff --git a/NEWS b/NEWS
index af5b5cf4d1274aac149d33e7637b65ce76ea8a53..b5422dd9d43759e79e5d570d7c2a72464c900c3a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+kmod 2
+======
+
+Some bugs fixed: the worst of them was with an infinite loop when an alias
+matched more than one module.
+
+- New APIs in libkmod to:
+       - Get soft dependencies
+       - Get info from module files parsing ELF
+       - Get modversions from files parsing ELF
+
+- Support to load gzipped kernel modules: kmod can be compiled with support to
+  gzipped modules by giving the --enable-zlib flag
+
+- Support to forcefully load modules, both vermagic and modversion
+
+- Support to force and nowait removal flags
+
+- Configuration files are parsed in the same order as modprobe: files are
+  sorted alphabetically (independently of their dir) and files with the same
+  name obey a precedence order
+
+- New tool: kmod-modinfo
+
+- kmod-modprobe gained several features to be a 1:1 replacement for modprobe.
+  The only missing things are the options '--showconfig' and '-t / -l'. These
+  last ones have been deprecated long ago and they will be removed from
+  modprobe. A lot of effort has been put on kmod-modprobe to ensure it
+  maintains compabitility with modprobe.
+
+- linux-modules@vger.kernel.org became the official mailing list for kmod
+
 kmod 1
 ======
 
index 7842a6d5cd3eedcb5549da0cd3a866debddf1cfb..6569a6be807ffa19dbf8620dd7c034dc479d67cd 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ(2.60)
 AC_INIT([kmod],
-       [1],
+       [2],
        [linux-modules@vger.kernel.org],
        [kmod],
        [http://git.profusion.mobi/cgit.cgi/kmod.git/])