kernel/Makefile.rhelver
Lucas Zampieri 8db530e5f3
kernel-5.14.0-503.el9
* Thu Aug 22 2024 Lucas Zampieri <lzampier@redhat.com> [5.14.0-503.el9]
- Revert "Merge: scsi: fnic: driver update" (John Meneghini) [RHEL-36420]
- dev/parport: fix the array out-of-bounds risk (CKI Backport Bot) [RHEL-54990] {CVE-2024-42301}
- leds: trigger: Unregister sysfs attributes before calling deactivate() (CKI Backport Bot) [RHEL-54835] {CVE-2024-43830}
- null_blk: fix validation of block size (Ming Lei) [RHEL-51322] {CVE-2024-41077}
- s390/fpu: Re-add exception handling in load_fpu_state() (Aristeu Rozanski) [RHEL-39346]
- redhat: spec: add cachestat to kselftest package (Eric Chanudet) [RHEL-50302]
- selftests: cachestat: Fix build warnings on ppc64 (Eric Chanudet) [RHEL-50302]
- selftests/cachestat: Fix print_cachestat format (Eric Chanudet) [RHEL-50302]
- selftests: cachestat: use proper syscall number macro (Eric Chanudet) [RHEL-50302]
- selftests: cachestat: properly link in librt (Eric Chanudet) [RHEL-50302]
- selftests: cachestat: catch failing fsync test on tmpfs (Eric Chanudet) [RHEL-50302]
- selftests: cachestat: test for cachestat availability (Eric Chanudet) [RHEL-50302]
- selftests: add selftests for cachestat (Eric Chanudet) [RHEL-50302]
Resolves: RHEL-36420, RHEL-39346, RHEL-50302, RHEL-51322, RHEL-54835, RHEL-54990

Signed-off-by: Lucas Zampieri <lzampier@redhat.com>
2024-08-22 13:10:22 +00:00

68 lines
2.3 KiB
Makefile

RHEL_MAJOR = 9
RHEL_MINOR = 5
#
# 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 = 503
#
# 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