kernel/Makefile.rhelver
CKI KWF Bot 43393cc9c2 kernel-5.14.0-641.el9
* Wed Nov 19 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-641.el9]
- tools/power/x86/intel-speed-select: v1.23 release (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Skip uncore frequency update (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Support SST PP revision 2 fields (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: v1.22 release (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Prefix header search path with sysroot (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Die ID for IO dies (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Fix the condition to check multi die system (David Arcari) [RHEL-125240]
- tools/power/x86/intel-speed-select: Prevent increasing MAX_DIE_PER_PACKAGE (David Arcari) [RHEL-125240]
- selftests: livepatch: test if ftrace can trace a livepatched function (Joe Lawrence) [RHEL-114920]
- selftests: livepatch: add new ftrace helpers functions (Joe Lawrence) [RHEL-114920]
- samples/livepatch: add module descriptions (Joe Lawrence) [RHEL-114920]
- selftest/livepatch: Only run test-kprobe with CONFIG_KPROBES_ON_FTRACE (Joe Lawrence) [RHEL-114920]
- docs: livepatch: move text out of code block (Joe Lawrence) [RHEL-114920]
- livepatch: Add comment to clarify klp_add_nops() (Joe Lawrence) [RHEL-114920]
- xfs: rework datasync tracking and execution (Pavel Reichl) [RHEL-113841]
- xfs: rearrange code in xfs_inode_item_precommit (Pavel Reichl) [RHEL-113841]
- dpll: zl3073x: Handle missing or corrupted flash configuration (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Increase maximum size of flash utility (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Fix double free in zl3073x_devlink_flash_update() (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Implement devlink flash callback (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Refactor DPLL initialization (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Add firmware loading functionality (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Add low-level flash functions (Ivan Vecera) [RHEL-115369]
- dpll: zl3073x: Add functions to access hardware registers (Ivan Vecera) [RHEL-115369]
Resolves: RHEL-113841, RHEL-114920, RHEL-115369, RHEL-125240

Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
2025-11-19 12:56:45 +00:00

38 lines
1.4 KiB
Makefile

RHEL_MAJOR = 9
RHEL_MINOR = 8
#
# RHEL_RELEASE
# -------------
#
# Represents build number in 'release' part of RPM's name-version-release.
# name is <package_name>, e.g. kernel
# version is upstream kernel version this kernel is based on, e.g. 4.18.0
# release is <RHEL_RELEASE>.<dist_tag>[<buildid>], e.g. 100.el8
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 641
#
# ZSTREAM
# -------
#
# This variable controls whether we use zstream numbering or not for the
# package release. The zstream release keeps the build number of the last
# build done for ystream for the Beta milestone, and increments a second
# number for each build. The third number is used for branched builds
# (eg.: for builds with security fixes or hot fixes done outside of the
# batch release process).
#
# For example, with ZSTREAM unset or set to "no", all builds will contain
# a release with only the build number, eg.: kernel-<kernel version>-X.el*,
# where X is the build number. With ZSTREAM set to "yes", we will have
# builds with kernel-<kernel version>-X.Y.Z.el*, where X is the last
# RHEL_RELEASE number before ZSTREAM flag was set to yes, Y will now be the
# build number and Z will always be 1 except if you're doing a branched build
# (when you give RHDISTGIT_BRANCH on the command line, in which case the Z
# number will be incremented instead of the Y).
#
ZSTREAM ?= no