45e06e340a
* Mon Jan 27 2025 Jan Stancek <jstancek@redhat.com> [6.12.0-46.el10] - redhat: hsr: Mark as tech preview (Felix Maurer) [RHEL-74748] - xfs: Mark all experimental code as tech preview (Bill O'Donnell) [RHEL-64936] - redhat: create 'debug' addon for UKI (Li Tian) [RHEL-70836] - mptcp: disable by default (Davide Caratti) [RHEL-74247] - initramfs: avoid filename buffer overrun (Rafael Aquini) [RHEL-73366] {CVE-2024-53142} - redhat/configs: set new PKEY_UV option on s390 (Mete Durlu) [RHEL-24135] - s390/crypto: Add hardware acceleration for full AES-XTS mode (Mete Durlu) [RHEL-24136] - s390/crypto: Postpone the key split to key conversion (Mete Durlu) [RHEL-24136] - s390/crypto: Introduce function for tokenize clearkeys (Mete Durlu) [RHEL-24136] - s390/crypto: Generalize parameters for key conversion (Mete Durlu) [RHEL-24136] - s390/crypto: Use module-local structures for protected keys (Mete Durlu) [RHEL-24136] - s390/crypto: Convert to reverse x-mas tree, rename ret to rc (Mete Durlu) [RHEL-24136] - s390/pkey: Tolerate larger key blobs (Mete Durlu) [RHEL-24136] - s390/pkey: Add new pkey handler module pkey-uv (Mete Durlu) [RHEL-24135] - s390/pkey: Build module name array selectively based on kernel config options (Mete Durlu) [RHEL-24135] - s390/pkey: Fix checkpatch findings in pkey header file (Mete Durlu) [RHEL-24135] - s390/pkey: Rework pkey verify for protected keys (Mete Durlu) [RHEL-24135] - s390/pkey: Simplify protected key length calculation code (Mete Durlu) [RHEL-24135] - s390/zcrypt: Cleanup include zcrypt_api.h (Mete Durlu) [RHEL-24135] - ipvs: speed up reads from ip_vs_conn proc file (Florian Westphal) [RHEL-68933] - PCI: Batch BAR sizing operations (Myron Stowe) [RHEL-76026] - xfrm: mark packet offload as tech preview (Sabrina Dubroca) [RHEL-75472] - mm/kmemleak: fix sleeping function called from invalid context at print message (CKI Backport Bot) [RHEL-74104] {CVE-2024-57885} - mm: vmscan: account for free pages to prevent infinite Loop in throttle_direct_reclaim() (CKI Backport Bot) [RHEL-74099] {CVE-2024-57884} - bnxt_en: Fix DIM shutdown (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix possible memory leak when hwrm_req_replace fails (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix aggregation ID mask to prevent oops on 5760X chips (Michal Schmidt) [RHEL-73718] - bnxt_en: Fix GSO type for HW GRO packets on 5750X chips (Michal Schmidt) [RHEL-73718] - selftests: drv-net: rss_ctx: Add test for ntuple rule (Michal Schmidt) [RHEL-73718] - bnxt_en: ethtool: Supply ntuple rss context action (Michal Schmidt) [RHEL-73718] Resolves: RHEL-24135, RHEL-24136, RHEL-64936, RHEL-68933, RHEL-70836, RHEL-73366, RHEL-73718, RHEL-74099, RHEL-74104, RHEL-74247, RHEL-74748, RHEL-75472, RHEL-76026 Signed-off-by: Jan Stancek <jstancek@redhat.com>
81 lines
2.6 KiB
Makefile
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 = 46
|
|
|
|
#
|
|
# 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
|