diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2015-06-09 02:36:14 -0300 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2015-06-09 02:36:14 -0300 |
commit | 2bfcd7ef805e27b43aec56dc009ba87f6c4ff96b (patch) | |
tree | aea8d255d6ed5cab3abf215659e5f993aa8484a5 | |
parent | fc1bc8155fe6604298f38a801ace829766591cf1 (diff) | |
download | kmod-2bfcd7ef805e27b43aec56dc009ba87f6c4ff96b.tar.gz kmod-2bfcd7ef805e27b43aec56dc009ba87f6c4ff96b.tar.bz2 kmod-2bfcd7ef805e27b43aec56dc009ba87f6c4ff96b.zip |
kmod 21v21
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 23 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 50ce1d4..6679deb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,7 @@ SED_PROCESS = \ $(SED_PROCESS) LIBKMOD_CURRENT=4 -LIBKMOD_REVISION=10 +LIBKMOD_REVISION=11 LIBKMOD_AGE=2 noinst_LTLIBRARIES = shared/libshared.la @@ -1,3 +1,24 @@ +kmod 21 +======= + +- New features: + - kmod tool started to learn the "insert" and "remove" commands that + are the simplified versions of the older modprobe tool. These + commands are still work in progress so they are hidden behind a + --enable-experimental flag during build. It should not be enabled + unless you know what you're doing. + - kmod tool now prints the relevant configuration options it was built + with when the "--version" argument is passed. This helps to mitigate + problems for example when the user is trying to load a compressed + module but kmod was built without support for the compression method. + +- Improvements to testsuite: + - Cache built modules so it is easier to run "make check" on build + servers by distro maintainers. If kmod is configured with + --disable-test-modules the modules from cache will be used by + "make check". No changes to the tests are needed and all of them + can run fine. + kmod 20 ======= - Bug fixes: diff --git a/configure.ac b/configure.ac index 4dc59ec..d4f84bd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.64) AC_INIT([kmod], - [20], + [21], [linux-modules@vger.kernel.org], [kmod], [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git]) |