* Thu Apr 09 2026 CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com> [6.12.0-221.el10] - mfd: intel-lpss: Add Intel Nova Lake-S PCI IDs (Steve Best) [RHEL-117325] - tools/power cpupower: Show C0 in idle-info dump (Steve Best) [RHEL-133086] - tools/power cpupower: Reset errno before strtoull() (Steve Best) [RHEL-133086] - tools/cpupower: Use strcspn() to strip trailing newline (Steve Best) [RHEL-133086] - tools/cpupower: Fix inverted APERF capability check (Steve Best) [RHEL-133086] - cpupower: idle_monitor: fix incorrect value logged after stop (Steve Best) [RHEL-133086] - tools/cpupower: Fix incorrect size in cpuidle_state_disable() (Steve Best) [RHEL-133086] - tools/cpupower: fix error return value in cpupower_write_sysfs() (Steve Best) [RHEL-133086] - iio: pressure: bmp280: Fix bmp085 symbol namespace literal (Steve Dunnagan) [RHEL-120353] - iio: buffer: deprecated iio_push_to_buffers_with_timestamp() (Steve Dunnagan) [RHEL-120353] - iio: buffer: document iio_push_to_buffers_with_ts() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: correct meas_time_us calculation (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use gpiod_set_value_cansleep() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Remove noisy dev_info() (Steve Dunnagan) [RHEL-120353] - iio: pressure: Remove redundant pm_runtime_mark_last_busy() calls (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280-spi: remove bits_per_word = 8 (Steve Dunnagan) [RHEL-120353] - iio: pressure: Use iio_push_to_buffers_with_ts() to provide length for runtime checks. (Steve Dunnagan) [RHEL-120353] - iio: introduced iio_push_to_buffers_with_ts() that takes a data_total_len argument. (Steve Dunnagan) [RHEL-120353] - iio: core: mark scan_timestamp as __private (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Make time vars intuitive and move to fsleep (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use sizeof() for denominator (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Move bmp085 interrupt to new configuration (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Add data ready trigger support (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use sleep and forced mode for oneshot captures (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Fix uninitialized variable (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use char instead of s32 for data buffer (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use unsigned type for raw values (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Remove config error check for IIR filter updates (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Add support for bmp280 soft reset (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: Use bulk read for humidity calibration data (Steve Dunnagan) [RHEL-120353] - iio: pressure: bmp280: use irq_get_trigger_type() (Steve Dunnagan) [RHEL-120353] Resolves: RHEL-117325, RHEL-120353, RHEL-133086 Signed-off-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
RHEL_MAJOR = 10
|
|
RHEL_MINOR = 3
|
|
|
|
#
|
|
# 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 = 221
|
|
|
|
#
|
|
# 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
|
|
|
|
#
|
|
# Automotive
|
|
# ----------
|
|
#
|
|
# Represents the major and minor release used by automotive.
|
|
# Primarily this is used to to identify the build target when
|
|
# building the automotive kernel package.
|
|
AUTOMOTIVE_MAJOR = 2
|
|
AUTOMOTIVE_MINOR = 1
|
|
|
|
#
|
|
# DERIVATIVE_BUILD
|
|
# ---------------------------
|
|
#
|
|
# Set DERIVATIVE_STREAM to "yes" to enable derivative kernel versioning.
|
|
DERIVATIVE_BUILD = 0
|