* Tue Feb 17 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [5.14.0-685.el9] - gpio: tegra186: Fix GPIO name collisions for Tegra410 (Jennifer Berringer) [RHEL-135121] - gpio: tegra186: Add support for Tegra410 (Jennifer Berringer) [RHEL-135121] - gpio: tegra186: Use generic macro for port definitions (Jennifer Berringer) [RHEL-135121] - gpio: tegra186: Add support for Tegra256 (Jennifer Berringer) [RHEL-135121] - dt-bindings: gpio: Add Tegra256 support (Jennifer Berringer) [RHEL-135121] - gpio: tegra186: fix resource handling in ACPI probe path (Jennifer Berringer) [RHEL-135121] - gpio: tegra186: Replace of_node_to_fwnode() with more suitable API (Jennifer Berringer) [RHEL-135121] - tools headers arm64: Add NVIDIA Olympus part (Charles Mirabile) [RHEL-138475] - perf arm-spe: Add NVIDIA Olympus to neoverse list (Charles Mirabile) [RHEL-138475] - soc/tegra: fuse: Do not register SoC device on ACPI boot (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Fix crash in tegra_fuse_readl() (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Add ACPI support for Tegra194 and Tegra234 (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Add function to print SKU info (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Add function to add lookups (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Add tegra_acpi_init_apbmisc() (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Refactor resource mapping (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Use dev_err_probe for probe failures (Jennifer Berringer) [RHEL-135125] - mm/util: Introduce kmemdup_array() (Jennifer Berringer) [RHEL-135125] - soc/tegra: fuse: Use devm_platform_get_and_ioremap_resource() (Jennifer Berringer) [RHEL-135125] Resolves: RHEL-135121, RHEL-135125, RHEL-138475 Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
38 lines
1.4 KiB
Makefile
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 = 685
|
|
|
|
#
|
|
# 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
|