Compare commits
74 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
abc58d402c | ||
|
|
a7ed2cbc5c |
||
|
|
62ffcc5b5c |
||
|
|
7ca47d76c5 |
||
|
|
0fb8371453 |
||
|
|
5204945343 | ||
|
|
9cb4b4283e | ||
|
|
7ab0aff633 | ||
|
|
456197d263 |
||
|
|
1963dcd613 | ||
|
|
502e47fd56 | ||
|
|
425473004d |
||
|
|
e29798160d |
||
|
|
8fd81b925f |
||
|
|
0267eb0629 | ||
|
|
ec6c25fc8b | ||
|
|
f3b70804e6 |
||
|
|
6dfe461da8 |
||
|
|
fcc40d5911 | ||
|
|
db9b104ed5 | ||
|
|
67ac95ee17 | ||
|
|
8e7753b2cd | ||
|
|
2498a8b02d | ||
|
|
20608cda40 | ||
|
|
d21c7327e6 |
||
|
|
2021e96018 |
||
|
|
ddff0afc8c |
||
|
|
5737fc0bf9 | ||
|
|
aad953694a | ||
|
|
bcc9c42fe5 |
||
|
|
a7e147f9a7 | ||
|
|
4dbf63ba33 | ||
|
|
dd83ce1be7 | ||
|
|
5de35481f0 | ||
|
|
5013b9c1f9 |
||
|
|
76504390f6 | ||
|
|
0f493006a3 |
||
|
|
80fea3a3f5 | ||
|
|
ea6273eafe | ||
|
|
4baa0feabf | ||
|
|
094bc514f0 | ||
|
|
da8086886e | ||
|
|
d90febd931 |
||
|
|
80d48a1989 | ||
|
|
d04face402 | ||
|
|
66aa3fc503 |
||
|
|
57278db1e1 |
||
|
|
27e98f5c04 |
||
|
|
3bce4bc08a |
||
|
|
5a8688931e |
||
|
|
1b03d9d84a | ||
|
|
c6efc009ec | ||
|
|
dac452900d | ||
|
|
c8422feab6 | ||
|
|
eb7c6fe102 | ||
|
|
acdf30e64c | ||
|
|
1a0710ea66 |
||
|
|
adb50bf483 |
||
|
|
ca75b78b43 |
||
|
|
b6fce6fe65 |
||
|
|
49ddbdb263 | ||
|
|
e437dd7be7 | ||
|
|
9ead7be4da |
||
|
|
7d9eadb823 | ||
|
|
3757f8eb14 |
||
|
|
3de7b4f3f0 |
||
|
|
100029c3e4 |
||
|
|
3cafd70317 |
||
|
|
525421e019 |
||
|
|
69f6e97d76 |
||
|
|
18e40bfa26 | ||
|
|
d986941904 | ||
|
|
02ffb2fb7d |
||
|
|
5ba6dc48a4 |
57 changed files with 18593 additions and 64534 deletions
|
|
@ -1,4 +1,4 @@
|
|||
RHEL_MAJOR = 10
|
||||
RHEL_MAJOR = 9
|
||||
RHEL_MINOR = 99
|
||||
|
||||
#
|
||||
|
|
@ -12,7 +12,7 @@ RHEL_MINOR = 99
|
|||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 38
|
||||
RHEL_RELEASE = 0
|
||||
|
||||
#
|
||||
# RHEL_REBASE_NUM
|
||||
|
|
@ -50,11 +50,31 @@ RHEL_REBASE_NUM = 1
|
|||
ZSTREAM ?= no
|
||||
|
||||
#
|
||||
# Automotive
|
||||
# ----------
|
||||
# Early y+1 numbering
|
||||
# --------------------
|
||||
#
|
||||
# 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 = 99
|
||||
# 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
|
||||
|
|
|
|||
|
|
@ -1,474 +1,330 @@
|
|||
https://gitlab.com/cki-project/kernel-ark/-/commit/831ff9bcd8e9eab864062470a3250beb1e1ec924
|
||||
831ff9bcd8e9eab864062470a3250beb1e1ec924 rust: Add -fdiagnostics-show-context to bindgen_skip_c_flags
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/548348714f4f09cd0d35bc88d748c6c148f34e71
|
||||
548348714f4f09cd0d35bc88d748c6c148f34e71 platform/x86/intel/pmc: Add Arrow Lake U/H support to intel_pmc_core driver
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/fe3e9e24af806d756edbda922103b1fa95d9b89b
|
||||
fe3e9e24af806d756edbda922103b1fa95d9b89b Revert "Removing Obsolete hba pci-ids from rhel8"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a4fb83e98d00fd4b442f6c93551ec0c27132ae08
|
||||
a4fb83e98d00fd4b442f6c93551ec0c27132ae08 platform/x86:intel/pmc: Move arch specific action to init function
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c4a0a995da9df8732f688d09db5252173277589d
|
||||
c4a0a995da9df8732f688d09db5252173277589d rh_messages.h: add missing lpfc devices
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0b00ca48dafbd06eec74cd7fe899bda47d056c1d
|
||||
0b00ca48dafbd06eec74cd7fe899bda47d056c1d platform/x86/intel/pmc: Remove simple init functions
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0ad9a88c3263fa8fa39437f69472588917255c99
|
||||
0ad9a88c3263fa8fa39437f69472588917255c99 kernel: extend rh_waived to cope better with the CVE mitigations case
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2cbb532cc0fcb5c8f49bb1951be3a0a13b8ebadc
|
||||
2cbb532cc0fcb5c8f49bb1951be3a0a13b8ebadc platform/x86:intel/pmc: Create generic_core_init() for all platforms
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/cf18c49636f2583c85831f909699034026325242
|
||||
cf18c49636f2583c85831f909699034026325242 rh_messages.h: add missing aacraid device
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7ab8f93059366295ecb912e3ad0830aabf54fbe2
|
||||
7ab8f93059366295ecb912e3ad0830aabf54fbe2 platform/x86/intel/pmc: Remove duplicate enum
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/26ca931184edb2c3c7f7c1951f53fa3333d9c90e
|
||||
26ca931184edb2c3c7f7c1951f53fa3333d9c90e rh_messages.h: update unmaintained drivers
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/cfdfa3e195df93b5feac87c21b65b7b561e2a171
|
||||
cfdfa3e195df93b5feac87c21b65b7b561e2a171 platform/x86:intel/pmc: Make tgl_core_generic_init() static
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c1c1a1b7059900f4b9b657f5189285a287160e11
|
||||
c1c1a1b7059900f4b9b657f5189285a287160e11 arm64: add early lockdown for secure boot
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/02d26b233a0d6433741612ef71b903449ee62911
|
||||
02d26b233a0d6433741612ef71b903449ee62911 media: i2c: Add Omnivision OV02C10 sensor driver
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a613ae52a8d9378e6fa70f697b3ce0acee220491
|
||||
a613ae52a8d9378e6fa70f697b3ce0acee220491 efi: pass secure boot mode to kernel proper
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/69cbc43f9fae812068b829322274e66c0d8ab2f2
|
||||
69cbc43f9fae812068b829322274e66c0d8ab2f2 media: i2c: ov02e10: add OV02E10 image sensor driver
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f869258b6b654d316e84325e46e431da4dfd04e7
|
||||
f869258b6b654d316e84325e46e431da4dfd04e7 selftests/bpf: Remove ksyms_weak_lskel test
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3898daab69e752d84411555e87f63fbb0661bb3d
|
||||
3898daab69e752d84411555e87f63fbb0661bb3d platform/x86: int3472: Debug log when remapping pins
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8b69219fe6a11766cf1a2e07dc94e56448b47824
|
||||
8b69219fe6a11766cf1a2e07dc94e56448b47824 Simplify include Makefile.rhelver
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d136bb49bd144aa4b30d38d3e1301e2884c81a6c
|
||||
d136bb49bd144aa4b30d38d3e1301e2884c81a6c platform/x86: int3472: Add handshake pin support
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c2621ac616e25a9a04fbcb8af0c1f8b2bdd8c099
|
||||
c2621ac616e25a9a04fbcb8af0c1f8b2bdd8c099 redhat: make ENABLE_WERROR also enable OBJTOOL_WERROR
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/30b5ab40caf664116fd0fd196b8976112370b228
|
||||
30b5ab40caf664116fd0fd196b8976112370b228 platform/x86: int3472: Prepare for registering more than 1 GPIO regulator
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d28cbdeb89fe565e10fb4be8d8378153e86611f6
|
||||
d28cbdeb89fe565e10fb4be8d8378153e86611f6 main.c: fix initcall blacklisted
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c20d3ebf561af8c8fe931d678c79ddfed7656978
|
||||
c20d3ebf561af8c8fe931d678c79ddfed7656978 platform/x86: int3472: Avoid GPIO regulator spikes
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b71ab57c8db44881edc32a124ddc2ebe536b6a4c
|
||||
b71ab57c8db44881edc32a124ddc2ebe536b6a4c arch/x86/kernel/setup.c: fix rh_check_supported
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5de11f5b35165f77579d146fabc6aabc2bb4403f
|
||||
5de11f5b35165f77579d146fabc6aabc2bb4403f platform/x86: int3472: Make regulator supply name configurable
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c4ea2384863e54e0c5582b3508518e659581ce69
|
||||
c4ea2384863e54e0c5582b3508518e659581ce69 efi,lockdown: fix kernel lockdown on Secure Boot
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8d889896f32aadf194cbe4523539eca44607240a
|
||||
8d889896f32aadf194cbe4523539eca44607240a platform/x86: int3472: Rework AVDD second sensor quirk handling
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/60b2ddeb0986e1c43a98b44a4ab414a7e2744701
|
||||
60b2ddeb0986e1c43a98b44a4ab414a7e2744701 Revert "nvme: Return BLK_STS_TARGET if the DNR bit is set"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/197a55e006bee279cdcac97ae88eb23f9ed3f4af
|
||||
197a55e006bee279cdcac97ae88eb23f9ed3f4af platform/x86: int3472: Drop unused gpio field from struct int3472_gpio_regulator
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/860632dd288c7aa7807959a79af9159482510cd1
|
||||
860632dd288c7aa7807959a79af9159482510cd1 Revert "nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/27355bfe191be466a3322c7f333e13536b39360b
|
||||
27355bfe191be466a3322c7f333e13536b39360b platform/x86: int3472: Stop setting a supply-name for GPIO regulators
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/aaef2c3ee081c8980bb60fd4b7a6ed9e187d9048
|
||||
aaef2c3ee081c8980bb60fd4b7a6ed9e187d9048 Revert "nvme: decouple basic ANA log page re-read support from native multipathing"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/632186f07fe663e718547b46793cbf2e12ddde89
|
||||
632186f07fe663e718547b46793cbf2e12ddde89 platform/x86: int3472: Add skl_int3472_register_clock() helper
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5cd4353dae0ee79d13f57b7ccee85cd0bcbe4b4f
|
||||
5cd4353dae0ee79d13f57b7ccee85cd0bcbe4b4f Revert "nvme: nvme_mpath_init remove multipath check"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0971664f212543823295d1e221e344da1026b144
|
||||
0971664f212543823295d1e221e344da1026b144 platform/x86: int3472: Call "func" "con_id" instead
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/656a0565ffe54f99ac1390a68c5ee7050ab6fb25
|
||||
656a0565ffe54f99ac1390a68c5ee7050ab6fb25 redhat: automotive: define CONFIG_RH_AUTOMOTIVE
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/bcca68263c6f283c903e9a4b0137255f30a12669
|
||||
bcca68263c6f283c903e9a4b0137255f30a12669 serial: 8250_dma: terminate correct DMA in tx_dma_flush()
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f1025d6236c72b4fbd03940b6fa2178f2a84f418
|
||||
f1025d6236c72b4fbd03940b6fa2178f2a84f418 redhat: fix modules.order target
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5545e7979fec32017e892a930555ac5fbef96dd8
|
||||
5545e7979fec32017e892a930555ac5fbef96dd8 serial: stm32: do not deassert RS485 RTS GPIO prematurely
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6e0fa997052c92d6085a50083e75dedc0160443f
|
||||
6e0fa997052c92d6085a50083e75dedc0160443f [redhat] rh_messages.h: driver and device updates
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ee7375bed635167caca2af6fd4dd87322ac3c231
|
||||
ee7375bed635167caca2af6fd4dd87322ac3c231 perf tools: Fix up some comments and code to properly use the event_source bus
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d8822fd0573e9f254f097c1743078e4e74ac70f5
|
||||
d8822fd0573e9f254f097c1743078e4e74ac70f5 crypto: rng - Fix extrng EFAULT handling
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b81fd7643513eb5935cfdd1fc6575fab0f5fff1c
|
||||
b81fd7643513eb5935cfdd1fc6575fab0f5fff1c memstick: rtsx_usb_ms: Fix slab-use-after-free in rtsx_usb_ms_drv_remove
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c224e4b6a61af08574bb0565755ed609bf08cacb
|
||||
c224e4b6a61af08574bb0565755ed609bf08cacb crypto: sig - Disable signing
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/577fdf93c48430a1a91a15e3f91c4d845f143ed8
|
||||
577fdf93c48430a1a91a15e3f91c4d845f143ed8 usb: xhci: Apply the link chain quirk on NEC isoc endpoints
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/39417e970be7f6bc63f34d5ed5511f7e629802c2
|
||||
39417e970be7f6bc63f34d5ed5511f7e629802c2 crypto: rng - Ensure stdrng is tested before user-space starts
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/17f35d1c250cf245c342a3eb7809271d679ca218
|
||||
17f35d1c250cf245c342a3eb7809271d679ca218 usb: xhci: Don't skip on Stopped - Length Invalid
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/52be246b6342ed5b1486729fd5c5893b10549a92
|
||||
52be246b6342ed5b1486729fd5c5893b10549a92 [redhat] rh_messages.h: Mark BlueField-4 as disabled
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8d778a03d139a11ee946623ccade4f169c32dee1
|
||||
8d778a03d139a11ee946623ccade4f169c32dee1 net: usb: usbnet: restore usb%d name exception for local mac addresses
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2c9e64af9fa1f8599ce05877441afcac8ac91b04
|
||||
2c9e64af9fa1f8599ce05877441afcac8ac91b04 Update the RHEL_DIFFERENCES help string
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/fa7d15fec71f1ae066f94f0567a5d3c0bd4eca0a
|
||||
fa7d15fec71f1ae066f94f0567a5d3c0bd4eca0a net: usb: qmi_wwan: add Telit Cinterion FE990B composition
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/beef34cb1efc34b7fbee35535c66915995d12ed1
|
||||
beef34cb1efc34b7fbee35535c66915995d12ed1 redhat: include resolve_btfids in kernel-devel
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d244d513eee869e5547fa01a06a98c1c8cdb652e
|
||||
d244d513eee869e5547fa01a06a98c1c8cdb652e net: usb: qmi_wwan: add Telit Cinterion FN990B composition
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/1a1426b7a8df854c78385dd8ce8b74e9ee641477
|
||||
1a1426b7a8df854c78385dd8ce8b74e9ee641477 redhat: workaround CKI cross compilation for scripts
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b5f7798503a6283328f59210efb0361e7d719945
|
||||
b5f7798503a6283328f59210efb0361e7d719945 tty: serial: fsl_lpuart: disable transmitter before changing RS485 related registers
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2c83d6cfffe1f891bf024df81be6cd41c2073ad9
|
||||
2c83d6cfffe1f891bf024df81be6cd41c2073ad9 crypto: akcipher - Disable signing and decryption
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/fc5eed13c6f29231800af44806557b21c8d73b76
|
||||
fc5eed13c6f29231800af44806557b21c8d73b76 tty: serial: 8250: Add Brainboxes XC devices
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/af93553b8d335ccf5dd4f90ab9419e497aa36a80
|
||||
af93553b8d335ccf5dd4f90ab9419e497aa36a80 crypto: dh - implement FIPS PCT
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4f5561be567b2325f2d71f0e7d18fedfd28b2d91
|
||||
4f5561be567b2325f2d71f0e7d18fedfd28b2d91 tty: serial: 8250: Add some more device IDs
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f0540d9d32978dff227cbb930193e8dc2557b23b
|
||||
f0540d9d32978dff227cbb930193e8dc2557b23b crypto: ecdh - disallow plain "ecdh" usage in FIPS mode
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b6fc922c692a112b4c309cabe242faadedf2699c
|
||||
b6fc922c692a112b4c309cabe242faadedf2699c counter: microchip-tcb-capture: Fix undefined counter channel state on probe
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/243ef89ad354eea332d7bfb23fd4cf259240de91
|
||||
243ef89ad354eea332d7bfb23fd4cf259240de91 crypto: seqiv - flag instantiations as FIPS compliant
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/86050e88475119b9b177890481289b7545cf365b
|
||||
86050e88475119b9b177890481289b7545cf365b counter: stm32-lptimer-cnt: fix error handling when enabling
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6a23cbc588e9b9f7b2bc7250c6c6903d4d904eb1
|
||||
6a23cbc588e9b9f7b2bc7250c6c6903d4d904eb1 [kernel] bpf: set default value for bpf_jit_harden
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/319f73b4d061a044004e91b91c308e247b2520c2
|
||||
319f73b4d061a044004e91b91c308e247b2520c2 ALSA: hda/realtek: Bass speaker fixup for ASUS UM5606KA
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/bb84b630a172d0204c8d243c57a6a1d2eae7843c
|
||||
bb84b630a172d0204c8d243c57a6a1d2eae7843c not upstream: Disable vdso getrandom when FIPS is enabled
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a6c9d1b74b48ea32bac4311728a568b418b50e76
|
||||
a6c9d1b74b48ea32bac4311728a568b418b50e76 ALSA: hda/realtek: Support mute LED on HP Laptop 15s-du3xxx
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b643998c61552fb5615268e7e529999d64d54175
|
||||
b643998c61552fb5615268e7e529999d64d54175 Add support to rh_waived cmdline boot parameter
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7ba8fd6b2e85f9bcdb2b033f731fb180df203127
|
||||
7ba8fd6b2e85f9bcdb2b033f731fb180df203127 netfilter: socket: Lookup orig tuple for IPv6 SNAT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a1e04b6f3580382a902256c7bf8b395b9a1be47f
|
||||
a1e04b6f3580382a902256c7bf8b395b9a1be47f rh_flags: fix failed when register_sysctl_sz rh_flags_table to kernel
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3e2e3a084981826c5e8318d9d25d409a2ad1be48
|
||||
3e2e3a084981826c5e8318d9d25d409a2ad1be48 cgroup/rstat: Fix forceidle time in cpu.stat
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/03cf1862c6221ee2a6de9a5ab25adaec6460b62e
|
||||
03cf1862c6221ee2a6de9a5ab25adaec6460b62e [redhat] rh_flags: constify the ctl_table argument of proc_handler
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/82c2bbb58b730f6ebd25917c1b3fb46a21478930
|
||||
82c2bbb58b730f6ebd25917c1b3fb46a21478930 atm: Fix NULL pointer dereference
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e2708e55f9151652da80e388b4bf88c649288c0f
|
||||
e2708e55f9151652da80e388b4bf88c649288c0f redhat: rh_flags: declare proper static methods when !CONFIG_RHEL_DIFFERENCES
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e6d1f45715373d91352d37bd296f33484771c34f
|
||||
e6d1f45715373d91352d37bd296f33484771c34f HID: hid-plantronics: Add mic mute mapping and generalize quirks
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6f593811cc1e5664f45fe2d09916eada1187e992
|
||||
6f593811cc1e5664f45fe2d09916eada1187e992 redhat: make bnx2xx drivers unmaintained in rhel-10
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d1ddc7490bffbfe083f012975f5fd93281752d66
|
||||
d1ddc7490bffbfe083f012975f5fd93281752d66 ALSA: usb-audio: Add quirk for Plantronics headsets to fix control names
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5db8220bd67c719a20c1269233585b40f48837da
|
||||
5db8220bd67c719a20c1269233585b40f48837da rh_flags: Rename rh_features to rh_flags
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/89fdc802fb34ce1029e1d732064053dc3f5c1b7b
|
||||
89fdc802fb34ce1029e1d732064053dc3f5c1b7b Documentation/powerpc/fadump: add additional parameter feature details
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/19ca502a0087eed65a014c6271f9bfc207d8d7eb
|
||||
19ca502a0087eed65a014c6271f9bfc207d8d7eb kernel: rh_features: fix reading empty feature list from /proc
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c431443fb329dfbf11210270f59f241e3a4a3cca
|
||||
c431443fb329dfbf11210270f59f241e3a4a3cca powerpc: increase MIN RMA size for CAS negotiation
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ba24639032f00b47748a6f39a4eb33950df015c2
|
||||
ba24639032f00b47748a6f39a4eb33950df015c2 rh_features: move rh_features entry to sys/kernel
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a7abb305bb7b8f7680273d27aa94c228a632bd13
|
||||
a7abb305bb7b8f7680273d27aa94c228a632bd13 powerpc/fadump: fix additional param memory reservation for HASH MMU
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/883e43fe6a0da0d9ad90e7c997a95f11bab9b888
|
||||
883e43fe6a0da0d9ad90e7c997a95f11bab9b888 rh_features: convert to atomic allocation
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c80fac64b2ccbe33d364025c0447b6f60f236a40
|
||||
c80fac64b2ccbe33d364025c0447b6f60f236a40 powerpc: export MIN RMA size
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c8daa2e832df14ee9174435a357b2ae0994a3ef3
|
||||
c8daa2e832df14ee9174435a357b2ae0994a3ef3 add rh_features to /proc
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/94afa30f6b99bbeeb77306dfb79f0cda3a10b116
|
||||
94afa30f6b99bbeeb77306dfb79f0cda3a10b116 powerpc64/ftrace: fix module loading without patchable function entries
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4f33dbbe3ec578d49e12c07421b913bf480fccef
|
||||
4f33dbbe3ec578d49e12c07421b913bf480fccef add support for rh_features
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f78df9cea301d9f342bc2767c8f7d9a856555156
|
||||
f78df9cea301d9f342bc2767c8f7d9a856555156 x86/insn_decoder_test: allow longer symbol-names
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/53a5900b05260b81f13eb3b9d6a9419429f310ab
|
||||
53a5900b05260b81f13eb3b9d6a9419429f310ab [redhat] PCI: Fix pci_rh_check_status() call semantics
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/92c70a7611491129e7c2ae21c9006823a5ac1fd4
|
||||
92c70a7611491129e7c2ae21c9006823a5ac1fd4 apply -Wno-error=unterminated-string-initialization temporarily
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/aeb9a237a0ec39b7bde89d8bb040cd5b267f6802
|
||||
aeb9a237a0ec39b7bde89d8bb040cd5b267f6802 scsi: sd: condition probe_type under RHEL_DIFFERENCES
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ca1336e1ebc11b2cff68723a4b3486e6e6b53a2e
|
||||
ca1336e1ebc11b2cff68723a4b3486e6e6b53a2e mei: vsc: Fix fortify-panic caused by invalid counted_by() use
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/159e72af8b1631b720f4a7e0012fa624764cecde
|
||||
159e72af8b1631b720f4a7e0012fa624764cecde scsi: sd: remove unused sd_probe_types
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/311b133838fe21b2c0e656ff31dad354113180f8
|
||||
311b133838fe21b2c0e656ff31dad354113180f8 Revert "[scsi] megaraid_sas: re-add certain pci-ids"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d8c04860eb7bf29617ca1754f1076fd9f5992e77
|
||||
d8c04860eb7bf29617ca1754f1076fd9f5992e77 [redhat] rh_messages.h: mark mlx5 on Bluefield-3 as unmaintained
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8c9c0cd76a465e47662fc06f710b78392a84aaf5
|
||||
8c9c0cd76a465e47662fc06f710b78392a84aaf5 media: ov08x40: Extend sleep after reset to 5 ms
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/496c64b4afece4ab525467a6be71ffe60d0c564f
|
||||
496c64b4afece4ab525467a6be71ffe60d0c564f [redhat] rh_messages.h: initial driver and device lists
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3dba21e95254c34e5fb37b169c8754ed99909db7
|
||||
3dba21e95254c34e5fb37b169c8754ed99909db7 media: ov08x40: Log chip ID when identifying the chip
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5cf456aaba6f5c9406421c04c65d43b2c71f5927
|
||||
5cf456aaba6f5c9406421c04c65d43b2c71f5927 arch/x86: Fix XSAVE check for x86_64-v2 check
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/386e7e3ac5a295e2c9c03fe1600537c965cddbec
|
||||
386e7e3ac5a295e2c9c03fe1600537c965cddbec media: ov08x40: Fix value of reset GPIO when requesting it
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/252bf9586fca6e57a51966c0294a9a0cb33ff4f5
|
||||
252bf9586fca6e57a51966c0294a9a0cb33ff4f5 arch/x86/kernel/setup.c: fixup rh_check_supported
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/53d71fdd7f4858cb3ff0842ad29bf1a4d01d425e
|
||||
53d71fdd7f4858cb3ff0842ad29bf1a4d01d425e efi,lockdown: fix kernel lockdown on Secure Boot
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/30faf17591afbd4230d590355351044294ad43d2
|
||||
30faf17591afbd4230d590355351044294ad43d2 lsm: update security_lock_kernel_down
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2b2392905c5cb28dc24d3a9fc5999f04e223559b
|
||||
2b2392905c5cb28dc24d3a9fc5999f04e223559b Revert "nvme: Return BLK_STS_TARGET if the DNR bit is set"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e88ee9e2e869e7259faa5bf3ff6689becabb53cb
|
||||
e88ee9e2e869e7259faa5bf3ff6689becabb53cb arch/x86: mark x86_64-v1 and x86_64-v2 processors as deprecated
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e285864f20b234af9d5777c06265eb25bbcd6f06
|
||||
e285864f20b234af9d5777c06265eb25bbcd6f06 Revert "nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/26ebc304df38a49ce7cc69b4bdf220298cff2460
|
||||
26ebc304df38a49ce7cc69b4bdf220298cff2460 redhat: kABI: add missing RH_KABI_SIZE_ALIGN_CHECKS Kconfig option
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/527b3a15de18e08ebef4982134817a17badf89ce
|
||||
527b3a15de18e08ebef4982134817a17badf89ce Revert "nvme: decouple basic ANA log page re-read support from native multipathing"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8c71392703448be8e8217592dd46ea1cc8b157e1
|
||||
8c71392703448be8e8217592dd46ea1cc8b157e1 redhat: rh_kabi: introduce RH_KABI_EXCLUDE_WITH_SIZE
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/88018a33330765d355910422e778f14ec8fb8fef
|
||||
88018a33330765d355910422e778f14ec8fb8fef Revert "nvme: nvme_mpath_init remove multipath check"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d42afcb843fcc87e59ba39b5574c18d89fd07a91
|
||||
d42afcb843fcc87e59ba39b5574c18d89fd07a91 redhat: rh_kabi: move semicolon inside __RH_KABI_CHECK_SIZE
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/39d0191a0b8a2c267a6074e4793f527682819542
|
||||
39d0191a0b8a2c267a6074e4793f527682819542 media: ov08x40: Don't log ov08x40_check_hwcfg() errors twice
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/95a56955f9ba6ef1e1dd2d99d8f98254da274267
|
||||
95a56955f9ba6ef1e1dd2d99d8f98254da274267 random: replace import_single_range() with import_ubuf()
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8b5cc70403ec5a50ca579bfd34a9d5faf231d4c7
|
||||
8b5cc70403ec5a50ca579bfd34a9d5faf231d4c7 media: ov08x40: Add missing '\n' to ov08x40_check_hwcfg() error messages
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/92d6612578b79fd3a09e10504ed71209ba43c271
|
||||
92d6612578b79fd3a09e10504ed71209ba43c271 ext4: Mark mounting fs-verity filesystems as tech-preview
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9b124b24e3eac1ce31ba749a2083aa85be715fa1
|
||||
9b124b24e3eac1ce31ba749a2083aa85be715fa1 media: ov08x40: Add missing ov08x40_identify_module() call on stream-start
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5c51745b8aec113ff0605ab833c3e472d99c55c8
|
||||
5c51745b8aec113ff0605ab833c3e472d99c55c8 erofs: Add tech preview markers at mount
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/138833d5d9daab386b9b45c55edd8ab72d1a97e5
|
||||
138833d5d9daab386b9b45c55edd8ab72d1a97e5 media: ov08x40: Improve ov08x40_[read|write]_reg() error returns
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6d687c70a7eda10eac0ddc6eedeaccc30eef5349
|
||||
6d687c70a7eda10eac0ddc6eedeaccc30eef5349 kernel/rh_messages.c: Mark functions as possibly unused
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ad89bc7c2e50a12f8a83828dca6889688b2c10e1
|
||||
ad89bc7c2e50a12f8a83828dca6889688b2c10e1 media: ov08x40: Improve ov08x40_identify_module() error logging
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/dfb09b1d833cad815ea2f5cb69505010de260c40
|
||||
dfb09b1d833cad815ea2f5cb69505010de260c40 crypto: rng - Override drivers/char/random in FIPS mode
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/39dd4580f7e2579165c515f5043c5bea7505e437
|
||||
39dd4580f7e2579165c515f5043c5bea7505e437 media: ov08x40: Move ov08x40_identify_module() function up
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ddbe3667f2462817f3f936141fff08604dde1564
|
||||
ddbe3667f2462817f3f936141fff08604dde1564 random: Add hook to override device reads and getrandom(2)
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/74620063c0318be9f1d03477c482b0d8430514aa
|
||||
74620063c0318be9f1d03477c482b0d8430514aa media: ov08x40: Get clock on ACPI platforms too
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/92525a9129d85fa6400c9e653379862a67cb43b2
|
||||
92525a9129d85fa6400c9e653379862a67cb43b2 [redhat] kernel/rh_messages.c: move hardware tables to rh_messages.h
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/88af1b83a2e275bb5db1da3dbd7d2b90d225c16b
|
||||
88af1b83a2e275bb5db1da3dbd7d2b90d225c16b media: ov08x40: Get reset GPIO and regulators on ACPI platforms too
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/eacd81fdaf31d456a82c553735faf64c8efad2eb
|
||||
eacd81fdaf31d456a82c553735faf64c8efad2eb [redhat] kernel/rh_messages.c: Wire up new calls
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/1fb47959f30fa23071614f3056cb83c7af23bdd0
|
||||
1fb47959f30fa23071614f3056cb83c7af23bdd0 media: ov08x40: Move fwnode_graph_get_next_endpoint() call up
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/32af8640a651c642ee5706dda0cf35ff508bcdcb
|
||||
32af8640a651c642ee5706dda0cf35ff508bcdcb [redhat] drivers/pci: Update rh_messages.c
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2452d236393719a7bb47550162b897865cacf9b1
|
||||
2452d236393719a7bb47550162b897865cacf9b1 media: ov08x40: Properly turn sensor on/off when runtime-suspended
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/db366977f9e13f903cc9b7f22936b581594a7731
|
||||
db366977f9e13f903cc9b7f22936b581594a7731 [redhat] drivers/pci: Remove RHEL-only pci_hw_*() functions
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/cb380e0c0f3fdff6dc0d53948c22847f8e48803d
|
||||
cb380e0c0f3fdff6dc0d53948c22847f8e48803d redhat: fix modules.order target
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/402504ff66e5d118b514253df5d55f8413e2e167
|
||||
402504ff66e5d118b514253df5d55f8413e2e167 scsi: sd: Add "probe_type" module parameter to allow synchronous probing
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2e958ad8a3314ca2ec7d8c00cac4def7fcf9770a
|
||||
2e958ad8a3314ca2ec7d8c00cac4def7fcf9770a crypto: sig - Disable signing
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5e96a345c6fb24e282ce1769223c1a339d0dbe94
|
||||
5e96a345c6fb24e282ce1769223c1a339d0dbe94 Revert "Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64"
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8ef5af054a179014076edd3e3425ea3f712f1389
|
||||
8ef5af054a179014076edd3e3425ea3f712f1389 redhat: include resolve_btfids in kernel-devel
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ce943989ae8cb2b8e0b4699c148584d3cd18ec9b
|
||||
ce943989ae8cb2b8e0b4699c148584d3cd18ec9b kernel/rh_messages.c: Another gcc12 warning on redundant NULL test
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f4658ab7f6c076088d95d78fb9a1e95b60c46e06
|
||||
f4658ab7f6c076088d95d78fb9a1e95b60c46e06 redhat: workaround CKI cross compilation for scripts
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c0624b3913d8c3f262e20910a2f2c4d2f99ce61f
|
||||
c0624b3913d8c3f262e20910a2f2c4d2f99ce61f Enable IO_URING for RHEL
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/15090892eb159639f2447ac4285458e616f57f68
|
||||
15090892eb159639f2447ac4285458e616f57f68 crypto: akcipher - Disable signing and decryption
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/861f2d38d82cfb374799ec517f18cc021701068e
|
||||
861f2d38d82cfb374799ec517f18cc021701068e Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/583cf34912f1d425480fd5a94e04d53a5f6669e1
|
||||
583cf34912f1d425480fd5a94e04d53a5f6669e1 crypto: dh - implement FIPS PCT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e02ec93117d6eea21e80baf69e6f9848cf1a9774
|
||||
e02ec93117d6eea21e80baf69e6f9848cf1a9774 redhat: version two of Makefile.rhelver tweaks
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7cf9f85c4fc9fba083968b3aa787618eedfa27fc
|
||||
7cf9f85c4fc9fba083968b3aa787618eedfa27fc crypto: ecdh - disallow plain "ecdh" usage in FIPS mode
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/964e830b4fae678dec5b8b93dcd402c73fdf2912
|
||||
964e830b4fae678dec5b8b93dcd402c73fdf2912 redhat: adapt to upstream Makefile change
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/25497c0e3875c394d29be48b61029a1ce3005b4c
|
||||
25497c0e3875c394d29be48b61029a1ce3005b4c crypto: seqiv - flag instantiations as FIPS compliant
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/60a4025a3b1cdec1c7bbdabf1e30278f615bb493
|
||||
60a4025a3b1cdec1c7bbdabf1e30278f615bb493 kernel/rh_messages.c: gcc12 warning on redundant NULL test
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f237d446bfa956c77d6e59ec8e858621b8a24235
|
||||
f237d446bfa956c77d6e59ec8e858621b8a24235 lsm: update security_lock_kernel_down
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a5c9e3c6e3dcda60b5f753d1bae86a686f3ac087
|
||||
a5c9e3c6e3dcda60b5f753d1bae86a686f3ac087 Change acpi_bus_get_acpi_device to acpi_get_acpi_dev
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b5c87412b191c5c8c890ae09bcc21952e8a73ead
|
||||
b5c87412b191c5c8c890ae09bcc21952e8a73ead scsi: sd: Add "probe_type" module parameter to allow synchronous probing
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/092e751fe418623c5ad04e77fa6c993d48d96533
|
||||
092e751fe418623c5ad04e77fa6c993d48d96533 ARK: Remove code marking devices unmaintained
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/40100f19a6d910c2e2c9de3fcf85db6e3028e74f
|
||||
40100f19a6d910c2e2c9de3fcf85db6e3028e74f Revert "Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64"
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c27fa327fb3de69773568d211fd2f8f13a72e342
|
||||
c27fa327fb3de69773568d211fd2f8f13a72e342 rh_message: Fix function name
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8727de361b82fff5fd422323a66ceb64ff390a25
|
||||
8727de361b82fff5fd422323a66ceb64ff390a25 Enable IO_URING for RHEL
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c9b07fd3a141ad0283d7eaadf5a06aec9af2b8c9
|
||||
c9b07fd3a141ad0283d7eaadf5a06aec9af2b8c9 Add Partner Supported taint flag to kAFS
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/339a63f0a5339ef70f63861e6de43c0441fec47b
|
||||
339a63f0a5339ef70f63861e6de43c0441fec47b Remove EXPERT from ARCH_FORCE_MAX_ORDER for aarch64
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6b0e3a47ec436527a736c0e7159b41624d176dd9
|
||||
6b0e3a47ec436527a736c0e7159b41624d176dd9 Add Partner Supported taint flag
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f02e76c1975e922d3fd40c5a1b533537768bf056
|
||||
f02e76c1975e922d3fd40c5a1b533537768bf056 redhat: version two of Makefile.rhelver tweaks
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3a4e2ad92c430d2f584f56ca686bc75a469d06c0
|
||||
3a4e2ad92c430d2f584f56ca686bc75a469d06c0 kabi: Add kABI macros for enum type
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/410f0a886daf305f9aa09c325405a9901070daab
|
||||
410f0a886daf305f9aa09c325405a9901070daab redhat: adapt to upstream Makefile change
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/04fbd46f834f3a012ca9d5bef91db377a3dbaed0
|
||||
04fbd46f834f3a012ca9d5bef91db377a3dbaed0 kabi: expand and clarify documentation of aux structs
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/091568dd23135c8e5d12585ad249a28770c80df2
|
||||
091568dd23135c8e5d12585ad249a28770c80df2 Change acpi_bus_get_acpi_device to acpi_get_acpi_dev
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/cf8df8ef88e094ebb049a7e1e6fec069aaf54faa
|
||||
cf8df8ef88e094ebb049a7e1e6fec069aaf54faa kabi: introduce RH_KABI_USE_AUX_PTR
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/24b543f75394c37de65ace4febdc9f38ee35b84e
|
||||
24b543f75394c37de65ace4febdc9f38ee35b84e [scsi] megaraid_sas: re-add certain pci-ids
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/31779ca0c6c9aab28184a42ac3f17ac219b37b2b
|
||||
31779ca0c6c9aab28184a42ac3f17ac219b37b2b kabi: rename RH_KABI_SIZE_AND_EXTEND to AUX
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/317cad7b924c78b0ac709fd5ce2daffd3c81af79
|
||||
317cad7b924c78b0ac709fd5ce2daffd3c81af79 RHEL: disable io_uring support
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2e12a05d339ed936b9cd59f420b161d70b4a130a
|
||||
2e12a05d339ed936b9cd59f420b161d70b4a130a kabi: more consistent _RH_KABI_SIZE_AND_EXTEND
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d8120a54ec63f6ca9371bfc965df9eab0d60537e
|
||||
d8120a54ec63f6ca9371bfc965df9eab0d60537e nvme: nvme_mpath_init remove multipath check
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b83556eebdc2efdc2d2c22610b7cd7c5cafb2bae
|
||||
b83556eebdc2efdc2d2c22610b7cd7c5cafb2bae kabi: use fixed field name for extended part
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/999c0929c9ddf29ab019903dd4b93a4a1d6eba4e
|
||||
999c0929c9ddf29ab019903dd4b93a4a1d6eba4e nvme: decouple basic ANA log page re-read support from native multipathing
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4c9a3b306a34ed7017e35b0de26b2d98e1a04373
|
||||
4c9a3b306a34ed7017e35b0de26b2d98e1a04373 kabi: fix dereference in RH_KABI_CHECK_EXT
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d15d1257cafd5213a32d840e19d74a9c1d90ee7d
|
||||
d15d1257cafd5213a32d840e19d74a9c1d90ee7d nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a961660df0a73bcf2dcd8cb8855c2f5d5ded0ae9
|
||||
a961660df0a73bcf2dcd8cb8855c2f5d5ded0ae9 kabi: fix RH_KABI_SET_SIZE macro
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e215dc0ebf5b84b6685cad819f33adb5159699c7
|
||||
e215dc0ebf5b84b6685cad819f33adb5159699c7 nvme: Return BLK_STS_TARGET if the DNR bit is set
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9f9ef5e8b4694fa7fb6a8f941fb741121fe5aab3
|
||||
9f9ef5e8b4694fa7fb6a8f941fb741121fe5aab3 kabi: expand and clarify documentation
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a7d83d10e168e12250bcef3b930a2bedbafab604
|
||||
a7d83d10e168e12250bcef3b930a2bedbafab604 REDHAT: coresight: etm4x: Disable coresight on HPE Apollo 70
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/308d17beeaa6cb4a514f77319b636c9a2c15f5eb
|
||||
308d17beeaa6cb4a514f77319b636c9a2c15f5eb kabi: make RH_KABI_USE replace any number of reserved fields
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/235f6035213c27bfbd7d240298cde399010cd51c
|
||||
235f6035213c27bfbd7d240298cde399010cd51c KEYS: Make use of platform keyring for module signature verify
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f3d12dffffeee8d6692be46044b9fc8448901692
|
||||
f3d12dffffeee8d6692be46044b9fc8448901692 kabi: rename RH_KABI_USE2 to RH_KABI_USE_SPLIT
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b144a9f6e6248fa6ebbddf9b841e96d6b5c816f3
|
||||
b144a9f6e6248fa6ebbddf9b841e96d6b5c816f3 Input: rmi4 - remove the need for artificial IRQ in case of HID
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/520e726b4e78101e73fa3d77cdcbc21d204a75a9
|
||||
520e726b4e78101e73fa3d77cdcbc21d204a75a9 kabi: change RH_KABI_REPLACE2 to RH_KABI_REPLACE_SPLIT
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7cf63f50f5b9ae31e570104118c88c7be0e0e730
|
||||
7cf63f50f5b9ae31e570104118c88c7be0e0e730 ARM: tegra: usb no reset
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7160868bd40d04e6d1a80f55d1bf9bb62ede0ba3
|
||||
7160868bd40d04e6d1a80f55d1bf9bb62ede0ba3 kabi: change RH_KABI_REPLACE_UNSAFE to RH_KABI_BROKEN_REPLACE
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/190a7fe4b8d9da0fed92118e52427a0b8695b6bf
|
||||
190a7fe4b8d9da0fed92118e52427a0b8695b6bf arm: make CONFIG_HIGHPTE optional without CONFIG_EXPERT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0b83063cf6c57dc20a80c35396fa425ec1963d53
|
||||
0b83063cf6c57dc20a80c35396fa425ec1963d53 kabi: introduce RH_KABI_ADD_MODIFIER
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5f1ce93157467613960a19d04cba6a4d3e1f64bb
|
||||
5f1ce93157467613960a19d04cba6a4d3e1f64bb s390: Lock down the kernel when the IPL secure flag is set
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d276c2393792e3eec80a73a4fe964f9ec11145a7
|
||||
d276c2393792e3eec80a73a4fe964f9ec11145a7 kabi: Include kconfig.h
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/1402cc3e1cd259e212ccb4da5ecc6a5a5fe8761a
|
||||
1402cc3e1cd259e212ccb4da5ecc6a5a5fe8761a efi: Lock down the kernel if booted in secure boot mode
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/28c30de9c771ff91994c9f0a42bdcc260fa97c2d
|
||||
28c30de9c771ff91994c9f0a42bdcc260fa97c2d kabi: macros for intentional kABI breakage
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/454c7cb119a8b0fd1f399bea10ce9d06d9c97f5d
|
||||
454c7cb119a8b0fd1f399bea10ce9d06d9c97f5d efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9b671c725ac69c47874321e5636e6541bb6d219d
|
||||
9b671c725ac69c47874321e5636e6541bb6d219d kabi: fix the note about terminating semicolon
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/eaec28ebc6824700a9ef2e1f9772c93be48d71ce
|
||||
eaec28ebc6824700a9ef2e1f9772c93be48d71ce security: lockdown: expose a hook to lock the kernel down
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6443eef17fb53f62886ecce519b6e12dd310e7f5
|
||||
6443eef17fb53f62886ecce519b6e12dd310e7f5 kabi: introduce RH_KABI_HIDE_INCLUDE and RH_KABI_FAKE_INCLUDE
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/39c9b9685a9ad33d7fe19c7814280248fafa8565
|
||||
39c9b9685a9ad33d7fe19c7814280248fafa8565 Make get_cert_list() use efi_status_to_str() to print error messages.
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/47746fc3837b476ec265e2a0c2aaa86de0d3994e
|
||||
47746fc3837b476ec265e2a0c2aaa86de0d3994e pci.h: Fix static include
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e50b13d02bf02acca2a5f944c826d043ec74a866
|
||||
e50b13d02bf02acca2a5f944c826d043ec74a866 Add efi_status_to_str() and rework efi_status_to_err().
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/67ce66385c6b619356c4030e6163c4fb18a50427
|
||||
67ce66385c6b619356c4030e6163c4fb18a50427 drivers/pci/pci-driver.c: Fix if/ifdef typo
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5efab4213b3203634ee8f08b2e0dbe0a9cf091d9
|
||||
5efab4213b3203634ee8f08b2e0dbe0a9cf091d9 arm: aarch64: Drop the EXPERT setting from ARM64_FORCE_52BIT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0dfd7feeadc964ef2a9d118218b54831381c8d7a
|
||||
0dfd7feeadc964ef2a9d118218b54831381c8d7a kernel/rh_taint.c: Update to new messaging
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/d577cd865bdaf04171801f1619615cb52d995215
|
||||
d577cd865bdaf04171801f1619615cb52d995215 iommu/arm-smmu: workaround DMA mode issues
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/35e5ee153637e59c9297c9cc8ba7f3960277ffc2
|
||||
35e5ee153637e59c9297c9cc8ba7f3960277ffc2 redhat: Add mark_driver_deprecated()
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/07eb4629143678ee0cf272870513ad273e278247
|
||||
07eb4629143678ee0cf272870513ad273e278247 ipmi: do not configure ipmi for HPE m400
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ff7aa8cae4c7e3e7bbc1bb5612efc2157c81fa7d
|
||||
ff7aa8cae4c7e3e7bbc1bb5612efc2157c81fa7d RHEL: disable io_uring support
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c7f50a0c49d8e1f4ab28c9ad0eca1fb0345eeaba
|
||||
c7f50a0c49d8e1f4ab28c9ad0eca1fb0345eeaba ahci: thunderx2: Fix for errata that affects stop engine
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/517351ed810bf2707e7fdb2ab22029aeb594db59
|
||||
517351ed810bf2707e7fdb2ab22029aeb594db59 bpf: Fix unprivileged_bpf_disabled setup
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f9128afc903a85159a0332041265292ffb7fd4d3
|
||||
f9128afc903a85159a0332041265292ffb7fd4d3 Vulcan: AHCI PCI bar fix for Broadcom Vulcan early silicon
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/48fe2e5f40c901e92d1f8c62bc97f58af4b0906a
|
||||
48fe2e5f40c901e92d1f8c62bc97f58af4b0906a nvme: nvme_mpath_init remove multipath check
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/47560d335fa890112f33b7b495bca3289e159bac
|
||||
47560d335fa890112f33b7b495bca3289e159bac tags.sh: Ignore redhat/rpm
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/1c9bd09f303e2c9d2c67fdc46604d94e00cbf67c
|
||||
1c9bd09f303e2c9d2c67fdc46604d94e00cbf67c wireguard: disable in FIPS mode
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/da18d4bd75995073c6db0062465862039c6940d3
|
||||
da18d4bd75995073c6db0062465862039c6940d3 aarch64: acpi scan: Fix regression related to X-Gene UARTs
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/57872981891fe8f3f7205daa4b78c8c0d676b171
|
||||
57872981891fe8f3f7205daa4b78c8c0d676b171 nvme: decouple basic ANA log page re-read support from native multipathing
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a82c2753a0fbe59211ea7fc9cb58ccec720290d6
|
||||
a82c2753a0fbe59211ea7fc9cb58ccec720290d6 ACPI / irq: Workaround firmware issue on X-Gene based m400
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0561f5953431ff471193611cd73af65dd394c8cd
|
||||
0561f5953431ff471193611cd73af65dd394c8cd nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/6d4e138de80d70d67e32788133f0f70ac344424a
|
||||
6d4e138de80d70d67e32788133f0f70ac344424a ACPI: APEI: arm64: Ignore broken HPE moonshot APEI support
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f801483d711fa5f83a0f9d4c479eeba702d1d477
|
||||
f801483d711fa5f83a0f9d4c479eeba702d1d477 nvme: Return BLK_STS_TARGET if the DNR bit is set
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/abe292baa49da177858a190966ee3cee7337ecef
|
||||
abe292baa49da177858a190966ee3cee7337ecef Pull the RHEL version defines out of the Makefile
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4f2bc09956ad4829d139e9d69b86ba8b9ebc66e2
|
||||
4f2bc09956ad4829d139e9d69b86ba8b9ebc66e2 REDHAT: coresight: etm4x: Disable coresight on HPE Apollo 70
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/65a21d545cc43328ea00fdbd62e7b45f375adce8
|
||||
65a21d545cc43328ea00fdbd62e7b45f375adce8 redhat: remove remaining references of CONFIG_RH_DISABLE_DEPRECATED
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/1c1b5380b0b56d3be978997b128f84aeb9906656
|
||||
1c1b5380b0b56d3be978997b128f84aeb9906656 arch/x86: Remove vendor specific CPU ID checks
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f7c032c856ba6379a77b76179d0352929d6039ec
|
||||
f7c032c856ba6379a77b76179d0352929d6039ec redhat: Replace hardware.redhat.com link in Unsupported message
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9a6eb49603959cf0aab0198e13946eaee07801c3
|
||||
9a6eb49603959cf0aab0198e13946eaee07801c3 x86: Fix compile issues with rh_check_supported()
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8a605436efddfa7dbc6e007b2881fa81f17968a5
|
||||
8a605436efddfa7dbc6e007b2881fa81f17968a5 KEYS: Make use of platform keyring for module signature verify
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c7c191f662438423a23592db42838ff550c2bdda
|
||||
c7c191f662438423a23592db42838ff550c2bdda Input: rmi4 - remove the need for artificial IRQ in case of HID
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4ae139284600cd6fef133ce7a981485ea73381ab
|
||||
4ae139284600cd6fef133ce7a981485ea73381ab ARM: tegra: usb no reset
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/8156e2102f753bbe0f0dd222a5f232e7f3d99883
|
||||
8156e2102f753bbe0f0dd222a5f232e7f3d99883 arm: make CONFIG_HIGHPTE optional without CONFIG_EXPERT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/823e733a88ddd21c735288dd3b08348e79872b91
|
||||
823e733a88ddd21c735288dd3b08348e79872b91 redhat: rh_kabi: deduplication friendly structs
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/61d2a751fe1b1305684d6c1899f26fa9e38ac0a9
|
||||
61d2a751fe1b1305684d6c1899f26fa9e38ac0a9 redhat: rh_kabi add a comment with warning about RH_KABI_EXCLUDE usage
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7d09cb3ea3dd2f3cda5a6a31be429f259106ca61
|
||||
7d09cb3ea3dd2f3cda5a6a31be429f259106ca61 redhat: rh_kabi: introduce RH_KABI_EXTEND_WITH_SIZE
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c0c51c6f123df02948e11680d9b90324593ba547
|
||||
c0c51c6f123df02948e11680d9b90324593ba547 redhat: rh_kabi: Indirect EXTEND macros so nesting of other macros will resolve.
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/96b20c70b39cd28efcec2336417cb0db9ff7853c
|
||||
96b20c70b39cd28efcec2336417cb0db9ff7853c redhat: rh_kabi: Fix RH_KABI_SET_SIZE to use dereference operator
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/198030a81d85dbac8f4030e69d3d376327433487
|
||||
198030a81d85dbac8f4030e69d3d376327433487 redhat: rh_kabi: Add macros to size and extend structs
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/695af00ed9e393abe88d9ee4de3702c15ded186d
|
||||
695af00ed9e393abe88d9ee4de3702c15ded186d Removing Obsolete hba pci-ids from rhel8
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/736038bd8039d1543468c1dc8925f20929645804
|
||||
736038bd8039d1543468c1dc8925f20929645804 mptsas: pci-id table changes
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/83cdf2924bdcc90c433a58129b4501e10b1295dc
|
||||
83cdf2924bdcc90c433a58129b4501e10b1295dc mptspi: pci-id table changes
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0b634d81ed7f0730e13d720508dbaa6ab94e54d2
|
||||
0b634d81ed7f0730e13d720508dbaa6ab94e54d2 qla2xxx: Remove PCI IDs of deprecated adapter
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/0d11491f9e7fe0c8c301db3256cb47c66ae8450f
|
||||
0d11491f9e7fe0c8c301db3256cb47c66ae8450f hpsa: remove old cciss-based smartarray pci ids
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/75f69a4f7b8f9d38c5efb0231186ed8726e526f2
|
||||
75f69a4f7b8f9d38c5efb0231186ed8726e526f2 kernel: add SUPPORT_REMOVED kernel taint
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/50081b0865239d853d77bc71e54d13fad8bac9f0
|
||||
50081b0865239d853d77bc71e54d13fad8bac9f0 Rename RH_DISABLE_DEPRECATED to RHEL_DIFFERENCES
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/dc84f3cc1b19a0524e58a382c382f34081dc6c35
|
||||
dc84f3cc1b19a0524e58a382c382f34081dc6c35 s390: Lock down the kernel when the IPL secure flag is set
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/cb55378c04d6516f303e98061ec7ddd6563429a8
|
||||
cb55378c04d6516f303e98061ec7ddd6563429a8 efi: Lock down the kernel if booted in secure boot mode
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9b06e1f07c3cc9e1d0533b8615426d4d5d9e4ebb
|
||||
9b06e1f07c3cc9e1d0533b8615426d4d5d9e4ebb efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/db249925c6802b38d910927e4d032af1e00bee56
|
||||
db249925c6802b38d910927e4d032af1e00bee56 security: lockdown: expose a hook to lock the kernel down
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f9604bcd305aba2a94e713ee758a51143687ae9f
|
||||
f9604bcd305aba2a94e713ee758a51143687ae9f Make get_cert_list() use efi_status_to_str() to print error messages.
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/b75eb3e922c93d78d4190a759f5725e856d35439
|
||||
b75eb3e922c93d78d4190a759f5725e856d35439 Add efi_status_to_str() and rework efi_status_to_err().
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/2f80042d6b8199fceadf3623243402066e0cd4ea
|
||||
2f80042d6b8199fceadf3623243402066e0cd4ea Add support for deprecating processors
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5a3b4f5754788e42db8ed550b359382b600f2b08
|
||||
5a3b4f5754788e42db8ed550b359382b600f2b08 arm: aarch64: Drop the EXPERT setting from ARM64_FORCE_52BIT
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/36cd5d0a0aa0a3be8ac385ca8991563c9e58227f
|
||||
36cd5d0a0aa0a3be8ac385ca8991563c9e58227f iommu/arm-smmu: workaround DMA mode issues
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ca34010e072550c8d5ea57f9436bab254c3521cc
|
||||
ca34010e072550c8d5ea57f9436bab254c3521cc rh_kabi: introduce RH_KABI_EXCLUDE
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/26054e2c4e2253fe955a351971dc6b931cb68961
|
||||
26054e2c4e2253fe955a351971dc6b931cb68961 ipmi: do not configure ipmi for HPE m400
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/9cb0f734492a21a7e506d7145caf143ccd927b2a
|
||||
9cb0f734492a21a7e506d7145caf143ccd927b2a kABI: Add generic kABI macros to use for kABI workarounds
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/4960e5ee4a0e9bb28e512eb35cfa633ac4552049
|
||||
4960e5ee4a0e9bb28e512eb35cfa633ac4552049 add pci_hw_vendor_status()
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/291c4e2878431fd6937c5b9248babe8ec8d4233e
|
||||
291c4e2878431fd6937c5b9248babe8ec8d4233e ahci: thunderx2: Fix for errata that affects stop engine
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/996869cc0b3e78cb9182a4ebced2c46ee2774935
|
||||
996869cc0b3e78cb9182a4ebced2c46ee2774935 Vulcan: AHCI PCI bar fix for Broadcom Vulcan early silicon
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/c1c7a887998ab12c5a1180c4bca3b41c31fe4aa6
|
||||
c1c7a887998ab12c5a1180c4bca3b41c31fe4aa6 bpf: set unprivileged_bpf_disabled to 1 by default, add a boot parameter
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e40c9d10474d1a5b5f7f01175a72ba4a3c7f5e8e
|
||||
e40c9d10474d1a5b5f7f01175a72ba4a3c7f5e8e add Red Hat-specific taint flags
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/f23f446b724fbb79c1e09a278fcb427fc29c0c05
|
||||
f23f446b724fbb79c1e09a278fcb427fc29c0c05 tags.sh: Ignore redhat/rpm
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a68aa65a20fba1908a7326e5321ce8bc39a9ae14
|
||||
a68aa65a20fba1908a7326e5321ce8bc39a9ae14 put RHEL info into generated headers
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/80937f1973d73fccdc75db4026fbed7cba16f489
|
||||
80937f1973d73fccdc75db4026fbed7cba16f489 aarch64: acpi scan: Fix regression related to X-Gene UARTs
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3362fd10fe075b48ff8af023da5643bc9477a4c6
|
||||
3362fd10fe075b48ff8af023da5643bc9477a4c6 ACPI / irq: Workaround firmware issue on X-Gene based m400
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/ffc66b174954abecfb360dcc3b98c3139ef12d96
|
||||
ffc66b174954abecfb360dcc3b98c3139ef12d96 modules: add rhelversion MODULE_INFO tag
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/7e469c23b8f648d79e8a0e82ee41cda0e50b2f19
|
||||
7e469c23b8f648d79e8a0e82ee41cda0e50b2f19 ACPI: APEI: arm64: Ignore broken HPE moonshot APEI support
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/a0f49117d038de2d4db4940f5f039addb2f7231d
|
||||
a0f49117d038de2d4db4940f5f039addb2f7231d Add Red Hat tainting
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/fa67c16e780ed355f9847da90e8055ad1175c238
|
||||
fa67c16e780ed355f9847da90e8055ad1175c238 Introduce CONFIG_RH_DISABLE_DEPRECATED
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/e7e1371803470a7840dc61da628cb912834ec149
|
||||
e7e1371803470a7840dc61da628cb912834ec149 Pull the RHEL version defines out of the Makefile
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/84d1d3e3d0c2c7ed1f571c8495bad3b4d97cfa8e
|
||||
84d1d3e3d0c2c7ed1f571c8495bad3b4d97cfa8e [initial commit] Add Red Hat variables in the top level makefile
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/78ed739b954ee75c5cf80ab730e19a11c5f2b9d6
|
||||
78ed739b954ee75c5cf80ab730e19a11c5f2b9d6 [initial commit] Add Red Hat variables in the top level makefile
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,10 @@ packages:
|
|||
depends-on:
|
||||
- modules-core
|
||||
- modules
|
||||
- name: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
depends-on:
|
||||
- modules-core
|
||||
|
||||
|
||||
rules:
|
||||
|
|
@ -19,6 +23,9 @@ rules:
|
|||
exact_pkg: True
|
||||
- .*test[^/]*.ko: modules-internal
|
||||
|
||||
- arch/x86/kvm/kvm(-amd|-intel|\.).*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
|
||||
- arch/.*: modules-core
|
||||
- crypto/.*: modules-core
|
||||
|
||||
|
|
@ -65,6 +72,8 @@ rules:
|
|||
- drivers/gpio/gpio-dln2.*: modules-extra
|
||||
- drivers/gpio/gpio-ljca.*: modules
|
||||
- drivers/gpio/.*: modules-core
|
||||
- drivers/gpu/drm/i915/kvmgt.*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
- drivers/gpu/drm/display/drm_.*: modules-core
|
||||
- drivers/gpu/drm/drm.*: modules-core
|
||||
- drivers/gpu/drm/etnaviv/.*: modules-core
|
||||
|
|
@ -243,6 +252,8 @@ rules:
|
|||
- drivers/powercap/intel_rapl_tpmi.*: modules
|
||||
- drivers/powercap/.*: modules-core
|
||||
- drivers/pps/.*: modules-core
|
||||
- drivers/ptp/ptp_kvm.*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
- drivers/ptp/ptp_mock.*: modules-internal
|
||||
- drivers/ptp/ptp_dfl_tod.*: modules
|
||||
- drivers/ptp/.*: modules-core
|
||||
|
|
|
|||
|
|
@ -12,6 +12,10 @@ packages:
|
|||
depends-on:
|
||||
- modules-core
|
||||
- modules
|
||||
- name: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
depends-on:
|
||||
- modules-core
|
||||
- name: modules-partner
|
||||
depends-on:
|
||||
- modules-core
|
||||
|
|
@ -22,6 +26,9 @@ rules:
|
|||
exact_pkg: True
|
||||
- .*test[^/]*.ko: modules-internal
|
||||
|
||||
- arch/x86/kvm/kvm(-amd|-intel|\.).*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
|
||||
- arch/.*: modules-core
|
||||
- block/t10-pi.ko: modules-core
|
||||
- crypto/.*: modules-core
|
||||
|
|
@ -71,6 +78,8 @@ rules:
|
|||
- drivers/gpio/gpio-dln2.*: modules-extra
|
||||
- drivers/gpio/gpio-ljca.*: modules
|
||||
- drivers/gpio/.*: modules-core
|
||||
- drivers/gpu/drm/i915/kvmgt.*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
- drivers/gpu/drm/display/drm_.*: modules-core
|
||||
- drivers/gpu/drm/drm.*: modules-core
|
||||
- drivers/gpu/drm/etnaviv/.*: modules-core
|
||||
|
|
@ -247,6 +256,8 @@ rules:
|
|||
- drivers/powercap/intel_rapl_tpmi.*: modules
|
||||
- drivers/powercap/.*: modules-core
|
||||
- drivers/pps/.*: modules-core
|
||||
- drivers/ptp/ptp_kvm.*: modules-rt-kvm
|
||||
if_variant_in: ["rt"]
|
||||
- drivers/ptp/ptp_mock.*: modules-internal
|
||||
- drivers/ptp/ptp_dfl_tod.*: modules
|
||||
- drivers/ptp/.*: modules-core
|
||||
|
|
|
|||
|
|
@ -27,16 +27,6 @@ dracutmodules+=" systemd-sysext "
|
|||
# modules: root disk integrity protection
|
||||
dracutmodules+=" systemd-veritysetup "
|
||||
|
||||
# modules: root creation and encryption
|
||||
dracutmodules+=" systemd-repart "
|
||||
# FIXME: remove this once RHEL-103385 is merged
|
||||
install_items+=" /usr/sbin/mkfs.vfat /usr/sbin/mkfs.ext4 /usr/sbin/mkfs.xfs "
|
||||
|
||||
# modules: FIPS
|
||||
dracutmodules+=" fips "
|
||||
# FIPS mode requires early crypto drivers test
|
||||
drivers+=" =crypto "
|
||||
|
||||
# drivers: virtual buses, pci
|
||||
drivers+=" virtio-pci virtio-mmio " # qemu-kvm
|
||||
drivers+=" hv-vmbus pci-hyperv " # hyperv
|
||||
|
|
|
|||
|
|
@ -823,12 +823,11 @@ class FiltermodTests(unittest.TestCase):
|
|||
do_pictures=FiltermodTests.do_pictures,
|
||||
variants=['rt'])
|
||||
|
||||
self.assertIsNotNone(self.pkg_list.get('modules-other'))
|
||||
self.assertIsNotNone(self.pkg_list.get('rt-kvm'))
|
||||
self._is_kmod_pkg('kmod1', 'modules-core')
|
||||
self._is_kmod_pkg('kmod2', 'modules-core')
|
||||
self._is_kmod_pkg('kmod3', 'modules')
|
||||
self._is_kmod_pkg('kmod4', 'modules-other')
|
||||
|
||||
self._is_kmod_pkg('kmod4', 'rt-kvm')
|
||||
|
||||
def test2(self):
|
||||
self.pkg_list, self.kmod_list = sort_kmods(get_td('test2.dep'), get_td('test2.yaml'),
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
7021
kernel.changelog
7021
kernel.changelog
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +0,0 @@
|
|||
sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md
|
||||
kernel.@SBAT_SUFFIX,1,Red Hat,kernel-core,@KVER,mailto:secalert@redhat.com
|
||||
5149
kernel.spec
5149
kernel.spec
File diff suppressed because it is too large
Load diff
5181
patch-6.14-redhat.patch
Normal file
5181
patch-6.14-redhat.patch
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,24 +1,20 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# This script takes the merged config files and processes them through olddefconfig
|
||||
# and listnewconfig to ensure kernel configurations are valid and complete.
|
||||
# This script takes the merged config files and processes them through oldconfig
|
||||
# and listnewconfig
|
||||
#
|
||||
# Globally disable suggestion of appending '|| exit' or '|| return' to cd/pushd/popd commands
|
||||
# shellcheck disable=SC2164
|
||||
|
||||
# Exit if this is a test environment
|
||||
test -n "$RHTEST" && exit 0
|
||||
|
||||
# Display usage information and available command line options
|
||||
usage()
|
||||
{
|
||||
# alphabetical order please
|
||||
echo "process_configs.sh [ options ] package_name kernel_version"
|
||||
echo " -a: report all errors, equivalent to [-c -n -w -i]"
|
||||
echo " -c: error on mismatched config options"
|
||||
echo " -i: ignore any errors, but print them"
|
||||
echo " -m: specify make options (e.g., -m CC=clang, -m LLVM=1)"
|
||||
echo " -M: commit mismatched configs to pending directory"
|
||||
echo " -i: continue on error"
|
||||
echo " -n: error on unset config options"
|
||||
echo " -t: test run, do not overwrite original config"
|
||||
echo " -w: error on misconfigured config options"
|
||||
|
|
@ -37,9 +33,6 @@ die()
|
|||
exit 1
|
||||
}
|
||||
|
||||
# Determine the correct cross-compiler prefix based on compiler type
|
||||
# For clang builds, return the architecture directly
|
||||
# For GCC builds, use the dummy-tools directory
|
||||
get_cross_compile()
|
||||
{
|
||||
arch=$1
|
||||
|
|
@ -50,8 +43,7 @@ get_cross_compile()
|
|||
fi
|
||||
}
|
||||
|
||||
# Find the top-level kernel source directory
|
||||
# (identified by MAINTAINERS file and drivers directory)
|
||||
# stupid function to find top of tree to do kernel make configs
|
||||
switch_to_toplevel()
|
||||
{
|
||||
path="$(pwd)"
|
||||
|
|
@ -68,124 +60,11 @@ switch_to_toplevel()
|
|||
echo "$path"
|
||||
}
|
||||
|
||||
# Determine the correct config path based on architecture and variant
|
||||
# This function maps arch/variant combinations to the proper pending directory
|
||||
determine_config_path()
|
||||
{
|
||||
local arch="$1"
|
||||
local variant="$2"
|
||||
local config_path=""
|
||||
|
||||
# Identify the variant - they have their own top-level directories
|
||||
if [[ "$variant" == *"rt"* ]]; then
|
||||
# RT variant - goes under rt/
|
||||
if [[ "$variant" == *"debug"* ]]; then
|
||||
config_path="rt/debug"
|
||||
else
|
||||
config_path="rt/generic"
|
||||
fi
|
||||
elif [[ "$variant" == *"automotive"* ]]; then
|
||||
# Automotive variant - goes under automotive/
|
||||
if [[ "$variant" == *"debug"* ]]; then
|
||||
config_path="automotive/debug"
|
||||
else
|
||||
config_path="automotive/generic"
|
||||
fi
|
||||
else
|
||||
# Stock kernel - goes under top-level debug or generic
|
||||
if [[ "$variant" == *"debug"* ]]; then
|
||||
config_path="debug"
|
||||
else
|
||||
config_path="generic"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Add architecture-specific subdirectories
|
||||
case "$arch" in
|
||||
arm64)
|
||||
config_path="$config_path/arm/aarch64"
|
||||
;;
|
||||
powerpc)
|
||||
config_path="$config_path/powerpc"
|
||||
;;
|
||||
riscv)
|
||||
config_path="$config_path/riscv/riscv64"
|
||||
;;
|
||||
s390)
|
||||
if [[ "$variant" == *"zfcpdump"* ]]; then
|
||||
config_path="$config_path/s390x/zfcpdump"
|
||||
else
|
||||
config_path="$config_path/s390x"
|
||||
fi
|
||||
;;
|
||||
x86_64)
|
||||
config_path="$config_path/x86"
|
||||
;;
|
||||
*)
|
||||
# For unknown architectures, don't add arch subdirectory
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "$config_path"
|
||||
}
|
||||
|
||||
# Parse mismatched configs found during processing and create
|
||||
# individual CONFIG files in the pending directory for each
|
||||
parse_mismatched_configs()
|
||||
{
|
||||
local tmpdir
|
||||
local count=$1 # Counter for unique filenames
|
||||
local arch=$2
|
||||
local variant=$3
|
||||
|
||||
tmpdir=$(mktemp -d)
|
||||
|
||||
# Parse the mismatches file and create individual CONFIG files
|
||||
tail -n +2 .mismatches"${count}" | while read -r LINE
|
||||
do
|
||||
if echo "$LINE" | grep -q "Found # .* is not set, after generation"; then
|
||||
# Handle case where we found "# CONFIG_FOO is not set" after generation
|
||||
config_name="${LINE#*Found # }"
|
||||
config_name="${config_name% is not set, after generation*}"
|
||||
if [ -n "$config_name" ]; then
|
||||
echo "# Mismatch found in $arch $variant config" > "$tmpdir/$config_name"
|
||||
echo "# $config_name is not set" >> "$tmpdir/$config_name"
|
||||
fi
|
||||
elif echo "$LINE" | grep -q "Found .* after generation"; then
|
||||
# Handle case where we found "CONFIG_FOO=value" after generation
|
||||
config_name="${LINE#*Found }"
|
||||
config_name="${config_name% after generation*}"
|
||||
config_name="${config_name%=*}"
|
||||
config_value="${LINE#*Found }"
|
||||
config_value="${config_value#*=}"
|
||||
config_value="${config_value% after generation*}"
|
||||
if [ -n "$config_name" ] && [ -n "$config_value" ]; then
|
||||
echo "# Mismatch found in $arch $variant config" > "$tmpdir/$config_name"
|
||||
echo "$config_name=$config_value" >> "$tmpdir/$config_name"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# Copy the CONFIG files to the pending directory
|
||||
config_path=$(determine_config_path "$arch" "$variant")
|
||||
mkdir -p "$SCRIPT_DIR/pending-$FLAVOR/$config_path/"
|
||||
for f in "$tmpdir"/*; do
|
||||
[[ -e "$f" ]] || break
|
||||
cp "$f" "$SCRIPT_DIR/pending-$FLAVOR/$config_path/"
|
||||
done
|
||||
|
||||
rm -rf "$tmpdir"
|
||||
}
|
||||
|
||||
# Check for configuration mismatches between the original and generated configs
|
||||
checkoptions()
|
||||
{
|
||||
cfg=$1 # Original config file
|
||||
cfgtmp=$2 # Generated config file
|
||||
count=$3 # Counter for unique filenames
|
||||
variant=$4 # Config variant (e.g., debug, rt)
|
||||
count=$3
|
||||
variant=$4
|
||||
|
||||
# This awk script compares configuration files for mismatches
|
||||
/usr/bin/awk '
|
||||
|
||||
/is not set/ {
|
||||
|
|
@ -208,7 +87,7 @@ checkoptions()
|
|||
print "Found "a[1]"="a[2]" after generation, had " a[1]"="configs[a[1]]" in Source tree";
|
||||
}
|
||||
}
|
||||
' "$cfg" "$cfgtmp" > .mismatches"${count}"
|
||||
' "$1" "$2" > .mismatches"${count}"
|
||||
|
||||
checkoptions_error=false
|
||||
if test -s .mismatches"${count}"
|
||||
|
|
@ -228,18 +107,11 @@ checkoptions()
|
|||
! $checkoptions_error && return
|
||||
|
||||
sed -i "1s/^/Error: Mismatches found in configuration files for ${arch} ${variant}\n/" .mismatches"${count}"
|
||||
|
||||
# Add mismatched configs to the pending directory
|
||||
if test -n "$COMMITMISMATCHES"; then
|
||||
parse_mismatched_configs "$count" "$arch" "$variant"
|
||||
fi
|
||||
else
|
||||
rm -f .mismatches"${count}"
|
||||
fi
|
||||
}
|
||||
|
||||
# Parse the output of 'make listnewconfig' and 'make helpnewconfig'
|
||||
# to create properly formatted configuration files for new configs
|
||||
parsenewconfigs()
|
||||
{
|
||||
tmpdir=$(mktemp -d)
|
||||
|
|
@ -282,14 +154,12 @@ parsenewconfigs()
|
|||
split($0, a, " ");
|
||||
symbol="CONFIG_"a[2];
|
||||
outfile=BASE "/fake_"symbol
|
||||
print "# ~~~" >> outfile;
|
||||
}
|
||||
/-----/ {
|
||||
if (inpatch == 0) {
|
||||
inpatch = 1;
|
||||
}
|
||||
else {
|
||||
print "# ~~~" >> outfile;
|
||||
if (symbol != "none") {
|
||||
print "# Commit: "commit >> outfile
|
||||
system("cat " outfile " " BASE "/" symbol " > " BASE "/tmpf");
|
||||
|
|
@ -324,32 +194,12 @@ parsenewconfigs()
|
|||
popd &> /dev/null
|
||||
for f in "$tmpdir"/*; do
|
||||
[[ -e "$f" ]] || break
|
||||
cp "$f" "$SCRIPT_DIR/pending-$FLAVOR/generic/"
|
||||
cp "$f" "$SCRIPT_DIR/pending$FLAVOR/generic/"
|
||||
done
|
||||
|
||||
rm -rf "$tmpdir"
|
||||
}
|
||||
|
||||
# Commit any mismatched configs that were saved to the pending directory
|
||||
commit_mismatched_configs()
|
||||
{
|
||||
# assume we are in $source_tree/configs, need to get to top level
|
||||
pushd "$(switch_to_toplevel)" &>/dev/null
|
||||
|
||||
# Check if there are any modified or untracked mismatched configs to commit
|
||||
if git status --porcelain "$SCRIPT_DIR/pending-$FLAVOR/" | grep -q .; then
|
||||
echo "Committing mismatched configuration files..."
|
||||
git add "$SCRIPT_DIR/pending-$FLAVOR"
|
||||
git commit -m "[redhat] AUTOMATIC: Mismatched $FLAVOR configs"
|
||||
echo "Mismatched configs committed to pending-$FLAVOR directory"
|
||||
else
|
||||
echo "No mismatched configs found to commit"
|
||||
fi
|
||||
|
||||
popd &>/dev/null
|
||||
}
|
||||
|
||||
# Processes all config files, finds new/unset configs, and commits them
|
||||
function commit_new_configs()
|
||||
{
|
||||
# assume we are in $source_tree/configs, need to get to top level
|
||||
|
|
@ -382,13 +232,10 @@ function commit_new_configs()
|
|||
echo "done"
|
||||
done
|
||||
|
||||
# Commit the new configuration files to git
|
||||
git add "$SCRIPT_DIR/pending-$FLAVOR"
|
||||
# DO NOT CHANGE THIS MESSAGE! gen_config_patches.sh looks for this commit message.
|
||||
git add "$SCRIPT_DIR/pending$FLAVOR"
|
||||
git commit -m "[redhat] AUTOMATIC: New configs"
|
||||
}
|
||||
|
||||
# Process a single configuration file
|
||||
function process_config()
|
||||
{
|
||||
local cfg
|
||||
|
|
@ -458,13 +305,16 @@ function process_config()
|
|||
echo "Processing $cfg complete"
|
||||
}
|
||||
|
||||
# Process all configuration files
|
||||
# Handles parallel processing and error reporting
|
||||
function process_configs()
|
||||
{
|
||||
# assume we are in $source_tree/configs, need to get to top level
|
||||
pushd "$(switch_to_toplevel)" &>/dev/null
|
||||
|
||||
# The next line is throwaway code for transition to parallel
|
||||
# processing. Leaving this line in place is harmless, but it can be
|
||||
# removed the next time anyone updates this function.
|
||||
[ -f .mismatches ] && rm -f .mismatches
|
||||
|
||||
count=0
|
||||
for cfg in "$SCRIPT_DIR/${SPECPACKAGE_NAME}${KVERREL}"*.config
|
||||
do
|
||||
|
|
@ -490,13 +340,7 @@ function process_configs()
|
|||
cat .errors*
|
||||
rm .errors* -f
|
||||
fi
|
||||
|
||||
# Commit any mismatched configs found during processing
|
||||
if [ $RETURNCODE -eq 0 ] && test -n "$COMMITMISMATCHES"; then
|
||||
rm .mismatches* -f
|
||||
commit_mismatched_configs
|
||||
# Otherwise, display any mismatched configs
|
||||
elif ls .mismatches* 1> /dev/null 2>&1; then
|
||||
if ls .mismatches* 1> /dev/null 2>&1; then
|
||||
RETURNCODE=1
|
||||
cat .mismatches*
|
||||
rm .mismatches* -f
|
||||
|
|
@ -508,13 +352,11 @@ function process_configs()
|
|||
}
|
||||
|
||||
CHECKOPTIONS=""
|
||||
IGNOREERRORS=""
|
||||
NEWOPTIONS=""
|
||||
TESTRUN=""
|
||||
CHECKWARNINGS=""
|
||||
MAKEOPTS=""
|
||||
CC_IS_CLANG=0
|
||||
COMMITMISMATCHES=""
|
||||
|
||||
RETURNCODE=0
|
||||
|
||||
|
|
@ -523,9 +365,7 @@ do
|
|||
key="$1"
|
||||
case $key in
|
||||
-a)
|
||||
# Enable all error checking options
|
||||
CHECKOPTIONS="x"
|
||||
IGNOREERRORS="x"
|
||||
NEWOPTIONS="x"
|
||||
CHECKWARNINGS="x"
|
||||
;;
|
||||
|
|
@ -535,9 +375,6 @@ do
|
|||
-h)
|
||||
usage
|
||||
;;
|
||||
-i)
|
||||
IGNOREERRORS="x"
|
||||
;;
|
||||
-n)
|
||||
NEWOPTIONS="x"
|
||||
;;
|
||||
|
|
@ -552,16 +389,11 @@ do
|
|||
;;
|
||||
-m)
|
||||
shift
|
||||
# Handle clang compiler options
|
||||
if [ "$1" = "CC=clang" ] || [ "$1" = "LLVM=1" ]; then
|
||||
CC_IS_CLANG=1
|
||||
fi
|
||||
MAKEOPTS="$MAKEOPTS $1"
|
||||
;;
|
||||
-M)
|
||||
COMMITMISMATCHES="x"
|
||||
CHECKOPTIONS="x"
|
||||
;;
|
||||
*)
|
||||
break;;
|
||||
esac
|
||||
|
|
@ -569,11 +401,17 @@ do
|
|||
done
|
||||
|
||||
KVERREL="$(test -n "$1" && echo "-$1" || echo "")"
|
||||
FLAVOR="$(test -n "$2" && echo "$2" || echo "rhel")"
|
||||
FLAVOR="$(test -n "$2" && echo "-$2" || echo "-rhel")"
|
||||
# shellcheck disable=SC2015
|
||||
SCRIPT=$(readlink -f "$0")
|
||||
SCRIPT_DIR=$(dirname "$SCRIPT")
|
||||
|
||||
# Config options for RHEL should target the pending-rhel directory, not pending-common.
|
||||
if [ "$FLAVOR" = "-rhel" ]
|
||||
then
|
||||
FLAVOR="-rhel"
|
||||
fi
|
||||
|
||||
# to handle this script being a symlink
|
||||
cd "$SCRIPT_DIR"
|
||||
|
||||
|
|
@ -583,8 +421,4 @@ else
|
|||
process_configs
|
||||
fi
|
||||
|
||||
if test -n "$IGNOREERRORS"; then
|
||||
exit 0
|
||||
else
|
||||
exit $RETURNCODE
|
||||
fi
|
||||
exit $RETURNCODE
|
||||
|
|
|
|||
|
|
@ -15,31 +15,15 @@ emptyrpm:
|
|||
- kernel-debug
|
||||
- kernel-debug-devel-matched
|
||||
- kernel-devel-matched
|
||||
- kernel-modules-extra-matched
|
||||
- kernel-lpae
|
||||
- kernel-zfcpdump
|
||||
- kernel-zfcpdump-devel-matched
|
||||
- kernel-zfcpdump-modules
|
||||
- kernel-zfcpdump-modules-partner
|
||||
- kernel-rt
|
||||
- kernel-rt-debug
|
||||
- kernel-rt-debug-devel-matched
|
||||
- kernel-rt-devel-matched
|
||||
- kernel-rt-modules-extra-matched
|
||||
- kernel-64k
|
||||
- kernel-64k-debug
|
||||
- kernel-64k-debug-devel-matched
|
||||
- kernel-64k-devel-matched
|
||||
- kernel-64k-modules-extra-matched
|
||||
- kernel-rt-64k
|
||||
- kernel-rt-64k-debug
|
||||
- kernel-rt-64k-debug-devel-matched
|
||||
- kernel-rt-64k-devel-matched
|
||||
- kernel-rt-64k-modules-extra-matched
|
||||
|
||||
patches:
|
||||
ignore_list:
|
||||
- linux-kernel-test.patch
|
||||
- patch-6.19-redhat.patch
|
||||
- patch-6.14-redhat.patch
|
||||
|
||||
runpath:
|
||||
ignore:
|
||||
|
|
|
|||
8
sources
8
sources
|
|
@ -1,3 +1,5 @@
|
|||
SHA512 (linux-6.19-rc5.tar.xz) = d61ec1e68ee22b58a0e335e8a349e8c8a3d59219264d6f769d36c50f9a013e4bdf8b39481aa6dee575df62e60841ba687fccb7a82f99b9b005a09008927cb57e
|
||||
SHA512 (kernel-abi-stablelists-6.19.0.tar.xz) = 467b85c3bb413e713a2e1500060fe4f4ba6934cc5a28294a5952e4452baecf997e246317b09a34f7bece1daf26a4d4f40a95557ac843ec30d218c854f576516b
|
||||
SHA512 (kernel-kabi-dw-6.19.0.tar.xz) = 7a698cf2b133314dcbe1452a16859aa0af35d486af939b6c72b6d3e88692718900c61b79e31052342075fb74ee61581f19a5f8f1bac3e1813737f6336b84efe4
|
||||
SHA512 (kernel-abi-stablelists-6.6.0.tar.bz2) = 4f917598056dee5e23814621ec96ff2e4a411c8c4ba9d56ecb01b23cb96431825bedbecfcbaac9338efbf5cb21694d85497fa0bf43e7c80d9cd10bc6dd144dbd
|
||||
SHA512 (kernel-kabi-dw-6.6.0.tar.bz2) = 19308cd976031d05e18ef7f5d093218acdb89446418bab0cd956ff12cf66369915b9e64bb66fa9f20939428a60e81884fec5be3529c6c7461738d6540d3cc5c6
|
||||
SHA512 (linux-6.14.6.tar.xz) = d6a37b20c83283a69e4297271f5a24ace31e0ef9ab45c48a45fe0b203532e2d2a718205c1938bb3ed439be9502fd3699fd514bbf4e124ffd12612a5a4f3a55d7
|
||||
SHA512 (kernel-abi-stablelists-6.14.6.tar.xz) = ddcb93259337723229a5b95743b2333796c43eb016d84d000a933bb668df929e71288a3108888d327f37aac5f06b3995212ad8073d0aa9fbd862f6d2360e5215
|
||||
SHA512 (kernel-kabi-dw-6.14.6.tar.xz) = 9ef50b2a445d34fdd8c3d7660e645b959505904208a39d9509093f16dc9051663e4683dff85092b9215a0eb0fe22cfd3d07146a60d56e1a0c6731a3ec7e6505d
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md
|
||||
kernel-uki-virt-addons.@SBAT_SUFFIX,1,Red Hat,kernel-uki-virt-addons,@KVER,mailto:secalert@redhat.com
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md
|
||||
kernel-uki-virt.@SBAT_SUFFIX,1,Red Hat,kernel-uki-virt,@KVER,mailto:secalert@redhat.com
|
||||
|
|
@ -23,9 +23,6 @@
|
|||
],
|
||||
"debug.addon": [
|
||||
"debug"
|
||||
],
|
||||
"systemd-volatile-overlay.addon": [
|
||||
"systemd.volatile=overlay"
|
||||
]
|
||||
},
|
||||
"virt": {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# creates an addon for each key/value pair matching the given uki, distro and
|
||||
# arch provided in input.
|
||||
#
|
||||
# Usage: python uki_create_addons.py input_json out_dir uki distro arch [sbat]
|
||||
# Usage: python uki_create_addons.py input_json out_dir uki distro arch
|
||||
#
|
||||
# This tool requires the systemd-ukify and systemd-boot packages.
|
||||
#
|
||||
|
|
@ -26,6 +26,14 @@
|
|||
# json['virt']['common']['test.addon'] = ['test2'], any other uki except virt
|
||||
# will have a test.addon.efi with text "test1", and virt will have a
|
||||
# test.addon.efi with "test2"
|
||||
#
|
||||
# sbat.conf
|
||||
#----------
|
||||
# This dict is containing the sbat string for *all* addons being created.
|
||||
# This dict is optional, but when used has to be put in a sub-dict with
|
||||
# { 'sbat' : { 'sbat.conf' : ['your text here'] }}
|
||||
# It follows the same syntax as the addon files, meaning '#' is comment and
|
||||
# the rest is taken as sbat string and feed to ukify.
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
@ -37,7 +45,7 @@ import subprocess
|
|||
UKIFY_PATH = '/usr/lib/systemd/ukify'
|
||||
|
||||
def usage(err):
|
||||
print(f'Usage: {os.path.basename(__file__)} input_json output_dir uki distro arch [sbat]')
|
||||
print(f'Usage: {os.path.basename(__file__)} input_json output_dir uki distro arch')
|
||||
print(f'Error:{err}')
|
||||
sys.exit(1)
|
||||
|
||||
|
|
@ -54,8 +62,9 @@ def check_clean_arguments(input_json, out_dir):
|
|||
UKICmdlineAddon = collections.namedtuple('UKICmdlineAddon', ['name', 'cmdline'])
|
||||
uki_addons_list = []
|
||||
uki_addons = {}
|
||||
addon_sbat_string = None
|
||||
|
||||
def parse_lines(lines):
|
||||
def parse_lines(lines, rstrip=True):
|
||||
cmdline = ''
|
||||
for l in lines:
|
||||
l = l.lstrip()
|
||||
|
|
@ -63,17 +72,27 @@ def parse_lines(lines):
|
|||
continue
|
||||
if l[0] == '#':
|
||||
continue
|
||||
cmdline += l.rstrip() + ' '
|
||||
# rstrip is used only for addons cmdline, not sbat.conf, as it replaces
|
||||
# return lines with spaces.
|
||||
if rstrip:
|
||||
l = l.rstrip() + ' '
|
||||
cmdline += l
|
||||
if cmdline == '':
|
||||
return ''
|
||||
return cmdline
|
||||
|
||||
def parse_all_addons(in_obj):
|
||||
global addon_sbat_string
|
||||
|
||||
for el in in_obj.keys():
|
||||
# addon found: copy it in our global dict uki_addons
|
||||
if el.endswith('.addon'):
|
||||
uki_addons[el] = in_obj[el]
|
||||
|
||||
if 'sbat' in in_obj and 'sbat.conf' in in_obj['sbat']:
|
||||
# sbat.conf found: override sbat with the most specific one found
|
||||
addon_sbat_string = parse_lines(in_obj['sbat']['sbat.conf'], rstrip=False)
|
||||
|
||||
def recursively_find_addons(in_obj, folder_list):
|
||||
# end of recursion, leaf directory. Search all addons here
|
||||
if len(folder_list) == 0:
|
||||
|
|
@ -102,21 +121,21 @@ def parse_in_json(in_json, uki_name, distro, arch):
|
|||
if cmdline:
|
||||
uki_addons_list.append(UKICmdlineAddon(addon_full_name, cmdline))
|
||||
|
||||
def create_addons(out_dir, sbat):
|
||||
def create_addons(out_dir):
|
||||
for uki_addon in uki_addons_list:
|
||||
out_path = os.path.join(out_dir, uki_addon.name)
|
||||
cmd = [
|
||||
f'{UKIFY_PATH}', 'build',
|
||||
'--cmdline', uki_addon.cmdline,
|
||||
'--output', out_path]
|
||||
if sbat:
|
||||
cmd.extend(['--sbat', sbat.rstrip()])
|
||||
if addon_sbat_string:
|
||||
cmd.extend(['--sbat', addon_sbat_string.rstrip()])
|
||||
|
||||
subprocess.check_call(cmd, text=True)
|
||||
|
||||
if __name__ == "__main__":
|
||||
argc = len(sys.argv) - 1
|
||||
if argc < 5 or argc > 6:
|
||||
if argc != 5:
|
||||
usage('too few or too many parameters!')
|
||||
|
||||
input_json = sys.argv[1]
|
||||
|
|
@ -125,12 +144,8 @@ if __name__ == "__main__":
|
|||
distro = sys.argv[4]
|
||||
arch = sys.argv[5]
|
||||
|
||||
custom_sbat = None
|
||||
if argc == 6:
|
||||
custom_sbat = sys.argv[6]
|
||||
|
||||
out_dir = check_clean_arguments(input_json, out_dir)
|
||||
parse_in_json(input_json, uki_name, distro, arch)
|
||||
create_addons(out_dir, custom_sbat)
|
||||
create_addons(out_dir)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue