mirror of
https://github.com/dynup/kpatch
synced 2024-12-22 13:12:06 +00:00
Bump version to v0.9.1
Increment version to v0.9.1 and update v0.9.0's changelog section
following many fixes and improvements.
*Note* that the tree has been tagged to v0.9.0 earlier at
(commit: fd8209aa00
). This is to update the tree accordingly. Full
list of changes:
v0.9.1:
- Handle ppc64le toc with only constants
- Don't strip callback section symbols
- Integration tests update
- Fix -Wconversion warnings
- Process debug sections last
v0.9.0:
- Many fixes in integration tests and adding rhel-8.0
- Updates to documentation
- Many updates and additions to the patch author guide
- Fix to relocations used for ZERO_PAGE(0)
- Simplify static local variables correlation
- Make symvers reading code more flexible
- Free sections in elf teardown
- Fix kpatch-test module unloading
- Disable the build of kpatch.ko module by default
- Simplify mangled function correlation
- Use whole word filename matching in find_parent_obj()
- Simplify relocation processing
Signed-off-by: Yannick Cote <ycote@redhat.com>
This commit is contained in:
parent
b4d2a4e504
commit
0c3c219308
@ -1,6 +1,6 @@
|
||||
Name: kpatch
|
||||
Summary: Dynamic kernel patching
|
||||
Version: 0.8.0
|
||||
Version: 0.9.1
|
||||
License: GPLv2
|
||||
Group: System Environment/Kernel
|
||||
URL: http://github.com/dynup/kpatch
|
||||
@ -93,6 +93,27 @@ rm -rf %{buildroot}
|
||||
%{_mandir}/man1/kpatch-build.1*
|
||||
|
||||
%changelog
|
||||
* Wed Mar 11 2020 Yannick Cote <ycote@redhat.com> - 0.9.1
|
||||
- Handle ppc64le toc with only constants
|
||||
- Don't strip callback section symbols
|
||||
- Integration tests update
|
||||
- Fix -Wconversion warnings
|
||||
- Process debug sections last
|
||||
|
||||
* Wed Mar 11 2020 Yannick Cote <ycote@redhat.com> - 0.9.0
|
||||
- Many fixes in integration tests and adding rhel-8.0
|
||||
- Updates to documentation
|
||||
- Many updates and additions to the patch author guide
|
||||
- Fix to relocations used for ZERO_PAGE(0)
|
||||
- Simplify static local variables correlation
|
||||
- Make symvers reading code more flexible
|
||||
- Free sections in elf teardown
|
||||
- Fix kpatch-test module unloading
|
||||
- Disable the build of kpatch.ko module by default
|
||||
- Simplify mangled function correlation
|
||||
- Use whole word filename matching in find_parent_obj()
|
||||
- Simplify relocation processing
|
||||
|
||||
* Wed Aug 21 2019 Artem Savkov <asavkov@redhat.com> - 0.8.0
|
||||
- kpatch.ko atomic replace fixes
|
||||
- Fixes for potential problems found by covscan
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
INSTALLDIR=/var/lib/kpatch
|
||||
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
|
||||
VERSION="0.8.0"
|
||||
VERSION="0.9.1"
|
||||
POST_ENABLE_WAIT=15 # seconds
|
||||
POST_SIGNAL_WAIT=60 # seconds
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user