* Fri Nov 21 2025 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-162.el10]
- dpll: zl3073x: Allow to configure phase offset averaging factor (Ivan Vecera) [RHEL-123203]
- scsi: s390: zfcp: Ensure synchronous unit_add (Mete Durlu) [RHEL-129200]
- net/mlx5: fs, fix UAF in flow counter release (CKI Backport Bot) [RHEL-124434] {CVE-2025-39979}
- cifs: Fix oops due to uninitialised variable (CKI Backport Bot) [RHEL-120561] {CVE-2025-38737}
- redhat/configs: automotive: enable I2C_IMX and dependencies (Jared Kangas) [RHEL-116101]
- i2c: imx: use guard to take spinlock (Jared Kangas) [RHEL-116101]
- i2c: imx: fix emulated smbus block read (Jared Kangas) [RHEL-116101]
- i2c: imx: add some dev_err_probe calls (Jared Kangas) [RHEL-116101]
- i2c: imx: support DMA defer probing (Jared Kangas) [RHEL-116101]
- i2c: imx: switch different pinctrl state in different system power status (Jared Kangas) [RHEL-116101]
- i2c: imx: add imx7d compatible string for applying erratum ERR007805 (Jared Kangas) [RHEL-116101]
- i2c: imx: fix missing stop condition in single-master mode (Jared Kangas) [RHEL-116101]
- i2c: imx: make controller available until system suspend_noirq() and from resume_noirq() (Jared Kangas) [RHEL-116101]
- i2c: imx: fix divide by zero warning (Jared Kangas) [RHEL-116101]
- i2c: imx: add support for S32G2/S32G3 SoCs (Jared Kangas) [RHEL-116101]
- dt-bindings: i2c: imx: add SoC specific compatible strings for S32G (Jared Kangas) [RHEL-116101]
- i2c: imx: prevent rescheduling in non dma mode (Jared Kangas) [RHEL-116101]
- i2c: imx: separate atomic, dma and non-dma use case (Jared Kangas) [RHEL-116101]
- i2c: imx: do not poll for bus busy in single master mode (Jared Kangas) [RHEL-116101]
Resolves: RHEL-116101, RHEL-120561, RHEL-123203, RHEL-124434, RHEL-129200
Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
61 lines
1.9 KiB
Makefile
61 lines
1.9 KiB
Makefile
RHEL_MAJOR = 10
|
|
RHEL_MINOR = 2
|
|
|
|
#
|
|
# 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 = 162
|
|
|
|
#
|
|
# 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
|
|
|
|
#
|
|
# Automotive
|
|
# ----------
|
|
#
|
|
# Represents the major and minor release used by automotive.
|
|
# Primarily this is used to to identify the build target when
|
|
# building the kernel-automotive packages.
|
|
AUTOMOTIVE_MAJOR = 2
|
|
AUTOMOTIVE_MINOR = 0
|