-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernel.changelog
More file actions
6254 lines (6207 loc) · 413 KB
/
kernel.changelog
File metadata and controls
6254 lines (6207 loc) · 413 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* Wed Apr 08 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc7.3036cd0d3328.56]
- Remove stale config items (Justin M. Forbes)
- redhat/configs: enable CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT (David Arcari)
- Turn on CONFIG_PREEMPT_LAZY for all arches (Justin M. Forbes)
- redhat: selftests/bpf: Add cpuv4 variant (Viktor Malik)
- redhat/configs: automotive: enable CONFIG_INIT_STACK_ALL_ZERO (Joe Simmons-Talbott)
- Turn om SND_SOC_TAS2781_I2C=m for x86_64 (Justin M. Forbes)
- Fix mismatch for CONFIG_POWER_SEQUENCING (Justin M. Forbes)
- scriptlets: exit 0 on explicit exits (Adam Williamson)
- Work around binutils update in s390x perf (Justin M. Forbes)
- Linux v7.0.0-0.rc7.3036cd0d3328
Resolves:
* Tue Apr 07 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc7.bfe62a454542.55]
- Linux v7.0.0-0.rc7.bfe62a454542
Resolves:
* Mon Apr 06 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc7.54]
- Linux v7.0.0-0.rc7
Resolves:
* Sun Apr 05 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.3aae9383f42f.53]
- Linux v7.0.0-0.rc6.3aae9383f42f
Resolves:
* Sat Apr 04 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.7ca6d1cfec80.52]
- Linux v7.0.0-0.rc6.7ca6d1cfec80
Resolves:
* Fri Apr 03 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.d8a9a4b11a13.51]
- Linux v7.0.0-0.rc6.d8a9a4b11a13
Resolves:
* Wed Apr 01 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.9147566d8016.50]
- Linux v7.0.0-0.rc6.9147566d8016
Resolves:
* Tue Mar 31 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.d0c3bcd5b897.49]
- Linux v7.0.0-0.rc6.d0c3bcd5b897
Resolves:
* Mon Mar 30 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc6.48]
- redhat/configs: Centralize iommu debugfs options, and enable amd iommu debugfs (Jerry Snitselaar)
- Linux v7.0.0-0.rc6
Resolves:
* Sun Mar 29 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.cbfffcca2bf0.47]
- Linux v7.0.0-0.rc5.cbfffcca2bf0
Resolves:
* Sat Mar 28 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.be762d8b6dd7.46]
- fedora: arm64: Make qcom geni i2c-adapter and i2c-hid-of drivers builtin (Hans de Goede)
- Linux v7.0.0-0.rc5.be762d8b6dd7
Resolves:
* Fri Mar 27 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.46b513250491.45]
- Linux v7.0.0-0.rc5.46b513250491
Resolves:
* Thu Mar 26 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.0138af2472df.44]
- Linux v7.0.0-0.rc5.0138af2472df
Resolves:
* Wed Mar 25 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.bbeb83d3182a.43]
- redhat/spec: Re-enable gdb index for riscv cross-compile (Jennifer Berringer)
- redhat/kernel.spec: add aarch64 to fedora secure boot list (Jeremy Cline)
- Linux v7.0.0-0.rc5.bbeb83d3182a
Resolves:
* Mon Mar 23 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc5.42]
- Linux v7.0.0-0.rc5
Resolves:
* Sun Mar 22 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.113ae7b4decc.41]
- Linux v7.0.0-0.rc4.113ae7b4decc
Resolves:
* Sat Mar 21 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.a0c83177734a.40]
- Turn on ASUS_ARMOURY driver, fixes RHBZ 2433246 (Justin M. Forbes)
- Turn on Uniwill x86 platform driver (Justin M. Forbes)
- Turn on GPIB for Fedora (Justin M. Forbes)
- Fix up RHEL pending CONFIG_PREEMPT configs for 7.0 (Justin M. Forbes)
- Fix up Fedora configs for 7.0 (Justin M. Forbes)
- Linux v7.0.0-0.rc4.a0c83177734a
Resolves:
* Fri Mar 20 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.0e4f8f1a3d08.39]
- Linux v7.0.0-0.rc4.0e4f8f1a3d08
Resolves:
* Thu Mar 19 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.8a30aeb0d1b4.38]
- redhat/configs: enable CONFIG_LIVEUPDATE for fedora (Luca Boccassi)
- Linux v7.0.0-0.rc4.8a30aeb0d1b4
Resolves:
* Wed Mar 18 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.a989fde763f4.37]
- Linux v7.0.0-0.rc4.a989fde763f4
Resolves:
* Tue Mar 17 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.2d1373e4246d.36]
- Linux v7.0.0-0.rc4.2d1373e4246d
Resolves:
* Mon Mar 16 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc4.35]
- Linux v7.0.0-0.rc4
Resolves:
* Sun Mar 15 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.267594792a71.34]
- Linux v7.0.0-0.rc3.267594792a71
Resolves:
* Sat Mar 14 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.1c9982b49613.33]
- Linux v7.0.0-0.rc3.1c9982b49613
Resolves:
* Fri Mar 13 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.0257f64bdac7.32]
- redhat: genlog: add new JIRA cloud server hostname (Jan Stancek)
- Linux v7.0.0-0.rc3.0257f64bdac7
Resolves:
* Thu Mar 12 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.80234b5ab240.31]
- redhat/configs: remove CONFIG_ZBUD (Rafael Aquini)
- Linux v7.0.0-0.rc3.80234b5ab240
Resolves:
* Wed Mar 11 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.b29fb8829bff.30]
- Linux v7.0.0-0.rc3.b29fb8829bff
Resolves:
* Tue Mar 10 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.29]
- redhat/configs: automotive: enable USB_CHIPIDEA_IMX (Jared Kangas)
Resolves:
* Mon Mar 09 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc3.28]
- Linux v7.0.0-0.rc3
Resolves:
* Sun Mar 08 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.c23719abc330.27]
- Linux v7.0.0-0.rc2.c23719abc330
Resolves:
* Sat Mar 07 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.4ae12d8bd9a8.26]
- Linux v7.0.0-0.rc2.4ae12d8bd9a8
Resolves:
* Fri Mar 06 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.5ee8dbf54602.25]
- Linux v7.0.0-0.rc2.5ee8dbf54602
Resolves:
* Thu Mar 05 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.c107785c7e8d.24]
- Linux v7.0.0-0.rc2.c107785c7e8d
Resolves:
* Wed Mar 04 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.0031c06807cf.23]
- Linux v7.0.0-0.rc2.0031c06807cf
Resolves:
* Tue Mar 03 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.af4e9ef3d784.22]
- redhat/configs: automotive: enable NVMEM_S32G_OCOTP (Jared Kangas)
- redhat/scripts: remove remnants of git notes usage and dead code (Jan Stancek)
- New configs in fs/smb (Fedora Kernel Team)
- Linux v7.0.0-0.rc2.af4e9ef3d784
Resolves:
* Mon Mar 02 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc2.21]
- Add signing key for Nvidia Bluefield GPU (Enrique Belarte Luque)
- Linux v7.0.0-0.rc2
Resolves:
* Sun Mar 01 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.eb71ab2bf722.20]
- [gitlab-ci] delay start rawhide clang pipelines by 3 mins. (Simone Tollardo)
- fedora: Updates for the 7.0 merge (Peter Robinson)
- fedora: disable Kaanapali by default (Peter Robinson)
- fedora: minor beeper cleanups (Peter Robinson)
- Linux v7.0.0-0.rc1.eb71ab2bf722
Resolves:
* Sat Feb 28 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.4d349ee5c778.19]
- Linux v7.0.0-0.rc1.4d349ee5c778
Resolves:
* Fri Feb 27 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.a75cb869a8cc.18]
- Linux v7.0.0-0.rc1.a75cb869a8cc
Resolves:
* Thu Feb 26 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.f4d0ec0aa20d.17]
- redhat/configs: unify CONFIG_CAN for RHEL and Fedora (Radu Rendec)
- redhat: add a weak relationship between modules-internal and selftests (Jan Stancek)
- new config in drivers/phy (Izabela Bakollari)
- Linux v7.0.0-0.rc1.f4d0ec0aa20d
Resolves:
* Tue Feb 24 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.7dff99b35460.16]
- Reset the changelog for 7.0-rc1 (Justin M. Forbes)
- A couple more quick important 7.0 config updates for Fedora (Justin M. Forbes)
- A couple of quick important 7.0 config updates for Fedora (Justin M. Forbes)
- Linux v7.0.0-0.rc1.7dff99b35460
Resolves:
* Mon Feb 23 2026 Fedora Kernel Team <kernel-team@fedoraproject.org> [7.0.0-0.rc1.15]
- redhat/configs: enable CONFIG_AQTION on all archs (Michal Schmidt) [RHEL-150853]
- Add signing key for Nvidia Jetson (Enrique Belarte)
- configs: enable Freescale MXS DMA engine (Jiri Benc)
- redhat/dracut-virt.conf: remove erroneous spaces in omit_dracutmodules (Li Tian)
- redhat/kernel.spec.template: Make -uki-dtbloader provide kernel-core-uname-r (Hans de Goede)
- redhat/kernel.spec.template: Add kernel-uki-dtbloader sub-package (Hans de Goede)
- redhat/kernel.spec.template: Simplify uki-virt signing (Hans de Goede)
- redhat/kernel.spec.template: Fix indentation of uki-virt generation code (Hans de Goede)
- Fix up merge from master (Justin M. Forbes)
- Fix mismatch for CONFIG_POWER_SEQUENCING (Justin M. Forbes)
- Fix up a couple of mismatches with PREEMPT_LAZY and x86 SND_SOC_TAS2781_I2C for RHEL (Justin M. Forbes)
- Turn on CONFIG_PREEMPT in pending to avoid mismatch (Justin M. Forbes)
- Turn off CONFIG_SMB_KUNIT_TESTS in pending (Justin M. Forbes)
- Trim the changelog for 7.0 (Justin M. Forbes)
- Reset RHEL_RELEASE for the 7.0 series (Justin M. Forbes)
- redhat/configs: rename CONFIG_QCOM_QFPROM to CONFIG_NVMEM_QCOM_QFPROM (Eric Chanudet)
- redhat/dracut-virt.conf: omit drm drivers in UKI initrd (Li Tian) [RHEL-147296]
- Prevent stripping of rtla and rv binaries during install (John Kacur)
- Fix rtla and rv debuginfo package definitions (John Kacur)
- Add debuginfo package for rtla tool (John Kacur)
- Add debuginfo package for rv tool (John Kacur)
- Consolidate configs to common for 6.19 (Justin M. Forbes)
- redhat/configs: Set CONFIG_PTP_S390=y (Mete Durlu) [RHEL-141647]
- [gitlab-ci] tag-cki-gating: refactor to use GIT_STRATEGY=empty (Patrick Talbert)
- efi: Fix swapped arguments to bsearch() in efi_status_to_*() (Dongdong Tao)
- redhat/configs: Ship nft_osf.ko in Fedora, too (Phil Sutter)
- Set Fedora configs for 6.19 kernels (Justin M. Forbes)
- configs: enable FUNCTION_GRAPH_RETVAL everywhere (Jerome Marchand)
- configs: riscv: Enable ARCH_ESWIN for CentOS (Jennifer Berringer)
- configs: riscv: Enable StarFive drivers for CentOS (Jennifer Berringer)
- configs: riscv: Enable common hardware drivers for CentOS (Jennifer Berringer)
- redhat: exclude DERIVATIVE_BUILD and DERIVATIVE_VERSION from self-test data (Jan Stancek)
- fedora: arm64: make pinctrl-msm8916 built-in (Sam Day)
- [gitlab-ci] rawhide_release: set FF_USE_NEW_BASH_EVAL_STRATEGY=true (Patrick Talbert)
- redhat: add usbio kmod placement rule (Jan Stancek)
- Rename with_up to with_stock. (Alexandra Hájková)
- redhat: dereference GITID during tarball creation (Jan Drögehoff)
- redhat/configs: Disable CONFIG_INTEL_TH on RHEL (David Arcari)
- Revert "[redhat] temporarily disable CONFIG_CRYPTO_DEV_SP_PSP" (Scott Weaver)
- kernel-tools: split the python tools off (Peter Robinson)
- gitlab-ci: set allow_failure for the rawhide-release job (Patrick Talbert)
- redhat: export FLAVOR (Jose Ignacio Tornos Martinez)
- redhat: Add documentation comments to kernel.spec.template macros (Alexandra Hájková)
- redhat/configs: enable rtw8922ae for rhel (Jose Ignacio Tornos Martinez)
- kernel.spec.template: Cleanup package_name use (Prarit Bhargava)
- Revert "Turn on CONFIG_DEBUG_INFO_COMPRESSED_ZLIB" (Lianbo Jiang)
- fedora: aarch64: Enable BST platform support (Weizhao Ouyang)
- fedora: aarch64: Enable TI_SCI_INTR_IRQCHIP as built-in (Ayush Singh)
- Fedora: arm: aarch64: Enable mandatory CONFIGs for QCS8300 (Shivendra Pratap)
- fedora: updates for the 6.19 merge (Peter Robinson)
- redhat/self-test: refresh with new variables (Scott Weaver)
- gitlab-ci: enable c10s automotive package build (Scott Weaver)
- automotive: add configurable package name and disttag variables (Scott Weaver)
- Fix up zfcpdump mismatch (Justin M. Forbes)
- redhat/kernel.spec.template: Let kernel-modules installation rebuild initrd in UKI system (Li Tian) [RHEL-135256]
- restore HYPERV configs to 6.17 state (Paolo Bonzini)
- redhat/configs: automotive: enable NXP_STM_TIMER (Jared Kangas)
- redhat/configs: automotive: enable S32G_WDT (Jared Kangas)
- redhat/configs: enable NXP S32 on aarch64 autmotive (Alessandro Carminati)
- Reset RHEL_RELEASE for the 6.19 cycle (Justin M. Forbes)
- add libasan-static and libubsan as BR for selftests (Thorsten Leemhuis)
- add liburing-devel as BR for selftests (Thorsten Leemhuis)
- add a few optional BRs for perf (Thorsten Leemhuis)
- Consolidate configs into common for 6.18 (Justin M. Forbes)
- redhat/configs: make CONFIG_DRM_CLIENT_LIB=y (Jocelyn Falempe)
- fedora: arm: minor config updates (Peter Robinson)
- Change RZ_DMAC from m to y for Fedora (Justin M. Forbes)
- redhat/configs: automotive: enable CAN_FLEXCAN (Jared Kangas)
- Revert "Removing Obsolete hba pci-ids from rhel8" (Scott Weaver)
- rh_messages.h: add missing lpfc devices (Scott Weaver)
- redhat/configs: Enable CONFIG_NFSD_V4_2_INTER_SSC in RHEL (Scott Mayhew)
- redhat: Package net/hsr selftests (Felix Maurer)
- Remove redundant Fedora VFIO overrides (Daniel P. Berrangé)
- Enable CONFIG_VFIO_DEVICE_CDEV on Fedora (Daniel P. Berrangé)
- redhat/configs: automotive: enable I2C_IMX and dependencies (Jared Kangas)
- Set some late arrival config options for Fedora 6.18 (Justin M. Forbes)
- redhat/configs: enable Micel PHY for NXP Automotive SoCs S32G2xx/S32G3xx/S32R45 (Alessandro Carminati)
- redhat/configs: enable Synopsis DWMAC IP on NXP Automotive SoCs S32G2xx/S32G3xx/S32R45 (Alessandro Carminati)
- redhat/configs: Move CONFIG_MICROCODE_DBG to common/generic/x86 (Waiman Long)
- redhat/configs: Set CONFIG_SCHED_PROXY_EXEC=n (Waiman Long)
- Add loongarch to kernel-headers for Fedora (Justin M. Forbes)
- Turn on SYNTH_EVENTS for RISCV RHEL to avoid a mismatch (Justin M. Forbes)
- Turn on PCI_PWRCTRL_SLOT for aarch64 in RHEL (Justin M. Forbes)
- redhat/kernel.spec.template: add net/can kselftests (Davide Caratti)
- redhat/configs: Enable CONFIG_OVMF_DEBUG_LOG in RHEL (Lenny Szubowicz) [RHEL-100104]
- merge-linux-next: use gitlab remote (Scott Weaver)
- redhat: use RELEASE_LOCALVERSION also for dist-get-tag (Jan Stancek)
- redhat: configs: rhel: Enable OV08X40 sensor to support Intel MIPI camera (Kate Hsuan)
- redhat: configs: rhel: Enable usbio-drivers to supower Intel MIPI camera (Kate Hsuan)
- redhat: configs: Enable DWC3 Generic Platform Driver on RHEL automotive (Desnes Nunes) [RHEL-119326]
- redhat: configs: Enable OV08X40 sensor driver on RHEL (Desnes Nunes) [RHEL-119326]
- redhat: configs: Enable USBIO Bridge support on RHEL x86 (Desnes Nunes) [RHEL-119326]
- gitlab-ci: testing (Scott Weaver)
- ark-linux-next: check for git hooks directory (Scott Weaver)
- gitlab-ci: merge-linux-next: workaround pydantic-core build error (Scott Weaver)
- redhat: remove EARLY ystream bits (Jan Stancek)
- redhat/configs: configure CONFIG_ATH12K_AHB for rhel (Jose Ignacio Tornos Martinez)
- Final configs for Fedora 6.18 (Justin M. Forbes)
- redhat/configs: Enable additional RV monitors on debug kernels (Gabriele Monaco)
- redhat/configs: Enable sched and rtapp RV monitors (Gabriele Monaco)
- redhat/configs: Move CONFIG_RV_PER_TASK_MONITORS to common/generic (Gabriele Monaco)
- properly reset CONFIG_EFI_SBAT_FILE value (Thorsten Leemhuis)
- kernel: extend rh_waived to cope better with the CVE mitigations case (Ricardo Robaina) [RHEL-122979]
- uki-virt: add systemd-repart module (Emanuele Giuseppe Esposito)
- fedora: cleanup/de-dupe the USB configfs options (Peter Robinson)
- fedora: cleanup/de-dupe the USB Device/Gadget config (Peter Robinson)
- fedora: Disable the remanents of legacy USB gadget (Peter Robinson)
- fedora: i3c: enable more i3c (Peter Robinson)
- Configs: Mark SCHED_MC as enabled for powerpc (Phil Auld)
- redhat: update self-test-data for RELEASE_LOCALVERSION (Jan Stancek)
- redhat: introduce RELEASE_LOCALVERSION variable (Jan Stancek)
- Turn on CONFIG_DEBUG_INFO_COMPRESSED_ZLIB (Lianbo Jiang)
- redhat/kernel.spec: make python3-perf glob more specific (Jan Stancek)
- fedora: arm64: Updates for AMD Xilinx devices (Peter Robinson)
- redhat/configs: Re-enable Raspberry Pi support in automotive (Radu Rendec)
- redhat/configs: automotive: enable FSL_EDMA (Jared Kangas)
- Trim changelog of dupes for the 6.18 reset (Justin M. Forbes)
- fedora: aarch64: Enable arm MHUv2 driver (Peter Robinson)
- redhat/configs: automotive: enable RTC_DRV_S32G (Jared Kangas)
- redhat/configs: automotive: switch ufs-qcom to module (Eric Chanudet)
- redhat/configs: automotive: switch geni-se and serial-qcom-geni to modules (Eric Chanudet)
- redhat/configs: automotive: switch pinctrl_msm and pinctrl_sa8775p to modules (Eric Chanudet)
- redhat: add all namespace-dependent selftests to kernel-selftests-internal (Joel Savitz)
- fedora: Minor QCom configs cleanup (Peter Robinson)
- fedora: cleanup now removed BCACHEFS options (Peter Robinson)
- fedora: Last updates for 6.18 (Peter Robinson)
- Turn on X86_FRED for Fedora (Justin M. Forbes)
- Fix up HYPERV configs for 6.18 (Justin M. Forbes)
- add xxd to as BuildRequire for bpf selftests (Thorsten Leemhuis)
- Flip HID_HAPTIC to inline for Fedora due to symbol errors (Justin M. Forbes)
- fedora: updates for 6.18 (Peter Robinson)
- redhat/configs: automotive: enable SPI_OMAP24XX as a module (Jared Kangas)
- Fix up mismatch with PCI_PWRCTRL_SLOT on arm (Justin M. Forbes)
- Turn on DRM_ACCEL_ROCKET FOR Fedora (Justin M. Forbes)
- redhat: rpminspect: update emptyrpm list for kernel variants (Patrick Talbert)
- redhat: ark-linux-next.sh: initial commit (Scott Weaver)
- redhat: prepare-commit-msg: initial commit (Scott Weaver)
- redhat: ark-merge-driver: initial commit (Scott Weaver)
- redhat/Makefile: add dist-configs-commit-mismatches (Scott Weaver)
- Flip SCHED_MC for RHEL ppc to avoid a mismatch (Justin M. Forbes)
- Revert "Merge branch 'add_next_sched_job' into 'os-build'" (Justin M. Forbes)
- Fix up a merge window mismatch for riscv RHEL (Justin M. Forbes)
- Reset RHEL_RELEASE for the 6.18 cycle (Justin M. Forbes)
- Turn on USB_FUNCTIONFS for Fedora (Justin M. Forbes)
- redhat/configs: Disable CONFIG_EFI_MIXED in RHEL (Lenny Szubowicz)
- Revert "Merge branch 'tmp2' into 'os-build'" (Justin M. Forbes)
- Always set LLVM=1 when building with clang (Tom Stellard)
- redhat/configs: Move CONFIG_MITIGATION_VMSCAPE to common/generic/x86 (Waiman Long)
- redhat/Makefile: Update the make target dist-configs-check to fail (Alexandra Hájková)
- Consolidate configs to common for 6.17 (Justin M. Forbes)
- Add 1010-config-newlines-test.bats self test. (Alexandra Hájková)
- os-build: Remove dead CONFIG_SCHED_DEBUG files (Phil Auld)
- redhat/configs: automotive: Disable COMPAT_32BIT_TIME SGETMASK_SYSCALL and IA32_EMULATION configs (Dorinda Bassey)
- Revert "redhat/configs: automotive: Disable NetLabel subsystem support" (Dorinda Bassey)
- redhat: ark-linux-next.sh: initial commit (Scott Weaver)
- redhat: prepare-commit-msg: initial commit (Scott Weaver)
- redhat: ark-merge-driver: initial commit (Scott Weaver)
- redhat/Makefile: add dist-configs-commit-mismatches (Scott Weaver)
- Turn on PINCTRL_SM8550_LPASS_LPI for Fedora (Justin M. Forbes)
- redhat: configs: drop TI_K3_UDMA & TI_K3_UDMA_GLUE_LAYER from RHEL (Eric Chanudet)
- redhat: configs: move TI_SCI_PROTOCOL and TI_MESSAGE_MANAGER to common (Eric Chanudet)
- Set CONFIG_MITIGATION_VMSCAPE for Fedora (Justin M. Forbes)
- redhat/Makefile: update dist-vr-check (Scott Weaver)
- gitlab-ci: add kcidb_tree_name to trees (Tales da Aparecida)
- Fix packaging for libcpupower python binding debuginfo (Justin M. Forbes)
- redhat/configs: automotive: enable TI K3 R5F remoteproc driver (Jared Kangas)
- Move CONFIG_SCHED_PROXY_EXEC to the zfcpdump directory (Justin M. Forbes)
- Set Fedora configs for 6.17 (Justin M. Forbes)
- redhat: scripts: ignore incorrect shellcheck 2329 in trap function (Simone Tollardo)
- Turn on PHY_ROCKCHIP_SAMSUNG_DCPHY for Fedora (Justin M. Forbes)
- rh_messages.h: add missing aacraid device (Scott Weaver)
- rh_messages.h: update unmaintained drivers (Scott Weaver)
- arm64: enable Tegra264 SoC components in RHEL (Marcin Juszkiewicz)
- redhat: export only selected variables (Jan Stancek)
- gitlab-ci: set HOME in maintenance jobs (Tales da Aparecida)
- gitlab-ci: remove fetch of linux-rt-devel (Scott Weaver)
- redhat/Makefile: auto select -z-test-pesign target for z-stream (Jan Stancek)
- redhat/configs: Move RHEL/Fedora lockdown configs to common (Jeremy Cline)
- Enable building libcpupower bindings for ELN/Rawhide (John B. Wyatt IV)
- redhat: Explicitly disable 'hostonly' mode on the dracut cmdline (Vitaly Kuznetsov)
- redhat: Directly use 'ukify' for building the UKI (Vitaly Kuznetsov)
- redhat: Temporary stop adding 'kernel' component to SBAT (Vitaly Kuznetsov)
- redhat/configs: Remove obsolete CONFIG files - part 1 (Waiman Long)
- redhat/Makefile: add dist-spec (Scott Weaver)
- redhat: Switch to implicit enablement of CONFIG_EFI_SBAT_FILE (Vitaly Kuznetsov)
- redhat/configs: Enable early lockdown for Arm (Mark Salter) [RHEL-1927]
- arm64: add early lockdown for secure boot (Mark Salter) [RHEL-1927]
- efi: pass secure boot mode to kernel proper (Mark Salter) [RHEL-1927]
- Disable Nova Core until it is useful (Justin M. Forbes)
- Turn off LIBBPF_DYNAMIC for perf builds (Justin M. Forbes)
- redhat: Add SBAT information to Linux kernel (Vitaly Kuznetsov)
- redhat: Add SBAT to the UKI unconditionally (Vitaly Kuznetsov)
- Enable PHY drivers required for automotive board (Radu Rendec)
- fedora: more updates for 6.17 (Peter Robinson)
- specfile: change conditionals for realtime for fedora (Clark Williams)
- redhat/configs: Disable TPM2 HMAC sessions (Štěpán Horáček) [RHEL-82779]
- redhat/script: Fix instructions for dist-cross-setup (Thomas Huth)
- redhat/configs: Fix location of the S390_MODULES_SANITY_TEST switch (Thomas Huth)
- redhat/configs: Fix location of the CONFIG_S390_KPROBES_SANITY_TEST switch (Thomas Huth)
- redhat/configs: Remove superfluous generic CONFIG_TUNE_Z16 switch (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_TUNE_Z17 switch (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_RANDOMIZE_IDENTITY_BASE switch (Thomas Huth)
- Fix up some networking configs to make docker work again (Justin M. Forbes)
- rename CONFIG_PAGE_BLOCK_ORDER to CONFIG_PAGE_BLOCK_MAX_ORDER (Justin M. Forbes)
- kernel.spec: add '-e' option to %%preun for kernel-core and kernel-uki-virt (Xuemin Li)
- Remove CONFIG_TEST_MISC_MINOR as deps are no longer met (Justin M. Forbes)
- Add to pending to fix precendence and avoid mismatch (Justin M. Forbes)
- CONFIG_PAGE_BLOCK_ORDER is now CONFIG_PAGE_BLOCK_MAX_ORDER (Justin M. Forbes)
- redhat/kernel.spec: fix leftover typo in Provides line (Jan Stancek)
- fedora: Updates for 6.17 merge (Peter Robinson)
- Fix a mismatch, needs further investigation (Justin M. Forbes)
- Turn off TEST_MISC_MINOR as its deps are no longer met (Justin M. Forbes)
- redhat/configs: Disable CRYPTO_KRB5 for zfcpdump (Vladis Dronov)
- Trim changelog after rebase (Justin M. Forbes)
- Flip TEGRA124_CPUFREQ to m for config mismatch (Justin M. Forbes)
- Reset RHEL_RELEASE for the 6.17 cycle (Justin M. Forbes)
- redhat/kernel.spec: fix uname_variant call sites (Jan Stancek) [RHEL-104231]
- redhat/kernel.spec: fix uname_suffix call sites (Jan Stancek) [RHEL-104231]
- redhat/configs: Add evaluate_configs.py and documentation (Prarit Bhargava)
- redhat: Remove old evaluate_configs (Prarit Bhargava)
- redhat/spec: package full bpftool in selftests (Gregory Bell)
- selftests/bpf: Remove ksyms_weak_lskel test (Artem Savkov)
- redhat/spec: Add libxml2-devel dependency for selftests build (Viktor Malik)
- redhat/spec: Bypass check-rpaths for kselftests/bpf/urandom_read (Viktor Malik)
- redhat/spec: Do not use source fortification for C++ selftest binaries (Viktor Malik)
- redhat/spec: Do not use source fortification for selftests (Viktor Malik)
- redhat/spec: Fix BPF selftests build with PIE (Viktor Malik)
- redhat/spec: Add EXTRA_CXXFLAGS to bpf samples and selftests make (Artem Savkov)
- fedora: minor cleanups (Peter Robinson)
- fedora: aarch64: enable a couple of brcmstb reset drivers (Peter Robinson)
- rhel/aarch64: enable CONFIG_TCG_ARM_CRB_FFA as a module (Marcin Juszkiewicz)
- redhat/configs: Move CONFIG_MITIGATION_TSA under common/generic/x86 (Waiman Long)
- Set CONFIG_TEST_VMALLOC to off for s390 zfcpdump (Justin M. Forbes)
- Revert "redhat/configs: automotive: Turn off ACPI Processor package for aarch64" (Enric Balletbo i Serra)
- redhat/configs: automotive: Disable CONFIG_NUMA config (Dorinda Bassey)
- Consolidate configs to common for 6.16 (Justin M. Forbes)
- arm64: enable SND_HDA_ACPI as a module (Marcin Juszkiewicz)
- kernel.spec: always provide kernel-devel-uname-r (Scott Weaver)
- kernel.spec: always provide kernel (Scott Weaver)
- kernel.spec: dynamically set provides/requires name (Scott Weaver)
- kernel.spec: use %%{name} in partner/internal modules (Scott Weaver)
- kernel.spec: introduce with_automotive_build (Scott Weaver)
- kernel.spec: fix kernel-automotive packaging (Scott Weaver)
- kernel.spec: add a few macro option comments (Scott Weaver)
- kernel.spec: add conditional to include rhel trusted certificates (Eric Chanudet)
- kernel.spec: Always BuildRequire openssl-devel (Eric Chanudet)
- kernel.spec: automotive: disable kernel signature by default (Eric Chanudet)
- redhat/configs: automotive: enable extra system cert (Eric Chanudet)
- redhat/configs: automotive: Disable module signature with modules_install (Eric Chanudet)
- kernel.spec: honor packaging flags (Scott Weaver)
- Fix FIPS mode for Fedora (Justin M. Forbes)
- Turn on TSA Mitigation for Fedora (Justin M. Forbes)
- redhat/configs: Enable CONFIG_AMD_HSMP_ACPI and CONFIG_AMD_HSMP_PLAT on RHEL (David Arcari)
- redhat/configs: CONFIG_WWAN enough as a module (Jose Ignacio Tornos Martinez)
- redhat/configs: Enable CONFIG_NET_SCH_BPF on RHEL (Viktor Malik)
- config: new config in drivers/phy (Izabela Bakollari)
- livepatch: no need to build kselftests with kernel (Radomir Vrbovsky)
- redhat: Restore the status quo wrt memory onlining (Vitaly Kuznetsov) [2375049]
- redhat/spec: Disable gdb index for riscv cross-compile (Jennifer Berringer)
- gitlab-ci: Enable CI for riscv64 on centos/eln (Jennifer Berringer)
- redhat: Enable RISC-V arch for centos/eln (Jennifer Berringer)
- redhat/kernel.spec.template: add drivers/net and drivers/net/hw selftest (Hangbin Liu)
- uki: enable FIPS mode (Vitaly Kuznetsov)
- redhat/configs: Move CONFIG_MITIGATION_ITS to common/generic/x86 (Waiman Long)
- redhat/configs: enable fwctl for RHEL (Michal Schmidt) [RHEL-96987]
- Fedora configs for 6.16 (Justin M. Forbes)
- aarch64: Switch TI_SCI_CLK and TI_SCI_PM_DOMAINS symbols to built-in (Peter Robinson)
- redhat/configs: enable CONFIG_TCG_SVSM (Stefano Garzarella)
- redhat: enable CONFIG_CRASH_DM_CRYPT and CONFIG_KEXEC_HANDOVER for all (Coiby Xu)
- Simplify include Makefile.rhelver (Don Zickus)
- redhat/configs/common/generic: enable vgem module via CONFIG_DRM_VGEM (Alexander Kanavin)
- redhat/configs: enable IWLMLD for rhel (Jose Ignacio Tornos Martinez)
- kernel.spec: fedora automotive build is not supported (Scott Weaver)
- gitignore: kernel-automotive generated files (Scott Weaver)
- gitlab-ci: use AUTOMOTIVE_BUILD with dist-srpm (Scott Weaver)
- redhat/self-test: update for new automotive variables (Scott Weaver)
- redhat/Makefile: introduce AUTOMOTIVE_BUILD (Scott Weaver)
- kernel.spec: updates for automotive-only build (Scott Weaver)
- fedora: Updates for the 6.16 merge window (Peter Robinson)
- redhat/kernel.spec: drop modules-extra-matched for noarch (Jan Stancek)
- redhat/configs: fedora: set some qcom clk, icc, and pinctrl drivers to built in (Brian Masney)
- fedora: disable SND_OSSEMUL (Peter Robinson)
- fedora: disable OSS sound for real HW (Peter Robinson)
- gitlab-ci: disable merge-rt-automotive (Scott Weaver)
- redhat/configs: automotive: enable j784s4evm DSP remoteproc configs (Jared Kangas) [RHEL-95436]
- redhat/configs: add LED kernel configs (Rupinderjit Singh)
- redhat: enable test_kmod, test_module and install kmod selftests (Herton R. Krzesinski)
- package the newly added cpupower.service (Thorsten Leemhuis)
- process_configs: always print errors (Thorsten Leemhuis)
- redhat/configs: disable RZ/V2N in automotive (Eric Chanudet)
- redhat/configs: Move RZ/G3E config to automotive (Eric Chanudet)
- redhat: add more namespace selftests to kernel-modules-internal package (Joel Savitz) [RHEL-94503]
- redhat/configs: Enable CONFIG_PCIE_TPH (Ivan Vecera)
- spec: fix spec warning for /usr/include/ynl (Jan Stancek)
- redhat/configs: Move CONFIG_PPC_FTRACE_OUT_OF_LINE_NUM_RESERVE to powerpc (Viktor Malik)
- Fix up powerpc mismatch (Justin M. Forbes)
- Fix another mismatch for 6.16 (Justin M. Forbes)
- Fix up a mismatch for Fedora aarch64 (Justin M. Forbes)
- Fix up mismatches for RHEL s390 zfpcdump (Justin M. Forbes)
- More mismatch fixes for 6.16 (Justin M. Forbes)
- Turn CROS_EC_PROTO to m for Fedora to avoid mismatch (Justin M. Forbes)
- Reset changelog for 6.16 cycle (Justin M. Forbes)
- Fix up CRYPTO_SHA256 configs for mismatch (Justin M. Forbes)
- Reset RHEL_RELEASE for the 6.16 cycle (Justin M. Forbes)
- fedora: add 'fedora' SBAT suffix for UKI addons (Li Tian)
- redhat: add downstream SBAT for UKI addons (Emanuele Giuseppe Esposito)
- uki_addons: provide custom SBAT as input parameter (Emanuele Giuseppe Esposito)
- uki_addons: remove completely sbat/sbat.conf (Emanuele Giuseppe Esposito)
- Consolidate configs to common for 6.15 (Justin M. Forbes)
- redhat/configs: automotive: enable MHI_BUS_EP (Eric Chanudet)
- Fix PHYSICAL_ALIGN for x86 Fedora (Justin M. Forbes)
- Switch ZSWAP_ZPOOL_DEFAULT to ZSMALLOC as ZBUD has been removed (Justin M. Forbes)
- redhat: configs: rhel: Enable CX231XX drivers (Kate Hsuan)
- configs: add redhat/configs/common/generic/CONFIG_OBJTOOL_WERROR (Ryan Sullivan) [RHEL-85301]
- redhat: make ENABLE_WERROR also enable OBJTOOL_WERROR (Ryan Sullivan) [RHEL-85301]
- redhat/configs: Enable CONFIG_X86_POSTED_MSI (Jerry Snitselaar)
- redhat/configs: remove CRC16 config files (Scott Weaver)
- Revert CONFIG_GENKSYMS in pending for x86 (Justin M. Forbes)
- Flip GENKSYMS for RHEL (Justin M. Forbes)
- Move MITIGATION_ITS to the x86 directory (Justin M. Forbes)
- Set MITIGATION_ITS for Fedora (Justin M. Forbes)
- Fedora: arm: Updates for QCom devices (Souradeep Chowdhury)
- redhat/configs: Explicitly disable CONFIG_VIRTIO_MEM on powerpc in RHEL (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_AP_DEBUG config switch (Thomas Huth)
- Set Fedora configs for 6.15 (Justin M. Forbes)
- Shorten the uname for git snapshots (Justin M. Forbes)
- nvme: explicitly enable the nvme keyring (Maurizio Lombardi)
- Enable the gs_usb CAN bus driver in RHEL (Radu Rendec)
- Stop disabling some modules needed to run on Azure (Pierre-Yves Chibon)
- redhat/configs: enable ACPI_DEBUG on non-debug kernels (Mark Langsdorf)
- specfile: add with_toolsonly variable to build only tools packages (Clark Williams)
- redhat/configs: Enable CONFIG_TYPEC_TBT_ALTMODE in RHEL (Desnes Nunes) [RHEL-78931]
- Turn on ACPI_DEBUG for Fedora (Justin M. Forbes)
- redhat: fix kernel-rt-kvm package removal for Fedora (Thorsten Leemhuis)
- redhat/configs: aarch64: Enable Apple touchbar display driver for Fedora (Neal Gompa)
- redhat: remove kernel-rt-kvm package (Clark Williams)
- redhat: introduce modules-extra-matched meta package (Jan Stancek)
- Fix up some Netfilter configs for Fedora (Justin M. Forbes)
- Turn NF_CT_NETLINK_TIMEOUT for Fedora (Justin M. Forbes)
- Turn on NF_CONNTRACK_TIMEOUT for Fedora (Justin M. Forbes)
- redhat/configs: Adjust CONFIG_TUNE for s390x (Mete Durlu)
- redhat/spec: fix selftests dependencies (Gregory Bell) [RHEL-88228]
- redhat: add namespace selftests to kernel-modules-internal package (Joel Savitz) [RHEL-88635]
- Turn off CONFIG_PCI_REALLOC_ENABLE_AUTO for Fedora (Justin M. Forbes)
- gitlab-ci: enable pipelines for rt-64k (Clark Williams)
- rt-64k: Enable building 64k page-size RT kernel (Clark Williams)
- redhat: drop Y issues from changelog (Jan Stancek)
- redhat/configs: Update the CONFIG_KERNEL_IMAGE_BASE kernel config option (Thomas Huth)
- redhat/configs: Remove the obsolete CONFIG_ZCRYPT_DEBUG switches (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_AP switch (Thomas Huth)
- fedora: updates for 6.15 (Peter Robinson)
- redhat/configs: Disable CONFIG_COMPAT option on s390 (Mete Durlu) [RHEL-24047]
- uki: Add weak dependency on 'uki-direct' (Vitaly Kuznetsov)
- redhat/kernel.spec: fix duplicate packaging of ynl headers (Jan Stancek)
- Enable FunctionFS on aarch64 + x86 (Sam Day)
- Turn on USB Gadget for Fedora x86 (Justin M. Forbes)
- redhat: enable drm panic screen with a QR code (Scott Weaver)
- redhat: enable Rust code in ELN (Scott Weaver)
- redhat: strip leading '(' in dist-get-buildreqs (Jan Stancek)
- Fix up CONFIG_CRC_ITU_T mismatch (Scott Weaver)
- Fix up CONFIG_CRC16 mismatch (Scott Weaver)
- redhat: remove kernel-ipaclones-internal package (Joe Lawrence)
- redhat/kernel.spec.template: add net packetdrill selftests (Hangbin Liu)
- redhat/kernel.spec.template: Build rtla with BPF sample collection (Tomas Glozar)
- redhat/configs: automotive: Enable CONFIG_BOOTPARAM_HUNG_TASK_PANIC config (Dorinda Bassey)
- samples/bpf: fix build (Gregory Bell)
- redhat: create 'systemd-volatile-overlay' addon for UKI (Emanuele Giuseppe Esposito)
- fedora: arm64: move some TI drivers to modular (Peter Robinson)
- fedora: minor cleanups for 6.14 (Peter Robinson)
- redhat/configs: enable CONFIG_I2C_MUX_PCA954x on x86 (Michal Schmidt)
- redhat: bump RHEL_MAJOR (Jan Stancek)
- redhat/configs: enable CONFIG_AMD_3D_VCACHE for x86 on RHEL (David Arcari)
- Switch ZSWAP_ZPOOL_DEFAULT to ZSMALLOC as ZBUD has been removed (Justin M. Forbes)
- redhat/kernel.spec: list python3-wheel explicitly for Fedora<42 (Jan Stancek)
- handle man-page for rv-mon-sched in redhat/kernel.spec.template (Thorsten Leemhuis)
- redhat: find-debuginfo workaround is no longer needed on F42 (Jan Stancek)
- redhat/kernel.spec: use target versions of tools for debugedit and gdb-add-index (Jan Stancek)
- redhat: make ENABLE_WERROR enable also KVM_WERROR (Jan Stancek)
- kernel.spec.template: cpupower: adjust lib versioning (Thorsten Leemhuis)
- redhat/configs: automotive: builtin virtio-mmio (Eric Chanudet)
- Fix up mismatches in the 6.15 merge window (Scott Weaver)
- Reset log for 6.15 cycle (Justin M. Forbes)
- Reset RHEL_RELEASE for 6.15 cycle (Justin M. Forbes)
- arm64: cleanup and de-dupe erratum (Peter Robinson)
- arm64: cleanup and de-dupe configs (Peter Robinson)
- cleanup: x86: cleanup some x86_32 leftovers (Peter Robinson)
- all: cleanup CAN_ROCKCHIP_CANFD (Peter Robinson)
- aarch64: Options required for UEFI HTTP boot on SystemReady-DT (Peter Robinson)
- common: Move ZONE_DEVICE to generic (Peter Robinson)
- common: Cleanup BTT (Peter Robinson)
- cleanup: move DEV_DAX_PMEM to common/generic (Peter Robinson)
- generic: cleanup the NVDIMM options (Peter Robinson)
- cleanup: move OF_PMEM to common/generic (Peter Robinson)
- cleanup: Remove DEV_DAX_PMEM_COMPAT option (Peter Robinson)
- Consolidate configs into common for 6.14 (Justin M. Forbes)
- Turn VIRTIO_BLK and VIRTIO_CONSOLE inline for Fedora (Justin M. Forbes)
- redhat: configs: fedora: enable CONFIG_I2C_HID_OF=m on x86 (Hans de Goede)
- redhat: move dist-relase-check behind new variable (Jan Stancek)
- Set last minute config item for 6.14 for Fedora (Justin M. Forbes)
- redhat/configs: automotive: Disable CONFIG_USERFAULTFD config (Dorinda Bassey)
- redhat/configs: automotive: Disable VLAN_8021Q_GVRP config (Dorinda Bassey)
- redhat/configs: automotive: Disable DCB and MPLS configs (Dorinda Bassey)
- redhat/configs: automotive: Disable IEEE 802.15.4 config (Dorinda Bassey)
- redhat/configs: automotive: Disable various network classification features (Dorinda Bassey)
- redhat/configs: automotive: Disable the SMBFS file system (Dorinda Bassey)
- redhat/configs: automotive: Disable Myricom network adapters (Dorinda Bassey)
- redhat/configs: automotive: Disable USB4 Ethernet config (Dorinda Bassey)
- redhat/configs: automotive: Disable the Mellanox SwitchX core driver (Dorinda Bassey)
- redhat/configs: automotive: Disable network storage related protocols (Dorinda Bassey)
- redhat/configs: automotive: Disable lightweight tunneling with BPF (Dorinda Bassey)
- redhat/configs: automotive: Disable RADOS block device configs (Dorinda Bassey)
- redhat/configs: automotive: Disable switchdev driver framework (Dorinda Bassey)
- redhat/configs: automotive: Disable network packet generator (Dorinda Bassey)
- redhat/configs: automotive: Disable NET_CLS_ACT and PSAMPLE configs (Dorinda Bassey)
- redhat/configs: automotive: Disable BPF STREAM_PARSER (Dorinda Bassey)
- redhat/configs: automotive: Disable Open vSwitch and NET_NSH configs (Dorinda Bassey)
- redhat/configs: automotive: Disable IP Virtual Server configs (Dorinda Bassey)
- redhat/configs: automotive: Disable IP set support (Dorinda Bassey)
- redhat/configs: automotive: Disable NetLabel subsystem support (Dorinda Bassey)
- redhat/configs: automotive: Disable TLS Protocol (Dorinda Bassey)
- redhat/configs: automotive: Disable Advanced TCP Congestion Control (Dorinda Bassey)
- redhat/configs: automotive: Disable XDP Socket Protocol (Dorinda Bassey)
- redhat/configs: delete CONFIG_USB_ONBOARD_HUB and use CONFIG_USB_ONBOARD_DEV instead (Desnes Nunes)
- redhat: check release commit is present for dist-{release-tag,git} (Jan Stancek)
- Re-enable vxcan (CONFIG_CAN_VXCAN) for automotive (Radu Rendec)
- Turn on CONFIG_PACKING for RHEL (Justin M. Forbes)
- main.c: fix initcall blacklisted (Tomas Henzl)
- redhat/configs: automotive: Disable IPsec Protocols and XFRM (Dorinda Bassey)
- redhat: Update CONFIG_STRICT_DEVMEM settings (enable it on s390x) (Thomas Huth)
- redhat: Consolidate CONFIG_VIRTIO_MEM and enable it also for s390x (Thomas Huth)
- Remove no longer necessary pending entry (Justin M. Forbes)
- Fedora configs for 6.14 (Justin M. Forbes)
- redhat/configs: Disable rest of the CONFIG_PKEY_ options on s390 (Mete Durlu) [RHEL-78341]
- Fix up some debug module loading issues due to BTF mismatch (Justin M. Forbes)
- Revert "redhat/configs: automotive: disable CONFIG_AIO" (Davide Caratti)
- redhat/configs: automotive disable ARCH_TEGRA_241_SOC (Eric Chanudet)
- rhel_files: ensure all qdiscs are in modules-core (Davide Caratti) [RHEL-79818]
- redhat/configs: automotive: Disable MRP/8021Q_MVRP Protocol (Dorinda Bassey)
- redhat/configs: enable CONFIG_ARM_SMMU_MMU_500_CPRE_ERRATA (Jerry Snitselaar)
- redhat/configs: enable CONFIG_ARM_SMMU_V3_IOMMUFD (Jerry Snitselaar)
- redhat: configs: remove CONFIG_DMA_API_DEBUG_SG (Kate Hsuan)
- kernel.spec: add missing tools-libs on s390x (Jan Stancek)
- arch/x86/kernel/setup.c: fix rh_check_supported (Tomas Henzl)
- kernel.spec: add minimum version of setuptools for ynl (Jan Stancek)
- Revert "Merge: redhat/configs: automotive: Disable POSIX_MQUEUE config (Dorinda Bassey)
- redhat/configs: enable in kernel compression/decompression of compressed modules (Herton R. Krzesinski)
- redhat: change compression flags for xz (Herton R. Krzesinski)
- redhat/configs: automotive: Turn off ACPI Processor package for aarch64 (Enric Balletbo i Serra)
- redhat/configs: automotive: Disable L2TP Protocol (Dorinda Bassey)
- redhat/configs: automotive: Disable TIPC Protocol (Dorinda Bassey)
- redhat/configs: Enable Mediatek Bluetooth USB drivers (Bastien Nocera)
- redhat/configs: Disable CONFIG_PKEY for zfcpdump configs (Mete Durlu) [RHEL-78341]
- redhat/configs: automotive: disable VFIO_PLATFORM (Eric Chanudet)
- Revert "Merge: redhat/configs: automotive: Disable SYSIPC config" (Dorinda Bassey)
- redhat/configs: Enable CONFIG_KASAN_INLINE for RT debug kernel (Waiman Long)
- redhat/configs: Move CONFIG_PROVE_RAW_LOCK_NESTING to common/debug (Waiman Long)
- redhat/configs: Move all the lock debugging Kconfig's to common (Waiman Long)
- redhat/configs: Enable CONFIG_BLK_CGROUP_PUNT_BIO for RHEL (Neal Gompa) [RHEL-79711]
- fedora: pending: drop USB_ONBOARD_DEV_USB5744 (Peter Robinson)
- efi,lockdown: fix kernel lockdown on Secure Boot (Ondrej Mosnacek) {CVE-2025-1272}
- fedora: Update vbox drivers (Peter Robinson)
- Drop the s390x CONFIG_REGMAP from RHEL pending as upstream removed the dep (Justin M. Forbes)
- fedora: arm64: enable RT5616 codec (Marcin Juszkiewicz)
- Revert "nvme: Return BLK_STS_TARGET if the DNR bit is set" (Benjamin Marzinski)
- Revert "nvme: allow local retry and proper failover for REQ_FAILFAST_TRANSPORT" (Benjamin Marzinski)
- Revert "nvme: decouple basic ANA log page re-read support from native multipathing" (Benjamin Marzinski)
- Revert "nvme: nvme_mpath_init remove multipath check" (Benjamin Marzinski)
- redhat/configs: automotive: Disable CONFIG_FS_DAX config (Dorinda Bassey)
- config: update CONFIG_LSM to match upstream (Ryan Sullivan)
- redhat: configs: enable CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER for RHEL (David Arcari)
- redhat/Makefile: Add help text for target dist-dump-variables (Eder Zulian)
- redhat: update self-test-data for new default RHJOBS value (Patrick Talbert)
- set a more reasonable default for number of jobs (Thorsten Leemhuis)
- redhat: automotive: define CONFIG_RH_AUTOMOTIVE (Scott Weaver)
- redhat/configs: disable CONFIG_TCP_AO on RHEL (Sabrina Dubroca)
- redhat/configs: amend USB_ONBOARD_DEV_USB5744 (Eric Chanudet)
- redhat/configs: automotive: Disable SYSIPC and MQUEUE configs (Dorinda Bassey)
- redhat: kernel.spec: add ynl to kernel-tools (Jan Stancek)
- fedora: enable USB device USB5744 (Peter Robinson)
- rhel: enable FW_CACHE on RHEL (Dave Airlie)
- redhat/configs: automotive: Disable the SCTP Protocol (Dorinda Bassey)
- redhat: generalize rule for kunit and test kmod placement (Jan Stancek)
- Move CONFIG_PCI_REALLOC_ENABLE_AUTO out of common as they have diverged (Justin M. Forbes)
- fedora: arm64: enable Silicon Mitus SM5502 Extcon driver (Sam Day)
- fedora: arm64: enable Richtek RT5033 MFD+charger+regulator modules (Sam Day)
- configs/fedora: Enable CONFIG_PCI_REALLOC_ENABLE_AUTO (Yanko Kaneti)
- Enable CONFIG_INTEL_MEI_PXP and CONFIG_DRM_I915_PXP on rhel (Jocelyn Falempe)
- Enable Intel Xe Graphics (Mika Penttilä)
- Turn on CONFIG_DRM_ACCEL_AMDXDNA for Fedora (Justin M. Forbes)
- redhat/configs: disable CONFIG_AF_UNIX_OOB on RHEL (Marcelo Ricardo Leitner)
- redhat/configs: automotive: Disable wireless network and it's dependencies (Dorinda Bassey)
- redhat/kernel.spec: work around find-debuginfo aborting cross builds (Jan Stancek)
- redhat/configs: Default to batched invalidation on s390 (Jerry Snitselaar)
- redhat/configs: automotive: set CONFIG_TIMEOUT_PANIC (Enric Balletbo i Serra)
- drop %%{_datadir}/perf-core/* from kernel.spec (Thorsten Leemhuis)
- put new misc_minor_kunit in modules-internal (Thorsten Leemhuis)
- put new cirrus kunit tests in modules-internal (Thorsten Leemhuis)
- redhat/configs: enable iBFT parsing on aarch64 (Chris Leech)
- redhat: kernel.spec: fix build with merged-sbin (Zbigniew Jędrzejewski-Szmek)
- Fix up CONFIG_REGMAP mismatch (Scott Weaver)
- redhat: fix modules.order target (Scott Weaver)
- Fix up CONFIG_CRC_T10DIF_IMPL_GENERIC mismatch (Justin M. Forbes)
- Fix mismatches for 6.13 merge window (Justin M. Forbes)
- Reset rhelver and trim changelog for 6.14 (Justin M. Forbes)
- Turn off CONFIG_ARM_TIMER_SP804 for automotive (Justin M. Forbes)
- Set ARM_TIMER_SP804 (Justin M. Forbes)
- redhat/configs: enable addtional sa8775 related Kconfigs (Brian Masney)
- redhat: Add rustfmt to deps (Peter Robinson)
- redhat/configs: Disable deprecated CONFIG_LCS option on s390 (Mete Durlu) [RHEL-68296]
- redhat/configs: make modular/disable NFS support (Dorinda Bassey)
- redhat/configs: Disable unsafe queuing disciplines (Dorinda Bassey)
- configs: move pending RT configs into rhel/rt/generic (Clark Williams)
- Turn on PROVE_RAW_LOCK_NESTING for RHEL debug builds (Justin M. Forbes)
- redhat/Makefile: Fix long dist-full-help execution time (Prarit Bhargava)
- redhat/self-test: Update data to add HELP_TYPES variable (Prarit Bhargava)
- redhat/Makefile: Add new dist-help functionality (Prarit Bhargava)
- Makefile: Do not output LOCALVERSION message for help commands (Prarit Bhargava)
- Fedora 6.13 configs part 2 (Justin M. Forbes)
- Fedora 6.13 configs part 1 (Justin M. Forbes)
- redhat/configs: enable CONFIG_VFAT_FS as a module (Dorinda Bassey)
- redhat: create 'debug' addon for UKI (Li Tian)
- kernel.spec: Build cpupower on riscv64 (Yanko Kaneti)
- RHEL: Set correct config option for CRYPTO_HMAC_S390 (Mete Durlu) [RHEL-24137]
- redhat/kernel.spec: add iputils to the requires list for selftests-internal (Brian Masney)
- redhat/kernel.spec.template: Require kernel-tools-libs in rtla (Tomas Glozar)
- redhat: make kernel-debug-uki-virt installable without kernel-debug-core (Vitaly Kuznetsov)
- redhat/configs: enable CONFIG_USB_XHCI_PCI_RENESAS on RHEL (Desnes Nunes) [RHEL-72093]
- redhat/configs: Re-enable ZRAM backends and unify configuration (Neal Gompa)
- redhat/configs: automotive: disable CONFIG_AIO (Davide Caratti)
- redhat/configs: Re-enable CONFIG_INFINIBAND_VMWARE_PVRDMA (Vitaly Kuznetsov)
- redhat/configs: PREEMPT_NOTIFIERS does not need to be explicitly listed (Michal Schmidt)
- redhat/configs: delete all CONFIG_PREEMPT_*BEHAVIOUR (Michal Schmidt)
- redhat/configs: automotive: disable CONFIG_NET_DROP_MONITOR (Davide Caratti)
- redhat/configs: Enable the CS42L84 driver on Fedora (Neal Gompa)
- generic: Remove and cleanups from staging 6.13 (Peter Robinson)
- redhat: configs: Clean up DVB settings in RHEL (Kate Hsuan)
- Move CONFIG_ARCH_TEGRA_241_SOC config/common so that it is enabled for RHEL as well as Fedora. Get rid of uneeded CONFIG_TEGRA241_CMDQV in configs/fedora while we're at it. (Mark Salter)
- fedora: arm64: Enable the rockchip HDMI QP support (Peter Robinson)
- crypto: rng - Fix extrng EFAULT handling (Herbert Xu)
- redhat: configs: rhel: aarch64: Support NV Jetson MIPI camera (Kate Hsuan)
- gitlab-ci: disable clang CI pipelines (Scott Weaver)
- redhat/configs: Remove obsolete arch64/64k/CONFIG_FORCE_MAX_ZONEORDER (Waiman Long)
- Fix up QCOM_EMAC config for Fedora (Justin M. Forbes)
- redhat/configs: automotive: disable CONFIG_IO_URING (Ian Mullins)
- redhat/kernel.spec.template: Link rtla against in-tree libcpupower (Tomas Glozar)
- redhat: configs: enable INTEL_PLR_TPMI for RHEL (David Arcari)
- configs: Enable CONFIG_NETKIT for RHEL (Toke Høiland-Jørgensen)
- redhat: fix build/install targets in netfilter kselftest (Davide Caratti)
- RHEL: disable the btt driver (Jeff Moyer)
- redhat/configs: default to PREEMPT_LAZY on x86, riscv (Michal Schmidt)
- redhat/configs: New config CONFIG_PREEMPT_LAZY (Michal Schmidt)
- crypto: sig - Disable signing (Herbert Xu)
- redhat/configs: enable SERIAL_AMBA_PL011 for automotive (Radu Rendec)
- c10s: disable tests in CKI pipelines (Michael Hofmann)
- redhat: Drop bpftool from kernel spec (Viktor Malik)
- Better fixes for the fedora mismatch (Justin M. Forbes)
- Mismatch fix ups for Fedora (Justin M. Forbes)
- redhat/configs: Enable Intel Bluetooth PCIE drivers (Bastien Nocera)
- One more pending to fix a mismatch (Justin M. Forbes)
- redhat: fix RT PREEMPT configs for Fedora and RHEL (Clark Williams)
- Pending fixes to avoid mismatch for 6.13 (Justin M. Forbes)
- Reset changelog for 6.13 (Justin M. Forbes)
- Reset RHEL_RELEASE for 6.13 (Justin M. Forbes)
- redhat: Move perf_dlfilter.h from libperf-devel to perf (Akihiko Odaki)
- Consolidate configs to common for 6.12 (Justin M. Forbes)
- redhat/configs: cleanup CONFIG_DEV_DAX (David Hildenbrand)
- redhat/configs: cleanup CONFIG_TRANSPARENT_HUGEPAGE_MADVISE for Fedora (David Hildenbrand)
- redhat/configs: cleanup CONFIG_TRANSPARENT_HUGEPAGE (David Hildenbrand)
- redhat/configs: enable CONFIG_TRANSPARENT_HUGEPAGE on s390x in Fedora (David Hildenbrand)
- redhat/configs: automotive: Enable j784s4evm am3359 tscadc configs (Joel Slebodnick)
- redhat/configs: delete renamed CONFIG_MLX5_EN_MACSEC (Michal Schmidt)
- rhel: disable DELL_RBU and cleanup related deps (Peter Robinson)
- crypto: rng - Ensure stdrng is tested before user-space starts (Herbert Xu)
- gitlab-ci: Add CKI_RETRIGGER_PIPELINE (Tales da Aparecida)
- redhat: configs: disable the qla4xxx iSCSI driver (Chris Leech) [RHEL-1242]
- Remove duplicated CONFIGs between automotive and RHEL (Julio Faracco)
- redhat: update self-test data for addition of automotive (Scott Weaver)
- gitlab-ci: enable automotive pipeline (Scott Weaver)
- automotive: move pending configs to automotive/generic (Scott Weaver)
- redhat/configs: change Renesas eMMC driver and dependencies to built-in (Radu Rendec)
- redhat/configs: automotive: Remove automotive specific override CONFIG_OMAP2PLUS_MBOX By removing this automotive-specific override, the configuration will default to the common configuration (CONFIG_OMAP2PLUS_MBOX=m), which enables the driver as a module. (Martin McConnell)
- Config enablement of the Renesas R-Car S4 SoC (Radu Rendec) [RHEL-44306]
- redhat/configs: automotive: Enable USB_CDNS3_TI for TI platforms (Andrew Halaney)
- redhat/configs: automotive: Enable j784s4evm SPI configs (Joel Slebodnick)
- redhat/configs: automotive: Enable TPS6594 MFD (Joel Slebodnick)
- redhat/configs: automotive: stop overriding CRYPTO_ECDH (Andrew Halaney)
- redhat/configs: automotive: Enable PCI_J721E (Andrew Halaney)
- redhat/configs: change some TI platform drivers to built-in (Enric Balletbo i Serra)
- redhat/configs: automotive: Enable TI j784s4evm display dependencies (Andrew Halaney)
- redhat/configs: automotive: match ark configs to cs9 main-automotive (Shawn Doherty) [RHEL-35995]
- redhat/configs: automotive: Enable TI's watchdog driver (Andrew Halaney)
- redhat/configs: automotive: Enable TI's UFS controller (Andrew Halaney)
- redhat/configs: automotive: Enable networking on the J784S4EVM (Andrew Halaney) [RHEL-29245]
- Disable unsupported kernel variants for automotive (Don Zickus)
- Disable CONFIG_RTW88_22BU (Don Zickus)
- redhat: Delete CONFIG_EFI_ZBOOT to use the common CONFIG (Julio Faracco)
- redhat: Update automotive SPEC file with new standards (Julio Faracco)
- redhat: Disable WERROR for automotive temporarily (Julio Faracco)
- redhat: Update spec file with automotive macros (Julio Faracco)
- redhat: Add automotive CONFIGs (Julio Faracco)
- Fedora configs for 6.12 (Justin M. Forbes)
- redhat/configs: Add CONFIG_CRYPTO_HMAC_S390 config (Mete Durlu) [RHEL-50799]
- redhat: configs: common: generic: Clean up EM28XX that are masked behind CONFIG_VIDEO_EM28XX (Kate Hsuan)
- redhat/configs: Update powerpc NR_CPUS config (Mamatha Inamdar)
- redhat: use stricter rule for kunit.ko (Jan Stancek)
- filtermod: fix clk kunit test and kunit location (Nico Pache)
- redhat/configs: enable xr_serial on rhel (Desnes Nunes)
- redhat/configs: enable ATH12K for rhel (Jose Ignacio Tornos Martinez)
- redhat: configs: rhel: generic: x86: Enable IPU6 based MIPI cameras (Kate Hsuan)
- os-build: enable CONFIG_SCHED_CLASS_EXT for RHEL (Phil Auld)
- Fedora 6.12 configs part 1 (Justin M. Forbes)
- redhat: set new gcov configs (Jan Stancek)
- Don't ignore gitkeep files for ark-infra (Don Zickus)
- redhat/kernel.spec: don't clear entire libdir when building tools (Jan Stancek)
- redhat/configs: enable usbip for rhel (Jose Ignacio Tornos Martinez)
- redhat: create 'crashkernel=' addons for UKI (Vitaly Kuznetsov)
- redhat: avoid superfluous quotes in UKI cmdline addones (Vitaly Kuznetsov)
- fedora: arm: updates for 6.12 (Peter Robinson)
- redhat/configs: add bootconfig to kernel-tools package (Brian Masney)
- Enable CONFIG_SECURITY_LANDLOCK for RHEL (Zbigniew Jędrzejewski-Szmek) [RHEL-8810]
- redhat: configs: Drop CONFIG_MEMSTICK_REALTEK_PCI config option (Desnes Nunes)
- Update the RHEL_DIFFERENCES help string (Don Zickus)
- Put build framework for RT kernel in place for Fedora (Clark Williams)
- generic: enable RPMB for all configs that enable MMC (Peter Robinson)
- fedora: riscv: Don't override MMC platform defaults (Peter Robinson)
- common: only enable on MMC_DW_BLUEFIELD (Peter Robinson)
- fedora: aarch64: Stop overriding CONFIG_MMC defaults (Peter Robinson)
- commong: The KS7010 driver has been removed (Peter Robinson)
- Trim Changelog for 6.12 (Justin M. Forbes)
- Enable CONFIG_SECURITY_IPE for Fedora (Zbigniew Jędrzejewski-Szmek)
- redhat: allow to override VERSION_ON_UPSTREAM from command line (Jan Stancek)
- redhat: configs: Enable CONFIG_SECURITY_TOMOYO in Fedora kernels (Tetsuo Handa)
- Revert "Merge branch 'enablement/gpio-expander' into 'os-build'" (Justin M. Forbes)
- redhat: configs: decrease CONFIG_PCP_BATCH_SCALE_MAX (Rafael Aquini)
- redhat/configs: Enable CONFIG_RCU_TRACE in Fedora/REHL kernels (Waiman Long)
- fedora: distable RTL8192E wifi driver (Peter Robinson)
- common: arm64: Fixup and cleanup some SCMI options (Peter Robinson)
- common: Cleanup ARM_SCMI_TRANSPORT options (Peter Robinson)
- configs: fedora/x86: Set CONFIG_CRYPTO_DEV_CCP_DD=y (Hans de Goede)
- Turn on ZRAM_WRITEBACK for Fedora (Justin M. Forbes)
- configs: rhel: Fix designware I2C controllers related config settings (Hans de Goede)
- Enable CONFIG_DMA_NUMA_CMA for x86_64 and aarch64 (Chris von Recklinghausen)
- new config in drivers/phy (Izabela Bakollari)
- configs: fedora: Unset CONFIG_I2C_DESIGNWARE_CORE on s390x (Hans de Goede)
- configs: fedora: Drop duplicate CONFIG_I2C_DESIGNWARE_CORE for x86_64 and aarch64 (Hans de Goede)
- Enable DESIGNWARE_CORE for ppc as well (Justin M. Forbes)
- Fix up I2C_DESIGNWARE_CORE config for Fedora (Justin M. Forbes)
- configs for RT deps (Clark Williams)
- CONFIG_OF_OVERLAY: enable for aarch64 and powerpc (Scott Weaver)
- redhat: enable changes to build rt variants (Clark Williams)
- redhat: clean up pending-rhel (Patrick Talbert)
- Enable CONFIG_SCHED_CLASS_EXT for Fedora (Jose Fernandez)
- redhat/configs: new config in arch/s390 (Izabela Bakollari)
- redhat: ignore rpminspect runpath report on selftests/bpf/cpuv4/urandom_read (Viktor Malik)
- [fedora] configs: add end of file newline to CONFIG_DMADEVICES_VDEBUG (Patrick Talbert)
- unset CONFIG_DMADEVICES_VDEBUG (cmurf)
- stop installing tools/build/Build, gone with ea974028a049f (Thorsten Leemhuis)
- redhat/configs: Update LOCKDEP configs (Waiman Long)
- uki-virt: Add i18n module (Vitaly Kuznetsov)
- uki-virt: Drop DBUS support from initramfs (Vitaly Kuznetsov)
- uki-virt: Drop redundant modules from dracut-virt.conf (Vitaly Kuznetsov)
- uki-virt: Drop usrmount dracut module (Vitaly Kuznetsov)
- redhat: new AMCC_QT2025_PHY config in drivers/net/phy (Patrick Talbert)
- redhat: change schedule jobs image from cki-tools to builder-rawhide (Patrick Talbert)
- Add CONFIG_SND_SOC_RT1320_SDW to pending-rhel for mismatch (Justin M. Forbes)
- Turn on CONFIG_SND_SOC_RT1320_SDW in pending rhel (Justin M. Forbes)
- configs: disable CONFIG_AMCC_QT2025_PHY in pending (Patrick Talbert)
- fedora: turn on CONFIG_FDMA for powerpc (Patrick Talbert)
- Turn on CONFIG_FDMA in pending for Fedora arm and riscv to avoid a mismatch (Justin M. Forbes)
- Reset RHEL_RELEASE for 6.12 (Justin M. Forbes)
- Consolidate configs into common for 6.11 kernels (Justin M. Forbes)
- uki-virt: add systemd-cryptsetup module (Vitaly Kuznetsov)
- redhat/docs: fix command to install missing build dependencies (Davide Cavalca)
- spec: Respect rpmbuild --without debuginfo (Orgad Shaneh)
- fedora/configs: enable GPIO expander drivers (Rupinderjit Singh)
- redhat/configs: Switch to the Rust implementation of AX88796B_PHY driver for Fedora (Neal Gompa)
- redhat: Turn on support for Rust code in Fedora (Neal Gompa)
- Turn off RUST for risc-v (Justin M. Forbes)
- gitlab-ci: allow failure of clang LTO pipelines (Michael Hofmann)
- redhat/configs: Consolidate the CONFIG_KVM_BOOK3S_HV_P*_TIMING switches (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_KVM_SW_PROTECTED_VM switch (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_KVM_HYPERV switch (Thomas Huth)
- redhat/configs: Consolidate the CONFIG_KVM_AMD_SEV switch (Thomas Huth)
- Cleanup some riscv CONFIG locations (Justin M. Forbes)
- Fix up pending riscv Fedora configs post merge (Justin M. Forbes)
- fedora/configs: Enable SCMI configuration (Rupinderjit Singh)
- Remove S390 special config for PHYLIB (Justin M. Forbes)
- Disable ELN for riscv64 (Isaiah Stapleton)
- redhat: add checks to ensure only building riscv64 on fedora (Isaiah Stapleton)
- redhat: Add missing riscv fedora configs (Isaiah Stapleton)
- Add riscv64 to the CI pipelines (Isaiah Stapleton)
- redhat: Regenerate dist-self-test-data for riscv64 (Isaiah Stapleton)
- redhat: Add riscv config changes for fedora (David Abdurachmanov)
- redhat: Add support for riscv (David Abdurachmanov)
- redhat: Do not include UKI addons twice (Vitaly Kuznetsov)
- redhat: update gating.yml (Michael Hofmann)
- Remove CONFIG_FSCACHE_DEBUG as it has been renamed (Justin M. Forbes)
- Set Fedora configs for 6.11 (Justin M. Forbes)
- redhat/configs: Microchip lan743x driver (Izabela Bakollari)
- redhat: include resolve_btfids in kernel-devel (Jan Stancek)
- redhat: workaround CKI cross compilation for scripts (Jan Stancek)
- spec: fix "unexpected argument to non-parametric macro" warnings (Jan Stancek)
- Add weakdep support to the kernel spec (Justin M. Forbes)
- redhat: configs: disable PF_KEY in RHEL (Sabrina Dubroca)
- crypto: akcipher - Disable signing and decryption (Vladis Dronov) [RHEL-54183] {CVE-2023-6240}
- crypto: dh - implement FIPS PCT (Vladis Dronov) [RHEL-54183]
- crypto: ecdh - disallow plain "ecdh" usage in FIPS mode (Vladis Dronov) [RHEL-54183]
- crypto: seqiv - flag instantiations as FIPS compliant (Vladis Dronov) [RHEL-54183]
- [kernel] bpf: set default value for bpf_jit_harden (Artem Savkov) [RHEL-51896]
- fedora: disable CONFIG_DRM_WERROR (Patrick Talbert)
- redhat/configs: Disable dlm in rhel configs (Andrew Price)
- rhel: aarch64: enable required PSCI configs (Peter Robinson)
- fedora: Enable AF8133J Magnetometer driver (Peter Robinson)
- redhat: spec: add cachestat kselftest (Eric Chanudet)
- redhat: hmac sign the UKI for FIPS (Vitaly Kuznetsov)
- not upstream: Disable vdso getrandom when FIPS is enabled (Herbert Xu)
- kernel: config: enable erofs lzma compression (Ian Kent)
- fedora: disable RTL8192CU in Fedora (Peter Robinson)
- redhat: Fix the ownership of /lib/modules/<kversion> directory (Vitaly Kuznetsov)
- new configs in drivers/phy (Izabela Bakollari)
- Add support to rh_waived cmdline boot parameter (Ricardo Robaina) [RHEL-26170]
- redhat/configs: Disable gfs2 in rhel configs (Andrew Price)
- redhat/uki_addons/virt: add common FIPS addon (Emanuele Giuseppe Esposito)
- redhat/kernel.spec: add uki_addons to create UKI kernel cmdline addons (Emanuele Giuseppe Esposito)
- rh_flags: fix failed when register_sysctl_sz rh_flags_table to kernel (Ricardo Robaina) [RHEL-52629]
- redhat/dracut-virt.conf: add systemd-veritysetup module (Emanuele Giuseppe Esposito)
- redhat/configs: enable CONFIG_LOCK_STAT on the debug kernels for aarch64 (Brian Masney)
- redhat/configs: enable CONFIG_KEYBOARD_GPIO_POLLED for RHEL on aarch64 (Luiz Capitulino)
- redhat/configs: fedora: Enable new Qualcomm configs (Andrew Halaney)
- redhat/configs/fedora: set CONFIG_CRYPTO_CURVE25519_PPC64 (Dan Horák)
- fedora: Updates for 6.11 merge (Peter Robinson)
- fedora: enable new mipi sensors and devices (Peter Robinson)
- arm64: enable CRYPTO_DEV_TEGRA on RHEL (Peter Robinson)
- redhat/kernel.spec: fix file listed twice warning for "kernel" subdir (Jan Stancek)
- redhat/configs: Double MAX_LOCKDEP_ENTRIES for RT debug kernels (Waiman Long) [RHEL-43425]
- Support the first day after a rebase (Don Zickus)
- Support 2 digit versions properly (Don Zickus)
- Automation cleanups for rebasing rt-devel and automotive-devel (Don Zickus)
- fedora: set CONFIG_REGULATOR_RZG2L_VBCTRL as a module for arm64 (Patrick Talbert)
- gitlab-ci: restore bot pipeline behavior (Michael Hofmann)
- redhat/kernel.spec: drop extra right curly bracket in kernel_kvm_package (Jan Stancek)
- redhat/configs: enable gpio_keys driver for RHEL on aarch64 (Luiz Capitulino)
- Move NET_VENDOR_MICROCHIP from common to rhel (Justin M. Forbes)
- redhat/configs: enable some RTCs for RHEL on aarch64 (Luiz Capitulino)
- redhat/configs: enable some regulators for RHEL (Luiz Capitulino)
- redhat/config: disable CXL and CXLFLASH drivers (Dan Horák)
- Fix up config mismatches in pending (Justin M. Forbes)
- redhat/configs: Enable watchdog devices modelled by qemu (Richard W.M. Jones) [RHEL-40937]
- rhel: cleanup unused media tuner configs (Peter Robinson)
- all: cleanup MEDIA_CONTROLLER options (Peter Robinson)
- redhat: kernel.spec: add s390x to livepatching kselftest builds (Joe Lawrence)
- Flip CONFIG_DIMLIB back to inline (Justin M. Forbes)
- Add vfio/nvgrace-gpu driver CONFIG to RHEL-9.5 ARM64 (Donald Dutile)
- Enable CONFIG_RTC_DRV_TEGRA for RHEL (Luiz Capitulino)
- redhat: rh_flags: declare proper static methods when !CONFIG_RHEL_DIFFERENCES (Rafael Aquini)
- redhat: configs: enable CONFIG_TMPFS_QUOTA for both Fedora and RHEL (Rafael Aquini)
- Fix up mismatches in the 6.11 merge window. (Justin M. Forbes)
- Reset Changelog after rebase (Justin M. Forbes)
- Reset RHEL_RELEASE for the 6.11 cycle (Justin M. Forbes)
- redhat/configs: Enable CONFIG_VMWARE_VMCI/CONFIG_VMWARE_VMCI_VSOCKETS for RHEL (Vitaly Kuznetsov)
- Consolidate configs to common for 6.10 (Justin M. Forbes)
- redhat/configs: Enable CONFIG_PTP_1588_CLOCK_MOCK in kernel-modules-internal (Davide Caratti)
- fedora: enabled XE GPU drivers on all arches (Peter Robinson)
- Flip SND_SOC_CS35L56_SPI from off to module for RHEL (Justin M. Forbes)
- Flip DIMLIB from built-in to module for RHEL (Justin M. Forbes)
- Also remove the zfcpdump BASE_SMALL config (Justin M. Forbes)
- redhat: Add cgroup kselftests to kernel-selftests-internal (Waiman Long) [RHEL-43556]
- Revert "redhat/configs: Disable CONFIG_INFINIBAND_HFI1 and CONFIG_INFINIBAND_RDMAVT" (Kamal Heib)
- Remove new for GITLAB_TOKEN (Don Zickus)
- Set Fedora configs for 6.10 (Justin M. Forbes)
- Fedora: minor driver updates (Peter Robinson)
- redhat/configs: Remove obsolete x86 CPU mitigations config files (Waiman Long)
- redhat/configs: increase CONFIG_DEFAULT_MMAP_MIN_ADDR from 32K to 64K for aarch64 (Brian Masney)
- redhat/configs: Re-enable CONFIG_KEXEC for Fedora (Philipp Rudo)
- disable LR_WPAN for RHEL10 (Chris von Recklinghausen) [RHEL-40251]
- Turn on USB_SERIAL_F81232 for Fedora (Justin M. Forbes)
- redhat/scripts/filtermods.py: show all parent/child kmods in report (Jan Stancek)
- redhat/kernel.spec: capture filtermods.py return code (Jan Stancek)
- redhat/kernel.spec: fix run of mod-denylist (Jan Stancek)
- gitlab-ci: remove unused RHMAINTAINERS variable (Michael Hofmann)
- gitlab-ci: use environments for jobs that need access to push/gitlab secrets (Michael Hofmann)
- gitlab-ci: default to os-build for all maintenance jobs (Michael Hofmann)
- gitlab-ci: use the common git repo setup cki-gating as well (Michael Hofmann)
- gitlab-ci: help maintenance jobs to cope with missing private key (Michael Hofmann)
- gitlab-ci: use a common git repo setup for all maintenance jobs (Michael Hofmann)
- gitlab-ci: move repo setup script into script template holder (Michael Hofmann)
- gitlab-ci: move maintenance job DIST variable into common template (Michael Hofmann)
- gitlab-ci: move maintenance job rules into common template (Michael Hofmann)
- gitlab-ci: move maintenance job retry field into common template (Michael Hofmann)
- gitlab-ci: provide common non-secret schedule trigger variables (Michael Hofmann)
- gitlab-ci: rename .scheduled_setup to .git_setup (Michael Hofmann)
- gitlab-ci: move script snippets into separate template (Michael Hofmann)
- gitlab-ci: rename maintenance jobs (Michael Hofmann)
- gitlab-ci: introduce job template for maintenance jobs (Michael Hofmann)
- Turn on KASAN_HW_TAGS for Fedora aarch64 debug kernels (Justin M. Forbes)
- redhat: kernel.spec: add missing sound/soc/sof/sof-audio.h to kernel-devel package (Jaroslav Kysela)
- redhat/kernel.spec: fix attributes of symvers file (Jan Stancek)
- redhat: add filtermods rule for iommu tests (Jan Stancek)
- fedora: arm: Enable basic support for S32G-VNP-RDB3 board (Enric Balletbo i Serra)
- redhat: make bnx2xx drivers unmaintained in rhel-10 (John Meneghini) [RHEL-36646 RHEL-41231]