kernel/Makefile.rhelver
Jan Stancek d03e54c822 kernel-6.12.0-43.el10
* Mon Jan 20 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-43.el10]
- net/ipv6: delete temporary address if mngtmpaddr is removed or unmanaged (CKI Backport Bot) [RHEL-39340]
- vfio/pci: Fallback huge faults for unaligned pfn (Alex Williamson) [RHEL-72822]
- iommu/tegra241-cmdqv: do not use smp_processor_id in preemptible context (Luis Claudio R. Goncalves) [RHEL-74342]
- net: sched: fix ordering of qlen adjustment (CKI Backport Bot) [RHEL-73395] {CVE-2024-53164}
- net_sched: sch_fq: don't follow the fast path if Tx is behind now (CKI Backport Bot) [RHEL-73395]
- s390/uvdevice: Support longer secret lists (Mete Durlu) [RHEL-25204]
- s390/uv: Retrieve UV secrets sysfs support (Mete Durlu) [RHEL-25204]
- s390/uvdevice: Increase indent in IOCTL definitions (Mete Durlu) [RHEL-25204]
- s390/uvdevice: Add Retrieve Secret IOCTL (Mete Durlu) [RHEL-25204]
- s390/uv: Retrieve UV secrets support (Mete Durlu) [RHEL-25204]
- s390/uv: Use a constant for more-data rc (Mete Durlu) [RHEL-25204]
- s390/uv: Provide host-key hashes in sysfs (Mete Durlu) [RHEL-47110]
- s390/uv: Refactor uv-sysfs creation (Mete Durlu) [RHEL-47110]
- net/l2tp: fix warning in l2tp_exit_net found by syzbot (Guillaume Nault) [RHEL-73846]
- geneve: do not assume mac header is set in geneve_xmit_skb() (Guillaume Nault) [RHEL-73846]
- net: Fix netns for ip_tunnel_init_flow() (Guillaume Nault) [RHEL-73846]
- futex: fix user access on powerpc (Waiman Long) [RHEL-70187]
- x86: fix off-by-one in access_ok() (Waiman Long) [RHEL-70187]
- futex: improve user space accesses (Waiman Long) [RHEL-70187]
- s390/pci: Add pci_msg debug view to PCI report (Mete Durlu) [RHEL-24144]
- s390/debug: Add a reverse mode for debug_dump() (Mete Durlu) [RHEL-24144]
- s390/debug: Add debug_dump() to write debug view to a string buffer (Mete Durlu) [RHEL-24144]
- s390/debug: Split private data alloc/free out of file operations (Mete Durlu) [RHEL-24144]
- s390/debug: Simplify and document debug_next_entry() logic (Mete Durlu) [RHEL-24144]
- s390/pci: Report PCI error recovery results via SCLP (Mete Durlu) [RHEL-24144]
- s390/debug: Pass in and enforce output buffer size for format handlers (Mete Durlu) [RHEL-24144]
- s390/sclp: Allow user-space to provide PCI reports for optical modules (Mete Durlu) [RHEL-71264]
Resolves: RHEL-24144, RHEL-25204, RHEL-39340, RHEL-47110, RHEL-70187, RHEL-71264, RHEL-72822, RHEL-73395, RHEL-73846, RHEL-74342

Signed-off-by: Jan Stancek <jstancek@redhat.com>
2025-01-20 09:24:50 +01:00

81 lines
2.6 KiB
Makefile

RHEL_MAJOR = 10
RHEL_MINOR = 0
#
# 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 = 43
#
# RHEL_REBASE_NUM
# ----------------
#
# Used in RPM version string for Gemini kernels, which dont use upstream
# VERSION/PATCHLEVEL/SUBLEVEL. The number represents rebase number for
# current MAJOR release.
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_REBASE_NUM = 1
#
# 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
#
# Early y+1 numbering
# --------------------
#
# In early y+1 process, RHEL_RELEASE consists of 2 numbers: x.y
# First is RHEL_RELEASE inherited/merged from y as-is, second number
# is incremented with each build starting from 1. After merge from y,
# it resets back to 1. This way y+1 nvr reflects status of last merge.
#
# Example:
#
# rhel8.0 rhel-8.1
# kernel-4.18.0-58.el8 --> kernel-4.18.0-58.1.el8
# kernel-4.18.0-58.2.el8
# kernel-4.18.0-59.el8 kernel-4.18.0-59.1.el8
# kernel-4.18.0-60.el8
# kernel-4.18.0-61.el8 --> kernel-4.18.0-61.1.el8
#
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
EARLY_YSTREAM ?= no
EARLY_YBUILD:=
EARLY_YRELEASE:=
ifneq ("$(ZSTREAM)", "yes")
ifeq ("$(EARLY_YSTREAM)","yes")
RHEL_RELEASE:=$(RHEL_RELEASE).$(EARLY_YRELEASE)
endif
endif