From: Lucas De Marchi Date: Wed, 21 Dec 2011 01:48:46 +0000 (-0200) Subject: kmod 2 X-Git-Tag: v2^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acc18b1451a189ba217471e1fdeb60aef92867ad;p=thirdparty%2Fkmod.git kmod 2 --- diff --git a/Makefile.am b/Makefile.am index ccc364fd..1186cff0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 af5b5cf4..b5422dd9 100644 --- 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 ====== diff --git a/configure.ac b/configure.ac index 7842a6d5..6569a6be 100644 --- a/configure.ac +++ b/configure.ac @@ -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/])