Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion contrib/kpatch.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Name: kpatch
Summary: Dynamic kernel patching
Version: 0.9.10
Version: 0.9.11
License: GPLv2
Group: System Environment/Kernel
URL: http://github.com/dynup/kpatch
Expand Down Expand Up @@ -104,6 +104,15 @@ rm -rf %{buildroot}
%{_mandir}/man1/kpatch-build.1*

%changelog
* Mon Oct 27 2025 Joe Lawrence <joe.lawrence@redhat.com> - 0.9.11
- Initial ARM64 architecture support
- Support for kernel module namepsaces
- Kpatch utility support for 'stack_order' sysfs attribute
- Distro support/fixes for AlmaLinux, Fedora, Photon OS, RHEL-9.6
- Cross compilation with env TARGET_ARCH
- Migrated internal testing to Packit Testing Farm
- Support for gcc-14

* Mon Jan 20 2025 Joe Lawrence <joe.lawrence@redhat.com> - 0.9.10
- Support for Amazon Linux, Anolis OS, and OpenCloudOS distros
- Fix cleanup when kpatch is installed in read-only location
Expand Down
2 changes: 1 addition & 1 deletion kpatch-build/kpatch-build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# - Builds the patched kernel/module and monitors changed objects
# - Builds the patched objects with gcc flags -f[function|data]-sections
# - Runs kpatch tools to create and link the patch kernel module
VERSION=0.9.10
VERSION=0.9.11

set -o pipefail

Expand Down
2 changes: 1 addition & 1 deletion kpatch/kpatch
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

INSTALLDIR=/var/lib/kpatch
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
VERSION="0.9.10"
VERSION="0.9.11"
POST_ENABLE_WAIT=15 # seconds
POST_SIGNAL_WAIT=60 # seconds
MODULE_REF_WAIT=15 # seconds
Expand Down