mirror of https://github.com/dynup/kpatch
Bump to v0.9.3
Interesting changes since v0.9.2: - Initial support for clang compiler - Add support for rhel-8.4 - rhel-8.4: workaround pahole and extended ELF sections - rhel-8.4: drop klp.arch support - Kpatch command waits for module to fully unload - Kpatch command informs user when signal subcommand is unnecessary - kpatch-build skips ppc64le vdso files Signed-off-by: Yannick Cote <ycote@redhat.com>
This commit is contained in:
parent
c819391c26
commit
35b771712e
|
@ -6,7 +6,7 @@
|
|||
|
||||
Name: kpatch
|
||||
Summary: Dynamic kernel patching
|
||||
Version: 0.9.2
|
||||
Version: 0.9.3
|
||||
License: GPLv2
|
||||
Group: System Environment/Kernel
|
||||
URL: http://github.com/dynup/kpatch
|
||||
|
@ -104,6 +104,15 @@ rm -rf %{buildroot}
|
|||
%{_mandir}/man1/kpatch-build.1*
|
||||
|
||||
%changelog
|
||||
* Tue Apr 20 Yannick Cote <ycote@redhat.com> - 0.9.3
|
||||
- Initial support for clang compiler
|
||||
- Add support for rhel-8.4
|
||||
- rhel-8.4: workaround pahole and extended ELF sections
|
||||
- rhel-8.4: drop klp.arch support
|
||||
- Kpatch command waits for module to fully unload
|
||||
- Kpatch command informs user when signal subcommand is unnecessary
|
||||
- kpatch-build skips ppc64le vdso files
|
||||
|
||||
* Tue Sep 8 2020 Joe Lawrence <joe.lawrence@redhat.com> - 0.9.2
|
||||
- Integration test support for rhel-{7.8,7.9,8.1,8.2}, centos-8
|
||||
- Better support for gcc child functions
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
INSTALLDIR=/var/lib/kpatch
|
||||
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
|
||||
VERSION="0.9.2"
|
||||
VERSION="0.9.3"
|
||||
POST_ENABLE_WAIT=15 # seconds
|
||||
POST_SIGNAL_WAIT=60 # seconds
|
||||
MODULE_REF_WAIT=15 # seconds
|
||||
|
|
Loading…
Reference in New Issue