-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkernel.changelog
3003 lines (2937 loc) · 192 KB
/
kernel.changelog
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
* Fri Mar 07 2025 Augusto Caringi <[email protected]> [6.13.6-0]
- Fix up some debug module loading issues due to BTF mismatch (Justin M. Forbes)
- Linux v6.13.6
Resolves:
* Thu Feb 27 2025 Justin M. Forbes <[email protected]> [6.13.5-0]
- fuse: revert back to __readahead_folio() for readahead (Joanne Koong)
- Linux v6.13.5
Resolves:
* Sat Feb 22 2025 Justin M. Forbes <[email protected]> [6.13.4-0]
- Config update for 6.13.4 stable (Justin M. Forbes)
- mei: vsc: Use "wakeuphostint" when getting the host wakeup GPIO (Hans de Goede)
- Fix up mismatch of CONFIG_CPUFREQ_DT_PLATDEV for automotive (Justin M. Forbes)
- Linux v6.13.4
Resolves:
* Mon Feb 17 2025 Justin M. Forbes <[email protected]> [6.13.3-0]
- CONFIG_CPUFREQ_DT_PLATDEV is bool now (Justin M. Forbes)
- efi,lockdown: fix kernel lockdown on Secure Boot (Ondrej Mosnacek) {CVE-2025-1272}
- Config update for 6.13.2 (Justin M. Forbes)
- Linux v6.13.3
Resolves:
* Sat Feb 08 2025 Justin M. Forbes <[email protected]> [6.13.2-0]
- Fix up configs for CONFIG_USB_ONBOARD_DEV_USB5744 (Justin M. Forbes)
- fedora: enable USB device USB5744 (Peter Robinson)
- Linux v6.13.2
Resolves:
* Sat Feb 01 2025 Justin M. Forbes <[email protected]> [6.13.1-0]
- media: ov08x40: Don't log ov08x40_check_hwcfg() errors twice (Hans de Goede)
- media: ov08x40: Add missing '\n' to ov08x40_check_hwcfg() error messages (Hans de Goede)
- media: ov08x40: Add missing ov08x40_identify_module() call on stream-start (Hans de Goede)
- media: ov08x40: Improve ov08x40_[read|write]_reg() error returns (Hans de Goede)
- media: ov08x40: Improve ov08x40_identify_module() error logging (Hans de Goede)
- media: ov08x40: Move ov08x40_identify_module() function up (Hans de Goede)
- media: ov08x40: Get clock on ACPI platforms too (Hans de Goede)
- media: ov08x40: Get reset GPIO and regulators on ACPI platforms too (Hans de Goede)
- media: ov08x40: Move fwnode_graph_get_next_endpoint() call up (Hans de Goede)
- media: ov08x40: Properly turn sensor on/off when runtime-suspended (Hans de Goede)
- Turn on drivers for INTEL_THC_HID (Justin M. Forbes)
- HID: intel-thc-hid: fix build errors in um mode (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: fix potential memory corruption (Even Xu)
- HID: intel-thc-hid: intel-thc: Fix error code in thc_i2c_subip_init() (Dan Carpenter)
- HID: intel-thc-hid: intel-quicki2c: Add PM implementation (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: Complete THC QuickI2C driver (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: Add HIDI2C protocol implementation (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C ACPI interfaces (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C driver hid layer (Even Xu)
- HID: intel-thc-hid: intel-quicki2c: Add THC QuickI2C driver skeleton (Even Xu)
- HID: intel-thc-hid: intel-quickspi: Add PM implementation (Even Xu)
- HID: intel-thc-hid: intel-quickspi: Complete THC QuickSPI driver (Xinpeng Sun)
- HID: intel-thc-hid: intel-quickspi: Add HIDSPI protocol implementation (Even Xu)
- HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI ACPI interfaces (Even Xu)
- HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI driver hid layer (Even Xu)
- HID: intel-thc-hid: intel-quickspi: Add THC QuickSPI driver skeleton (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC I2C config interfaces (Even Xu)
- HID: intel-thc-hid: intel-thc: Add THC SPI config interfaces (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC interrupt handler (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC LTR interfaces (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC DMA interfaces (Even Xu)
- HID: intel-thc-hid: intel-thc: Add APIs for interrupt (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC PIO operation APIs (Xinpeng Sun)
- HID: intel-thc-hid: intel-thc: Add THC registers definition (Xinpeng Sun)
- HID: intel-thc-hid: Add basic THC driver skeleton (Xinpeng Sun)
- HID: THC: Add documentation (Even Xu)
- redhat: fix modules.order target (Scott Weaver)
- kernel.spec: update license field (Scott Weaver)
- x86/insn_decoder_test: allow longer symbol-names (David Rheinsberg)
- Initial setup for stable Fedora releases (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)
- Linux v6.13.1
Resolves:
* Mon Jan 20 2025 Fedora Kernel Team <[email protected]> [6.13.0-61]
- 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)
- Linux v6.13.0
Resolves: RHEL-68296
* Sun Jan 19 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.fda5e3f28400.60]
- Linux v6.13.0-0.rc7.fda5e3f28400
Resolves:
* Sat Jan 18 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.595523945be0.59]
- Linux v6.13.0-0.rc7.595523945be0
Resolves:
* Fri Jan 17 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.9bffa1ad25b8.58]
- 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)
- Linux v6.13.0-0.rc7.9bffa1ad25b8
Resolves:
* Thu Jan 16 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.619f0b6fad52.57]
- Fedora 6.13 configs part 2 (Justin M. Forbes)
- Fedora 6.13 configs part 1 (Justin M. Forbes)
Resolves:
* Wed Jan 15 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.619f0b6fad52.56]
- redhat/configs: enable CONFIG_VFAT_FS as a module (Dorinda Bassey)
- redhat: create 'debug' addon for UKI (Li Tian)
- Linux v6.13.0-0.rc7.619f0b6fad52
Resolves:
* Tue Jan 14 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.c45323b7560e.55]
- kernel.spec: Build cpupower on riscv64 (Yanko Kaneti)
- Linux v6.13.0-0.rc7.c45323b7560e
Resolves:
* Mon Jan 13 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc7.54]
- Linux v6.13.0-0.rc7
Resolves:
* Sun Jan 12 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.b62cef9a5c67.53]
- Linux v6.13.0-0.rc6.b62cef9a5c67
Resolves:
* Sat Jan 11 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.77a903cd8e5a.52]
- Linux v6.13.0-0.rc6.77a903cd8e5a
Resolves:
* Fri Jan 10 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.2144da25584e.51]
- 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)
- Linux v6.13.0-0.rc6.2144da25584e
Resolves: RHEL-24137
* Thu Jan 09 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.eea6e4b4dfb8.50]
- Linux v6.13.0-0.rc6.eea6e4b4dfb8
Resolves:
* Wed Jan 08 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.09a0fa92e5b4.49]
- 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)
- Linux v6.13.0-0.rc6.09a0fa92e5b4
Resolves: RHEL-72093
* Tue Jan 07 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.fbfd64d25c7a.48]
- Linux v6.13.0-0.rc6.fbfd64d25c7a
Resolves:
* Mon Jan 06 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc6.47]
- Linux v6.13.0-0.rc6
Resolves:
* Sun Jan 05 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.ab75170520d4.46]
- Linux v6.13.0-0.rc5.ab75170520d4
Resolves:
* Sat Jan 04 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.63676eefb7a0.45]
- Linux v6.13.0-0.rc5.63676eefb7a0
Resolves:
* Fri Jan 03 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.0bc21e701a6f.44]
- Linux v6.13.0-0.rc5.0bc21e701a6f
Resolves:
* Thu Jan 02 2025 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.56e6a3499e14.43]
- Linux v6.13.0-0.rc5.56e6a3499e14
Resolves:
* Tue Dec 31 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.ccb98ccef0e5.42]
- Linux v6.13.0-0.rc5.ccb98ccef0e5
Resolves:
* Mon Dec 30 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc5.41]
- Linux v6.13.0-0.rc5
Resolves:
* Sun Dec 29 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.059dd502b263.40]
- Linux v6.13.0-0.rc4.059dd502b263
Resolves:
* Sat Dec 28 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.fd0584d220fe.39]
- Linux v6.13.0-0.rc4.fd0584d220fe
Resolves:
* Fri Dec 27 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.d6ef8b40d075.38]
- Linux v6.13.0-0.rc4.d6ef8b40d075
Resolves:
* Wed Dec 25 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.9b2ffa6148b1.37]
- Linux v6.13.0-0.rc4.9b2ffa6148b1
Resolves:
* Tue Dec 24 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.f07044dd0df0.36]
- Linux v6.13.0-0.rc4.f07044dd0df0
Resolves:
* Mon Dec 23 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc4.35]
- Linux v6.13.0-0.rc4
Resolves:
* Sun Dec 22 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.48f506ad0b68.34]
- Linux v6.13.0-0.rc3.48f506ad0b68
Resolves:
* Sat Dec 21 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.499551201b5f.33]
- Linux v6.13.0-0.rc3.499551201b5f
Resolves:
* Fri Dec 20 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.8faabc041a00.32]
- Linux v6.13.0-0.rc3.8faabc041a00
Resolves:
* Thu Dec 19 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.eabcdba3ad40.31]
- redhat/configs: automotive: disable CONFIG_AIO (Davide Caratti)
- Linux v6.13.0-0.rc3.eabcdba3ad40
Resolves:
* Wed Dec 18 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.aef25be35d23.30]
- Linux v6.13.0-0.rc3.aef25be35d23
Resolves:
* Tue Dec 17 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.f44d154d6e3d.29]
- 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)
- Linux v6.13.0-0.rc3.f44d154d6e3d
Resolves:
* Mon Dec 16 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc3.28]
- redhat/configs: automotive: disable CONFIG_NET_DROP_MONITOR (Davide Caratti)
- Linux v6.13.0-0.rc3
Resolves:
* Sun Dec 15 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.2d8308bf5b67.27]
- Linux v6.13.0-0.rc2.2d8308bf5b67
Resolves:
* Sat Dec 14 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.a446e965a188.26]
- Linux v6.13.0-0.rc2.a446e965a188
Resolves:
* Fri Dec 13 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.f932fb9b4074.25]
- redhat/configs: Enable the CS42L84 driver on Fedora (Neal Gompa)
- Linux v6.13.0-0.rc2.f932fb9b4074
Resolves:
* Thu Dec 12 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.231825b2e1ff.24]
- 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)
- Linux v6.13.0-0.rc2.231825b2e1ff
Resolves:
* Wed Dec 11 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.f92f4749861b.23]
- crypto: rng - Fix extrng EFAULT handling (Herbert Xu)
- redhat: configs: rhel: aarch64: Support NV Jetson MIPI camera (Kate Hsuan)
- Linux v6.13.0-0.rc2.f92f4749861b
Resolves:
* Tue Dec 10 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.7cb1b4663150.22]
- 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)
- Linux v6.13.0-0.rc2.7cb1b4663150
Resolves:
* Mon Dec 09 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc2.21]
- redhat/configs: automotive: disable CONFIG_IO_URING (Ian Mullins)
- Linux v6.13.0-0.rc2
Resolves:
* Sun Dec 08 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.7503345ac5f5.20]
- Linux v6.13.0-0.rc1.7503345ac5f5
Resolves:
* Sat Dec 07 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.b5f217084ab3.19]
- Linux v6.13.0-0.rc1.b5f217084ab3
Resolves:
* Fri Dec 06 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.b8f52214c61a.18]
- redhat/kernel.spec.template: Link rtla against in-tree libcpupower (Tomas Glozar)
- Linux v6.13.0-0.rc1.b8f52214c61a
Resolves:
* Thu Dec 05 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.feffde684ac2.17]
- 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)
Resolves:
* Wed Dec 04 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.feffde684ac2.16]
- Linux v6.13.0-0.rc1.feffde684ac2
Resolves:
* Tue Dec 03 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.cdd30ebb1b9f.15]
- redhat/configs: default to PREEMPT_LAZY on x86, riscv (Michal Schmidt)
- redhat/configs: New config CONFIG_PREEMPT_LAZY (Michal Schmidt)
- Linux v6.13.0-0.rc1.cdd30ebb1b9f
Resolves:
* Mon Dec 02 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc1.e70140ba0d2b.14]
- Linux v6.13.0-0.rc1.e70140ba0d2b
Resolves:
* Sat Nov 30 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.2ba9f676d0a2.13]
- Linux v6.13.0-0.rc0.2ba9f676d0a2
Resolves:
* Fri Nov 29 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.7af08b57bcb9.12]
- Linux v6.13.0-0.rc0.7af08b57bcb9
Resolves:
* Thu Nov 28 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.b86545e02e8c.11]
- crypto: sig - Disable signing (Herbert Xu)
- Linux v6.13.0-0.rc0.b86545e02e8c
Resolves:
* Wed Nov 27 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.aaf20f870da0.10]
- 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)
- Linux v6.13.0-0.rc0.aaf20f870da0
Resolves:
* Tue Nov 26 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.7eef7e306d3c.9]
- Linux v6.13.0-0.rc0.7eef7e306d3c
Resolves:
* Sun Nov 24 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.9f16d5e6f220.8]
- Linux v6.13.0-0.rc0.9f16d5e6f220
Resolves:
* Sat Nov 23 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.228a1157fb9f.7]
- Better fixes for the fedora mismatch (Justin M. Forbes)
- Mismatch fix ups for Fedora (Justin M. Forbes)
- Linux v6.13.0-0.rc0.228a1157fb9f
Resolves:
* Sat Nov 23 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.28eb75e178d3.6]
- Linux v6.13.0-0.rc0.28eb75e178d3
Resolves:
* Fri Nov 22 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.fcc79e1714e8.5]
- redhat/configs: Enable Intel Bluetooth PCIE drivers (Bastien Nocera)
Resolves:
* Thu Nov 21 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.fcc79e1714e8.4]
- 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)
- Linux v6.13.0-0.rc0.fcc79e1714e8
Resolves:
* Thu Nov 21 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.bf9aa14fc523.3]
- Linux v6.13.0-0.rc0.bf9aa14fc523
Resolves:
* Wed Nov 20 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.158f238aa69d.2]
- Reset changelog for 6.13 (Justin M. Forbes)
Resolves:
* Tue Nov 19 2024 Fedora Kernel Team <[email protected]> [6.13.0-0.rc0.158f238aa69d.1]
- 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]
- redhat/configs: Disable CONFIG_NFP (Kamal Heib) [RHEL-36647]
- Enable CONFIG_PWRSEQ_{SIMPLIE,EMMC} on aarch64 (Charles Mirabile)
- Fix SERIAL_SC16IS7XX configs for Fedora (Justin M. Forbes)
- Enable ALSA (CONFIG_SND) on aarch64 (Charles Mirabile) [RHEL-40411]
- redhat: Remove DIST_BRANCH variable (Eder Zulian)
- gitlab-ci: merge ark-latest before tagging cki-gating (Michael Hofmann)
- gitlab-ci: do not merge ark-latest for gating pipelines for Rawhide (Michael Hofmann)
- disable CONFIG_KVM_INTEL_PROVE_VE (Paolo Bonzini)
- redhat: remove the merge subtrees script (Derek Barbosa)
- redhat: rhdocs: delete .get_maintainer.conf (Derek Barbosa)
- redhat: rhdocs: Remove the rhdocs directory (Derek Barbosa)
- redhat/configs: Disable CONFIG_QLA3XXX (Kamal Heib) [RHEL-36646]
- redhat/configs: fedora: Enable some drivers for IPU6 support (Hans de Goede)
- redhat: add missing UKI_secureboot_cert hunk (Patrick Talbert)
- redhat/kernel.spec: keep extra modules in original directories (Jan Stancek)
- redhat/configs: Move CONFIG_BLK_CGROUP_IOCOST=y to common/generic (Waiman Long)
- Turn on CONFIG_MFD_QCOM_PM8008 for Fedora aarch64 (Justin M. Forbes)
- redhat: Build IMA CA certificate into the Fedora kernel (Coiby Xu)
- Move CONFIG_RAS_FMPM to the proper location (Aristeu Rozanski)
- redhat/configs: Remove CONFIG_NET_ACT_IPT (Ivan Vecera)
- gitlab-ci: add kernel-automotive pipelines (Michael Hofmann)
- Enable CEC support for TC358743 (Peter Robinson)
- fedora: arm: Enable ARCH_R9A09G057 (Peter Robinson)
- fedora: updates for the 6.10 kernel (Peter Robinson)
- fedora: arm: Enable the MAX96706 GMSL module (Peter Robinson)
- redhat: Switch UKI to using its own SecureBoot cert (from system-sb-certs) (Jan Stancek)
- redhat: Add RHEL specifc .sbat section to UKI (Jan Stancek)
- kernel.spec: add iommu selftests to kernel-selftests-internal (Eder Zulian) [RHEL-32895]
- redhat/configs: fedora: aarch64: Re-enable CUSE (Neal Gompa)
- redhat: pass correct RPM_VMLINUX_H to bpftool install (Jan Stancek)
- rh_flags: Rename rh_features to rh_flags (Ricardo Robaina) [RHEL-32987]
- kernel: rh_features: fix reading empty feature list from /proc (Ricardo Robaina) [RHEL-32987]
- rh_features: move rh_features entry to sys/kernel (Ricardo Robaina) [RHEL-32987]
- rh_features: convert to atomic allocation (Ricardo Robaina) [RHEL-32987]
- add rh_features to /proc (Ricardo Robaina) [RHEL-32987]
- add support for rh_features (Ricardo Robaina) [RHEL-32987]
- Drop kexec_load syscall support (Baoquan He)
- New configs in lib/kunit (Fedora Kernel Team)
- Turn off KUNIT_FAULT_TEST as it causes problems for CI (Justin M. Forbes)
- Add a config entry in pending for CONFIG_DRM_MSM_VALIDATE_XML (Justin M. Forbes)
- Flip CONFIG_SND_SOC_CS35L56_SPI in pending to avoid a mismatch (Justin M. Forbes)
- Fix up a mismatch for RHEL (Justin M. Forbes)
- Reset changelog after rebase (Justin M. Forbes)
- Reset RHEL_RELEASE to 0 for 6.10 (Justin M. Forbes)
- configs: move CONFIG_BLK_DEV_UBLK into rhel/configs/generic (Ming Lei)
- configs: move CONFIG_BLK_SED_OPAL into redhat/configs/common/generic (Ming Lei)
- RHEL-21097: rhel: aarch64 stop blocking a number of HW sensors (Peter Robinson)
- redhat/configs: enable RTL8822BU for rhel (Jose Ignacio Tornos Martinez)
- redhat/configs: remove CONFIG_DMA_PERNUMA_CMA and switch CONFIG_DMA_NUMA_CMA off (Jerry Snitselaar)
- redhat: add IMA certificates (Jan Stancek)
- redhat/kernel.spec: fix typo in move_kmod_list() variable (Jan Stancek)
- redhat: make filtermods.py less verbose by default (Jan Stancek)
- scsi: sd: condition probe_type under RHEL_DIFFERENCES (Eric Chanudet)
- scsi: sd: remove unused sd_probe_types (Eric Chanudet)
- Turn on INIT_ON_ALLOC_DEFAULT_ON for Fedora (Justin M. Forbes)
- Consolidate configs to common for 6.9 (Justin M. Forbes)
- redhat/rhel_files: move tipc.ko and tipc_diag.ko to modules-extra (Xin Long) [RHEL-23931]
- redhat: move amd-pstate-ut.ko to modules-internal (Jan Stancek)
- redhat/configs: enable CONFIG_LEDS_TRIGGER_NETDEV also for RHEL (Michal Schmidt) [RHEL-32110]
- redhat/configs: Remove CONFIG_AMD_IOMMU_V2 (Jerry Snitselaar)
- Set DEBUG_INFO_BTF_MODULES for Fedora (Justin M. Forbes)
- redhat: Use redhatsecureboot701 for ppc64le (Jan Stancek)
- redhat: switch the kernel package to use certs from system-sb-certs (Jan Stancek)
- redhat: replace redhatsecureboot303 signing key with redhatsecureboot601 (Jan Stancek)
- redhat: drop certificates that were deprecated after GRUB's BootHole flaw (Jan Stancek)
- redhat: correct file name of redhatsecurebootca1 (Jan Stancek)
- redhat: align file names with names of signing keys for ppc and s390 (Jan Stancek)
- redhat/configs: Enable CONFIG_DM_VDO in RHEL (Benjamin Marzinski)
- redhat/configs: Enable DRM_NOUVEAU_GSP_DEFAULT everywhere (Neal Gompa)
- kernel.spec: adjust for livepatching kselftests (Joe Lawrence)
- redhat/configs: remove CONFIG_TEST_LIVEPATCH (Joe Lawrence)
- Turn on CONFIG_RANDOM_KMALLOC_CACHES for Fedora (Justin M. Forbes)
- Set Fedora configs for 6.9 (Justin M. Forbes)
- gitlab-ci: enable pipelines with c10s buildroot (Michael Hofmann)
- Turn on ISM for Fedora (Justin M. Forbes)
- redhat/configs: enable CONFIG_TEST_LOCKUP for non-debug kernels (Čestmír Kalina)
- redhat/rhel_files: add test_lockup.ko to modules-extra (Čestmír Kalina)
- Turn off some Fedora UBSAN options to avoid false positives (Justin M. Forbes)
- fedora: aarch64: Enable a QCom Robotics platforms requirements (Peter Robinson)
- fedora: updates for 6.9 merge window (Peter Robinson)
- gitlab-ci: rename GitLab jobs ark -> rawhide (Michael Hofmann)
- gitlab-ci: harmonize DataWarehouse tree names (Michael Hofmann)
- redhat/configs: Enable CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON for rhel (Jerry Snitselaar)
- spec: make sure posttrans script doesn't fail if /boot is non-POSIX (glb)
- Turn on UBSAN for Fedora (Justin M. Forbes)
- Turn on XEN_BALLOON_MEMORY_HOTPLUG for Fedora (Justin M. Forbes)
- docs: point out that python3-pyyaml is now required (Thorsten Leemhuis)
- Use LLVM=1 for clang_lto build (Nikita Popov)
- redhat: fix def_variants.yaml check (Jan Stancek)
- redhat: sanity check yaml files (Jan Stancek)
- spec: rework filter-mods and mod-denylist (Jan Stancek)
- redhat/configs: remove CONFIG_INTEL_MENLOW as it is obsolete. (David Arcari)
- arch/x86: Fix XSAVE check for x86_64-v2 check (Prarit Bhargava)
- redhat/Makefile.variables: unquote a variable (Thorsten Leemhuis)
- redhat/configs: build in Tegra210 SPI driver (Mark Salter)
- redhat/configs: aarch64: Enable ARM_FFA driver (Mark Salter)
- Base automotive-devel on rt-devel (Don Zickus)
- redhat/configs: Enable CONFIG_AMDTEE for x86 (David Arcari)
- redhat/configs: enable CONFIG_TEST_LOCKUP for debug kernel (Čestmír Kalina)
- kernel.spec: fix libperf-debuginfo content (Jan Stancek)
- Turn on DM_VDO for Fedora (Justin M. Forbes)
- redhat: make libperf-devel require libperf %%{version}-%%{release} (Jan Stancek)
- kernel.spec: drop custom mode also for System.map ghost entry (Jan Stancek)
- Octopus merges are too conservative, serialize instead (Don Zickus)
- Add tracking branches for rt-devel (Don Zickus)
- all: clean-up i915 (Peter Robinson)
- Turn on CONFIG_READ_ONLY_THP_FOR_FS for Fedora (Justin M. Forbes)
- redhat/kernel.spec.template: fix rtonly build (Jan Stancek)
- redhat/kernel.spec.template: add extra flags for tools build (Scott Weaver)
- Add iio-test-gts to mod-internal.list (Thorsten Leemhuis)
- redhat/kernel.spec.template: update license (Scott Weaver)
- Fix typo in maintaining.rst file (Augusto Caringi)
- Enable DRM_CDNS_DSI_J721E for fedora (Andrew Halaney)
- gitlab-ci: do not merge ark-latest for gating pipelines (Michael Hofmann)
- fedora: Enable MCP9600 (Peter Robinson)
- redhat/configs: Enable & consolidate BF-3 drivers config (Luiz Capitulino)
- redhat: Fix RT kernel kvm subpackage requires (Juri Lelli)
- Add new of_test module to mod-internal.list (Thorsten Leemhuis)
- Add new string kunit modules to mod-internal.list (Thorsten Leemhuis)
- redhat/kernel.spec.template: enable cross for base/RT (Peter Robinson)
- redhat/kernel.spec.template: Fix cross compiling (Peter Robinson)
- arch/x86/kernel/setup.c: fixup rh_check_supported (Scott Weaver)
- Enable CONFIG_USB_ONBOARD_HUB for RHEL (Charles Mirabile)
- redhat/Makefile.cross: Add CROSS_BASEONLY (Prarit Bhargava)
- gitlab-ci: fix ark-latest merging for parent pipelines running in forks (Michael Hofmann)
- lsm: update security_lock_kernel_down (Scott Weaver)
- Fix changelog after rebase (Augusto Caringi)
- redhat: remove "END OF CHANGELOG" marker from kernel.changelog (Herton R. Krzesinski)
- gitlab-ci: enable all variants for rawhide/eln builder image gating (Michael Hofmann)
- Fedora: enable Microchip and their useful drivers (Peter Robinson)
- spec: suppress "set +x" output (Jan Stancek)
- redhat/configs: Disable CONFIG_RDMA_SIW (Kamal Heib)
- redhat/configs: Disable CONFIG_RDMA_RXE (Kamal Heib)
- redhat/configs: Disable CONFIG_MLX4 (Kamal Heib)
- redhat/configs: Disable CONFIG_INFINIBAND_HFI1 and CONFIG_INFINIBAND_RDMAVT (Kamal Heib)
- Consolidate 6.8 configs to common (Justin M. Forbes)
- Remove rt-automated and master-rt-devel logic (Don Zickus)
- Add support for CI octopus merging (Don Zickus)
- redhat/configs: Disable CONFIG_INFINIBAND_VMWARE_PVRDMA (Kamal Heib)
- gitlab-ci: fix merge tree URL for gating pipelines (Michael Hofmann)
- Revert "net: bump CONFIG_MAX_SKB_FRAGS to 45" (Marcelo Ricardo Leitner)
- uki: use systemd-pcrphase dracut module (Gerd Hoffmann)
- Add libperf-debuginfo subpackage (Justin M. Forbes)
- redhat/kernel.spec.template: Add log_msg macro (Prarit Bhargava)
- redhat/configs: Disable CONFIG_INFINIBAND_USNIC (Kamal Heib)
- Enable CONFIG_BMI323_I2C=m for Fedora x86_64 builds (Hans de Goede)
- gitlab-ci: drop test_makefile job (Scott Weaver)
- Enable merge-rt pipeline (Don Zickus)
- kernel.spec: include the GDB plugin in kernel-debuginfo (Ondrej Mosnacek)
- Turn on DRM_NOUVEAU_GSP_DEFAULT for Fedora (Justin M. Forbes)
- Set late new config HDC3020 for Fedora (Justin M. Forbes)
- redhat/self-test: Update CROSS_DISABLED_PACKAGES (Prarit Bhargava)
- redhat: Do not build libperf with cross builds (Prarit Bhargava)
- redhat/configs: enable CONFIG_PINCTRL_INTEL_PLATFORM for RHEL (David Arcari)
- redhat/configs: enable CONFIG_PINCTRL_METEORPOINT for RHEL (David Arcari)
- redhat/configs: intel pinctrl config cleanup (David Arcari)
- redhat/configs: For aarch64/RT, default kstack randomization off (Jeremy Linton)
- redhat/Makefile: remove an unused target (Ondrej Mosnacek)
- redhat/Makefile: fix setup-source and document its caveat (Ondrej Mosnacek)
- redhat/Makefile: fix race condition when making the KABI tarball (Ondrej Mosnacek)
- redhat/Makefile: refactor KABI tarball creation (Ondrej Mosnacek)
- Turn XFS_SUPPORT_V4 back on for Fedora (Justin M. Forbes)
- Add xe to drm module filters (Justin M. Forbes)
- Turn off the DRM_XE_KUNIT_TEST for Fedora (Justin M. Forbes)
- Flip secureboot signature order (Justin M. Forbes)
- all: clean up some removed configs (Peter Robinson)
- redhat: add nvidia oot signing key (Dave Airlie)
- gitlab-ci: support CI for zfcpdump kernel on ELN (Michael Hofmann)
- Fedora configs for 6.8 (Justin M. Forbes)
- Turn off CONFIG_INTEL_VSC for Fedora (Justin M. Forbes)
- redhat/configs: rhel wireless requests (Jose Ignacio Tornos Martinez)
- spec: Set EXTRA_CXXFLAGS for perf demangle-cxx.o (Josh Stone) [2233269]
- Flip values for FSCACHE and NETFS_SUPPORT to avoid mismatch (Justin M. Forbes)
- Turn on SECURITY_DMESG_RESTRICT (Justin M. Forbes)
- redhat: forward-port genlog.py updates from c9s (Jan Stancek)
- arch/x86: mark x86_64-v1 and x86_64-v2 processors as deprecated (Prarit Bhargava)
- fedora: Enable more Renesas RZ platform drivers (Peter Robinson)
- fedora: a few aarch64 drivers and cleanups (Peter Robinson)
- fedora: cavium nitrox cnn55xx (Peter Robinson)
- Fix dist-get-buildreqs breakage around perl(ExtUtils::Embed) (Don Zickus)
- gitlab-ci: merge ark-latest fixes when running ELN pipelines (Michael Hofmann)
- gitlab-ci: use all arches for container image gating (Michael Hofmann)
- Add new os-build targets: rt-devel and automotive-devel (Don Zickus)
- Remove defines forcing tools on, they override cmdline (Justin M. Forbes)
- Remove separate license tag for libperf (Justin M. Forbes)
- Don't use upstream bpftool version for Fedora package (Justin M. Forbes)
- Don't ship libperf.a in libperf-devel (Justin M. Forbes)
- add libperf packages and enable perf, libperf, tools and bpftool packages (Thorsten Leemhuis)
- Add scaffolding to build the kernel-headers package for Fedora (Justin M. Forbes)
- redhat/spec: use distro CFLAGS when building bootstrap bpftool (Artem Savkov)
- spec: use just-built bpftool for vmlinux.h generation (Yauheni Kaliuta) [2120968]
- gitlab-ci: enable native tools for Rawhide CI (Michael Hofmann)
- Revert "Merge branch 'fix-kabi-build-race' into 'os-build'" (Justin M. Forbes)
- redhat: configs: fedora: Enable sii902x bridge chip driver (Erico Nunes)
- Enable CONFIG_TCP_CONG_ILLINOIS for RHEL (Davide Caratti)
- redhat/Makefile: fix setup-source and document its caveat (Ondrej Mosnacek)
- redhat/Makefile: fix race condition when making the KABI tarball (Ondrej Mosnacek)
- redhat/Makefile: refactor KABI tarball creation (Ondrej Mosnacek)
- redhat/configs: Remove HOTPLUG_CPU0 configs (Prarit Bhargava)
- gitlab-ci: merge ark-latest before building in MR pipelines (Michael Hofmann)
- CI: include aarch64 in CKI container image gating (Tales Aparecida)
- redhat: spec: Fix update_scripts run for CentOS builds (Neal Gompa)
- New configs in drivers/crypto (Fedora Kernel Team)
- net: bump CONFIG_MAX_SKB_FRAGS to 45 (Marcelo Ricardo Leitner)
- Enable CONFIG_MARVELL_88Q2XXX_PHY (Izabela Bakollari)
- Remove CONFIG_NET_EMATCH_STACK file for RHEL (Justin M. Forbes)
- CONFIG_NETFS_SUPPORT should be m after the merge (Justin M. Forbes)
- Turn FSCACHE and NETFS from m to y in pending (Justin M. Forbes)
- Turn on CONFIG_TCP_AO for Fedora (Justin M. Forbes)
- Turn on IAA_CRYPTO_STATS for Fedora (Justin M. Forbes)
- fedora: new drivers and cleanups (Peter Robinson)
- Turn on Renesas RZ for Fedora IOT rhbz2257913 (Justin M. Forbes)
- redhat: filter-modules.sh.rhel: add dell-smm-hwmon (Scott Weaver)
- Add CONFIG_INTEL_MEI_GSC_PROXY=m for DRM 9.4 stable backport (Mika Penttilä)
- Set configs for ZRAM_TRACK_ENTRY_ACTIME (Justin M. Forbes)
- Add python3-pyyaml to buildreqs for kernel-docs (Justin M. Forbes)
- Add nb7vpq904m to singlemods for ppc64le (Thorsten Leemhuis)
- include drm bridge helpers in kernel-core package (Thorsten Leemhuis)
- Add dell-smm-hwmon to singlemods (Thorsten Leemhuis)
- Add drm_gem_shmem_test to mod-internal.list (Thorsten Leemhuis)
- redhat: kABI: add missing RH_KABI_SIZE_ALIGN_CHECKS Kconfig option (Sabrina Dubroca)
- redhat: rh_kabi: introduce RH_KABI_EXCLUDE_WITH_SIZE (Sabrina Dubroca)
- redhat: rh_kabi: move semicolon inside __RH_KABI_CHECK_SIZE (Sabrina Dubroca)
- Fix up ZRAM_TRACK_ENTRY_ACTIME in pending (Justin M. Forbes)
- random: replace import_single_range() with import_ubuf() (Justin M. Forbes)
- Flip CONFIG_INTEL_PMC_CORE to m for Fedora (Justin M. Forbes)
- Add CONFIG_ZRAM_TRACK_ENTRY_ACTIME=y to avoid a mismatch (Justin M. Forbes)
- common: cleanup MX3_IPU (Peter Robinson)
- all: The Octeon MDIO driver is aarch64/mips (Peter Robinson)
- common: rtc: remove bq4802 config (Peter Robinson)
- common: de-dupe MARVELL_GTI_WDT (Peter Robinson)
- all: Remove CAN_BXCAN (Peter Robinson)
- common: cleanup SND_SOC_ROCKCHIP (Peter Robinson)
- common: move RHEL DP83867_PHY to common (Peter Robinson)
- common: Make ASYMMETRIC_KEY_TYPE enable explicit (Peter Robinson)
- common: Disable aarch64 ARCH_MA35 universally (Peter Robinson)
- common: arm64: enable Tegra234 pinctrl driver (Peter Robinson)
- rhel: arm64: Enable qoriq thermal driver (Peter Robinson)
- common: aarch64: Cleanup some i.MX8 config options (Peter Robinson)
- all: EEPROM_LEGACY has been removed (Peter Robinson)
- all: rmeove AppleTalk hardware configs (Peter Robinson)
- all: cleanup: remove references to SLOB (Peter Robinson)
- all: cleanup: Drop unnessary BRCMSTB configs (Peter Robinson)
- all: net: remove retired network schedulers (Peter Robinson)
- all: cleanup removed CONFIG_IMA_TRUSTED_KEYRING (Peter Robinson)
- BuildRequires: lld for build with selftests for x86 (Jan Stancek)
- spec: add keyutils to selftest-internal subpackage requirements (Artem Savkov) [2166911]
- redhat/spec: exclude liburandom_read.so from requires (Artem Savkov) [2120968]
- rtla: sync summary text with upstream and update Requires (Jan Stancek)
- uki-virt: add systemd-sysext dracut module (Gerd Hoffmann)
- uki-virt: add virtiofs dracut module (Gerd Hoffmann)
- common: disable the FB device creation (Peter Robinson)
- s390x: There's no FB on Z-series (Peter Robinson)
- fedora: aarch64: enable SM_VIDEOCC_8350 (Peter Robinson)
- fedora: arm64: enable ethernet on newer TI industrial (Peter Robinson)
- fedora: arm64: Disable VIDEO_IMX_MEDIA (Peter Robinson)
- fedora: use common config for Siemens Simatic IPC (Peter Robinson)
- fedora: arm: enable Rockchip SPI flash (Peter Robinson)
- fedora: arm64: enable DRM_TI_SN65DSI83 (Peter Robinson)
- kernel.spec: remove kernel-smp reference from scripts (Jan Stancek)
- redhat: do not compress the full kernel changelog in the src.rpm (Herton R. Krzesinski)
- Auto consolidate configs for the 6.7 cycle (Justin M. Forbes)
- Enable sound for a line of Huawei laptops (TomZanna)
- fedora: a few cleanups and driver enablements (Peter Robinson)
- fedora: arm64: cleanup Allwinner Pinctrl drivers (Peter Robinson)
- fedora: aarch64: Enable some DW drivers (Peter Robinson)
- redhat: ship all the changelog from source git into kernel-doc (Herton R. Krzesinski)
- redhat: create an empty changelog file when changing its name (Herton R. Krzesinski)
- redhat/self-test: Remove --all from git query (Prarit Bhargava)
- Disable accel drivers for Fedora x86 (Kate Hsuan)
- redhat: scripts: An automation script for disabling unused driver for x86 (Kate Hsuan)
- Fix up Fedora LJCA configs and filters (Justin M. Forbes)
- Fedora configs for 6.7 (Justin M. Forbes)
- Some Fedora config updates for MLX5 (Justin M. Forbes)
- Turn on DRM_ACCEL drivers for Fedora (Justin M. Forbes)
- redhat: enable the kfence test (Nico Pache)
- redhat/configs: Enable UCLAMP_TASK for PipeWire and WirePlumber (Neal Gompa)
- Turn on CONFIG_SECURITY_DMESG_RESTRICT for Fedora (Justin M. Forbes)
- Turn off shellcheck for the fedora-stable-release script (Justin M. Forbes)
- Add some initial Fedora stable branch script to redhat/scripts/fedora/ (Justin M. Forbes)
- redhat: disable iptables-legacy compatibility layer (Florian Westphal)
- redhat: disable dccp conntrack support (Florian Westphal)
- configs: enable netfilter_netlink_hook in fedora too (Florian Westphal)
- ext4: Mark mounting fs-verity filesystems as tech-preview (Alexander Larsson)
- erofs: Add tech preview markers at mount (Alexander Larsson)
- Enable fs-verity (Alexander Larsson)
- Enable erofs (Alexander Larsson)
- aarch64: enable uki (Gerd Hoffmann)
- redhat: enable CONFIG_SND_SOC_INTEL_SOF_DA7219_MACH as a module for x86 (Patrick Talbert)
- Turn CONFIG_MFD_CS42L43_SDW on for RHEL (Justin M. Forbes)
- Enable cryptographic acceleration config flags for PowerPC (Mamatha Inamdar)
- Also make vmlinuz-virt.efi world readable (Zbigniew Jędrzejewski-Szmek)
- Drop custom mode for System.map file (Zbigniew Jędrzejewski-Szmek)
- Add drm_exec_test to mod-internal.list for depmod to succeed (Mika Penttilä)
- RHEL 9.4 DRM backport (upto v6.6 kernel), sync Kconfigs (Mika Penttilä)
- Turn on USB_DWC3 for Fedora (rhbz 2250955) (Justin M. Forbes)
- redhat/configs: Move IOMMUFD to common (Alex Williamson)
- redhat: Really remove cpupower files (Prarit Bhargava)
- redhat: remove update_scripts.sh (Prarit Bhargava)
- Fix s390 zfcpfdump bpf build failures for cgroups (Don Zickus)
- Flip CONFIG_NVME_AUTH to m in pending (Justin M. Forbes)
- Turn CONFIG_SND_SOC_INTEL_AVS_MACH_RT5514 on for Fedora x86 (Jason Montleon)
- kernel/rh_messages.c: Mark functions as possibly unused (Prarit Bhargava)
- Add snd-hda-cirrus-scodec-test to mod-internal.list (Scott Weaver)
- Turn off BPF_SYSCALL in pending for zfcpdump (Justin M. Forbes)
- Add mean_and_variance_test to mod-internal.list (Justin M. Forbes)
- Add cfg80211-tests and mac80211-tests to mod-internal.list (Justin M. Forbes)
- Turn on CONFIG_MFD_CS42L43_SDW for RHEL in pending (Justin M. Forbes)
- Turn on bcachefs for Fedora (Justin M. Forbes)
- redhat: configs: fedora: Enable QSEECOM and friends (Andrew Halaney)
- Add clk-fractional-divider_test to mod-internal.list (Thorsten Leemhuis)
- Add gso_test to mod-internal.list (Thorsten Leemhuis)
- Add property-entry-test to mod-internal.list (Thorsten Leemhuis)
- Fedora 6.7 configs part 1 (Justin M. Forbes)
- [Scheduled job] Catch config mismatches early during upstream merge (Don Zickus)
- redhat/self-test: Update data for KABI xz change (Prarit Bhargava)
- redhat/scripts: Switch KABI tarballs to xz (Prarit Bhargava)
- redhat/kernel.spec.template: Switch KABI compression to xz (Prarit Bhargava)
- redhat: self-test: Use a more complete SRPM file suffix (Andrew Halaney)
- redhat: makefile: remove stray rpmbuild --without (Eric Chanudet)
- Consolidate configs into common for 6.6 (Justin M. Forbes)
- Updated Fedora configs (Justin M. Forbes)
- Turn on UFSHCD for Fedora x86 (Justin M. Forbes)
- redhat: configs: generic: x86: Disable CONFIG_VIDEO_OV01A10 for x86 platform (Hans de Goede)
- redhat: remove pending-rhel CONFIG_XFS_ASSERT_FATAL file (Patrick Talbert)
- New configs in fs/xfs (Fedora Kernel Team)
- crypto: rng - Override drivers/char/random in FIPS mode (Herbert Xu)
- random: Add hook to override device reads and getrandom(2) (Herbert Xu)
- redhat/configs: share CONFIG_ARM64_ERRATUM_2966298 between rhel and fedora (Mark Salter)
- configs: Remove S390 IOMMU config options that no longer exist (Jerry Snitselaar)
- redhat: docs: clarify where bugs and issues are created (Scott Weaver)
- redhat/scripts/rh-dist-git.sh does not take any arguments: fix error message (Denys Vlasenko)
- Add target_branch for gen_config_patches.sh (Don Zickus)
- redhat: disable kunit by default (Nico Pache)
- redhat/configs: enable the AMD_PMF driver for RHEL (David Arcari)
- Make CONFIG_ADDRESS_MASKING consistent between fedora and rhel (Chris von Recklinghausen)
- CI: add ark-latest baseline job to tag cki-gating for successful pipelines (Michael Hofmann)
- CI: provide child pipelines for CKI container image gating (Michael Hofmann)
- CI: allow to run as child pipeline (Michael Hofmann)
- CI: provide descriptive pipeline name for scheduled pipelines (Michael Hofmann)
- CI: use job templates for variant variables (Michael Hofmann)
- redhat/kernel.spec.template: simplify __modsign_install_post (Jan Stancek)
- Fedora filter updates after configs (Justin M. Forbes)
- Fedora configs for 6.6 (Justin M. Forbes)
- redhat/configs: Freescale Layerscape SoC family (Steve Best)
- Add clang MR/baseline pipelines (Michael Hofmann)
- CI: Remove unused kpet_tree_family (Nikolai Kondrashov)
- Add clang config framework (Don Zickus)
- Apply partial snippet configs to all configs (Don Zickus)
- Remove unpackaged kgcov config files (Don Zickus)
- redhat/configs: enable missing Kconfig options for Qualcomm RideSX4 (Brian Masney)
- enable CONFIG_ADDRESS_MASKING for x86_64 (Chris von Recklinghausen)
- common: aarch64: enable NXP Flex SPI (Peter Robinson)
- fedora: Switch TI_SCI_CLK and TI_SCI_PM_DOMAINS symbols to built-in (Javier Martinez Canillas)
- kernel.spec: adjust build option comment (Michael Hofmann)
- kernel.spec: allow to enable arm64_16k variant (Michael Hofmann)
- gitlab-ci: enable build-only pipelines for Rawhide/16k/aarch64 (Michael Hofmann)
- kernel.spec.template: Fix --without bpftool (Prarit Bhargava)
- redhat/configs: NXP BBNSM Power Key Driver (Steve Best)
- redhat/self-test: Update data for cross compile fields (Prarit Bhargava)
- redhat/Makefile.cross: Add message for disabled subpackages (Prarit Bhargava)
- redhat/Makefile.cross: Update cross targets with disabled subpackages (Prarit Bhargava)
- Remove XFS_ASSERT_FATAL from pending-fedora (Justin M. Forbes)
- Change default pending for XFS_ONLINE_SCRUB_STATSas it now selects XFS_DEBUG (Justin M. Forbes)
- gitlab-ci: use --with debug/base to select kernel variants (Michael Hofmann)
- kernel.spec: add rpmbuild --without base option (Michael Hofmann)
- redhat: spec: Fix typo for kernel_variant_preun for 16k-debug flavor (Neal Gompa)
- Turn off appletalk for fedora (Justin M. Forbes)
- New configs in drivers/media (Fedora Kernel Team)
- redhat/docs: Add a mention of bugzilla for bugs (Prarit Bhargava)
- Fix the fixup of Fedora release (Don Zickus)
- Fix Fedora release scheduled job (Don Zickus)
- Move squashfs to kernel-modules-core (Justin M. Forbes)
- redhat: Explicitly disable CONFIG_COPS (Vitaly Kuznetsov)
- redhat: Add dist-check-licenses target (Vitaly Kuznetsov)
- redhat: Introduce "Verify SPDX-License-Identifier tags" selftest (Vitaly Kuznetsov)
- redhat: Use kspdx-tool output for the License: field (Vitaly Kuznetsov)
- Rename pipeline repo branch and DW tree names (Michael Hofmann)
- Adjust comments that refer to ARK in a Rawhide context (Michael Hofmann)
- Rename variable names starting with ark- to rawhide- (Michael Hofmann)
- Rename trigger-ark to trigger-rawhide (Michael Hofmann)
- Fix up config mismatches for Fedora (Justin M. Forbes)
- redhat/configs: Texas Instruments Inc. K3 multicore SoC architecture (Steve Best)
- Flip CONFIG_VIDEO_V4L2_SUBDEV_API in pending RHEL due to mismatch (Justin M. Forbes)
- CONFIG_HW_RANDOM_HISI: move to common and set to m (Scott Weaver)
- Turn off CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for Fedora s390x (Justin M. Forbes)
- Disable tests for ELN realtime pipelines (Michael Hofmann)
- New configs in mm/Kconfig (Fedora Kernel Team)
- Flip CONFIG_SND_SOC_CS35L56_SDW to m and clean up (Justin M. Forbes)
- Add drm_exec_test to mod-internal.list (Thorsten Leemhuis)
- Add new pending entry for CONFIG_SND_SOC_CS35L56_SDW to fix mismatch (Justin M. Forbes)
- Fix tarball creation logic (Don Zickus)
- redhat: bump libcpupower soname to match upstream (Patrick Talbert)