From 03d91d3bae7660db538dd39fd01f8d6c98f26a5c Mon Sep 17 00:00:00 2001 From: Joe Lawrence Date: Mon, 27 Oct 2025 10:32:42 -0400 Subject: [PATCH] Bump to version v0.9.11 Interesting updates: - 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 Signed-off-by: Joe Lawrence --- contrib/kpatch.spec | 11 ++++++++++- kpatch-build/kpatch-build | 2 +- kpatch/kpatch | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/contrib/kpatch.spec b/contrib/kpatch.spec index 317245c1f..3edc8732e 100644 --- a/contrib/kpatch.spec +++ b/contrib/kpatch.spec @@ -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 @@ -104,6 +104,15 @@ rm -rf %{buildroot} %{_mandir}/man1/kpatch-build.1* %changelog +* Mon Oct 27 2025 Joe Lawrence - 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 - 0.9.10 - Support for Amazon Linux, Anolis OS, and OpenCloudOS distros - Fix cleanup when kpatch is installed in read-only location diff --git a/kpatch-build/kpatch-build b/kpatch-build/kpatch-build index afb39a435..b421c8eac 100755 --- a/kpatch-build/kpatch-build +++ b/kpatch-build/kpatch-build @@ -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 diff --git a/kpatch/kpatch b/kpatch/kpatch index 6c5225028..4eff21610 100755 --- a/kpatch/kpatch +++ b/kpatch/kpatch @@ -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