diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2014-11-16 10:24:50 -0200 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2014-11-16 10:24:50 -0200 |
commit | f9e2167b10a25f2894a49fe5033348086758d172 (patch) | |
tree | 6f7c99b5d59b26bc20e66d092d9362c94bd5e43c | |
parent | bb72153d34bbed04bd37c235421b9f067e812c76 (diff) | |
download | kmod-19.tar.gz kmod-19.tar.bz2 kmod-19.zip |
kmod 19v19
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 23 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 25 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 356c4e2..ea5cbac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,7 +39,7 @@ SED_PROCESS = \ $(SED_PROCESS) LIBKMOD_CURRENT=4 -LIBKMOD_REVISION=8 +LIBKMOD_REVISION=9 LIBKMOD_AGE=2 noinst_LTLIBRARIES = shared/libshared.la @@ -1,3 +1,26 @@ +kmod 19 +======= + +- Bug fixes: + - Fix missing CLOEXEC in library + - Fix error message while opening kmod's index + +- New features: + - Add kmod(8) man page + - Allow to build with libc's without be32toh() + - Move code around separating common code and data structures into a + shared directory. This allows to share more code between library and + tools, making the binary size of tools shorter. + - Clarify tools vs library licenses + - static-nodes: when writting in tmpfiles format, indicate that + creation of static nodes should only happen at boot. This is used and + required by systemd-217+. + +- Improvements to testsuite: + - Add tests for newly created shared/ code + - Improve how tests are declared so there's less boilerplate code for + each test. + kmod 18 ======= diff --git a/configure.ac b/configure.ac index cd676bc..2709f08 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.60) AC_INIT([kmod], - [18], + [19], [linux-modules@vger.kernel.org], [kmod], [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git]) |