diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2021-01-07 10:43:36 -0800 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2021-01-07 10:43:36 -0800 |
commit | 1ccfe994287119cc6cef37a7ca4c529d89de4b95 (patch) | |
tree | fce2c38780395371f9bf934129cabd22ea50626f | |
parent | d977b0daf4e75528b90a8398949ab6aaf5ed5160 (diff) | |
download | kmod-1ccfe994287119cc6cef37a7ca4c529d89de4b95.tar.gz kmod-1ccfe994287119cc6cef37a7ca4c529d89de4b95.tar.bz2 kmod-1ccfe994287119cc6cef37a7ca4c529d89de4b95.zip |
kmod 28v28
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 99a69f6..acde92b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,7 @@ SED_PROCESS = \ # 6. If any interfaces have been removed or changed since the last public # release, then set age to 0. LIBKMOD_CURRENT=5 -LIBKMOD_REVISION=5 +LIBKMOD_REVISION=6 LIBKMOD_AGE=3 noinst_LTLIBRARIES = shared/libshared.la @@ -1,3 +1,16 @@ +kmod 28 +======= + +- Improvements + - Add Zstandard to the supported compression formats using libzstd + (pass --with-zstd to configure) + +- Bug fixes + - Ignore ill-formed kernel command line, e.g. with "ivrs_acpihid[00:14.5]=AMD0020:0" + option in it + - Fix some memory leaks + - Fix 0-length builtin.alias.bin: it needs at least the index header + kmod 27 ======= diff --git a/configure.ac b/configure.ac index a49f6b9..0cf2eda 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.64) AC_INIT([kmod], - [27], + [28], [linux-modules@vger.kernel.org], [kmod], [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git]) |