mirror of https://github.com/dynup/kpatch
Bump to version v0.9.7
Updates of interest: v0.9.7: - S390x kpatch support - Add support for openEuler + documentation (kpatch-build) - Use err.h instead of error.h for musl support (kpatch-build) - Add support for .return_sites section (kpatch-build x86) - Create missing section symbol (kpatch-build) - Fix symtab parsing lookup (kpatch-build) - Many fixes and improvements in create-diff-object (kpatch-build) - Unload already disabled modules (kpatch util) - Add integration tests for: rhel-{8.6,9.0},5.18.0 (test) - Add tests for patching a syscall (test) - Combine and improve Fedora, CentOS with RHEL kpatch-build dependencies (test) - Major revamp of README.md and documentation - Add syscall patching macros (kmod) Signed-off-by: Yannick Cote <ycote@redhat.com>
This commit is contained in:
parent
b10d0e2212
commit
e1a3abca86
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Name: kpatch
|
Name: kpatch
|
||||||
Summary: Dynamic kernel patching
|
Summary: Dynamic kernel patching
|
||||||
Version: 0.9.6
|
Version: 0.9.7
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
Group: System Environment/Kernel
|
Group: System Environment/Kernel
|
||||||
URL: http://github.com/dynup/kpatch
|
URL: http://github.com/dynup/kpatch
|
||||||
|
@ -104,6 +104,21 @@ rm -rf %{buildroot}
|
||||||
%{_mandir}/man1/kpatch-build.1*
|
%{_mandir}/man1/kpatch-build.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 14 Yannick Cote <ycote@redhat.com> - 0.9.7
|
||||||
|
* S390x kpatch support
|
||||||
|
* Add support for openEuler + documentation (kpatch-build)
|
||||||
|
* Use err.h instead of error.h for musl support (kpatch-build)
|
||||||
|
* Add support for .return_sites section (kpatch-build x86)
|
||||||
|
* Create missing section symbol (kpatch-build)
|
||||||
|
* Fix symtab parsing lookup (kpatch-build)
|
||||||
|
* Many fixes and improvements in create-diff-object (kpatch-build)
|
||||||
|
* Unload already disabled modules (kpatch util)
|
||||||
|
* Add integration tests for: rhel-{8.6,9.0},5.18.0 (test)
|
||||||
|
* Add tests for patching a syscall (test)
|
||||||
|
* Combine and improve Fedora, CentOS with RHEL kpatch-build dependencies (test)
|
||||||
|
* Major revamp of README.md and documentation
|
||||||
|
* Add syscall patching macros (kmod)
|
||||||
|
|
||||||
* Tue Apr 12 Joe Lawrence <joe.lawrence@redhat.com> - 0.9.6
|
* Tue Apr 12 Joe Lawrence <joe.lawrence@redhat.com> - 0.9.6
|
||||||
* Allow OOT modules to be built with non-distro kernels
|
* Allow OOT modules to be built with non-distro kernels
|
||||||
* Add cross-arch unit testing support
|
* Add cross-arch unit testing support
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
INSTALLDIR=/var/lib/kpatch
|
INSTALLDIR=/var/lib/kpatch
|
||||||
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
|
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
|
||||||
VERSION="0.9.6"
|
VERSION="0.9.7"
|
||||||
POST_ENABLE_WAIT=15 # seconds
|
POST_ENABLE_WAIT=15 # seconds
|
||||||
POST_SIGNAL_WAIT=60 # seconds
|
POST_SIGNAL_WAIT=60 # seconds
|
||||||
MODULE_REF_WAIT=15 # seconds
|
MODULE_REF_WAIT=15 # seconds
|
||||||
|
|
Loading…
Reference in New Issue