diff --git a/contrib/kpatch.spec b/contrib/kpatch.spec index 317245c1..3edc8732 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 afb39a43..b421c8ea 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 6c522502..4eff2161 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