blob: 41e3b5301786890804c9c21e731b3b117ec5e476 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
|
README
--------------------------------------------------------------------------
This patchset is to be the series of patches for gentoo-sources.
It is designed for cross-compatibility, fixes and stability, with performance
and additional features/driver support being a second.
Unless otherwise stated and marked as such, this kernel should be suitable for
all environments.
Patchset Numbering Scheme
--------------------------------------------------------------------------
FIXES
1000-1400 linux-stable
1400-1500 linux-stable queue
1500-1700 security
1700-1800 architecture-related
1800-1900 mm/scheduling/misc
1900-2000 filesystems
2000-2100 networking core
2100-2200 storage core
2200-2300 power management (ACPI, APM)
2300-2400 bus (USB, IEEE1394, PCI, PCMCIA, ...)
2400-2500 network drivers
2500-2600 storage drivers
2600-2700 input
2700-2900 media (graphics, sound, tv)
2900-3000 other
3000-4000 reserved
FEATURES
4000-4100 network
4100-4200 storage
4200-4300 graphics
4300-4400 filesystem
4400-4500 security enhancement
4500-4600 other
EXPERIMENTAL
5000-5100 experimental patches (BFQ, ...)
Individual Patch Descriptions:
--------------------------------------------------------------------------
Patch: 1000_linux-4.19.1.patch
From: https://www.kernel.org
Desc: Linux 4.19.1
Patch: 1001_linux-4.19.2.patch
From: https://www.kernel.org
Desc: Linux 4.19.2
Patch: 1002_linux-4.19.3.patch
From: https://www.kernel.org
Desc: Linux 4.19.3
Patch: 1003_linux-4.19.4.patch
From: https://www.kernel.org
Desc: Linux 4.19.4
Patch: 1004_linux-4.19.5.patch
From: https://www.kernel.org
Desc: Linux 4.19.5
Patch: 1005_linux-4.19.6.patch
From: https://www.kernel.org
Desc: Linux 4.19.6
Patch: 1006_linux-4.19.7.patch
From: https://www.kernel.org
Desc: Linux 4.19.7
Patch: 1007_linux-4.19.8.patch
From: https://www.kernel.org
Desc: Linux 4.19.8
Patch: 1008_linux-4.19.9.patch
From: https://www.kernel.org
Desc: Linux 4.19.9
Patch: 1009_linux-4.19.10.patch
From: https://www.kernel.org
Desc: Linux 4.19.10
Patch: 1010_linux-4.19.11.patch
From: https://www.kernel.org
Desc: Linux 4.19.11
Patch: 1011_linux-4.19.12.patch
From: https://www.kernel.org
Desc: Linux 4.19.12
Patch: 1012_linux-4.19.13.patch
From: https://www.kernel.org
Desc: Linux 4.19.13
Patch: 1013_linux-4.19.14.patch
From: https://www.kernel.org
Desc: Linux 4.19.14
Patch: 1014_linux-4.19.15.patch
From: https://www.kernel.org
Desc: Linux 4.19.15
Patch: 1015_linux-4.19.16.patch
From: https://www.kernel.org
Desc: Linux 4.19.16
Patch: 1016_linux-4.19.17.patch
From: https://www.kernel.org
Desc: Linux 4.19.17
Patch: 1017_linux-4.19.18.patch
From: https://www.kernel.org
Desc: Linux 4.19.18
Patch: 1018_linux-4.19.19.patch
From: https://www.kernel.org
Desc: Linux 4.19.19
Patch: 1019_linux-4.19.20.patch
From: https://www.kernel.org
Desc: Linux 4.19.20
Patch: 1020_linux-4.19.21.patch
From: https://www.kernel.org
Desc: Linux 4.19.21
Patch: 1021_linux-4.19.22.patch
From: https://www.kernel.org
Desc: Linux 4.19.22
Patch: 1022_linux-4.19.23.patch
From: https://www.kernel.org
Desc: Linux 4.19.23
Patch: 1023_linux-4.19.24.patch
From: https://www.kernel.org
Desc: Linux 4.19.24
Patch: 1024_linux-4.19.25.patch
From: https://www.kernel.org
Desc: Linux 4.19.25
Patch: 1025_linux-4.19.26.patch
From: https://www.kernel.org
Desc: Linux 4.19.26
Patch: 1026_linux-4.19.27.patch
From: https://www.kernel.org
Desc: Linux 4.19.27
Patch: 1027_linux-4.19.28.patch
From: https://www.kernel.org
Desc: Linux 4.19.28
Patch: 1028_linux-4.19.29.patch
From: https://www.kernel.org
Desc: Linux 4.19.29
Patch: 1029_linux-4.19.30.patch
From: https://www.kernel.org
Desc: Linux 4.19.30
Patch: 1030_linux-4.19.31.patch
From: https://www.kernel.org
Desc: Linux 4.19.31
Patch: 1031_linux-4.19.32.patch
From: https://www.kernel.org
Desc: Linux 4.19.32
Patch: 1032_linux-4.19.33.patch
From: https://www.kernel.org
Desc: Linux 4.19.33
Patch: 1033_linux-4.19.34.patch
From: https://www.kernel.org
Desc: Linux 4.19.34
Patch: 1034_linux-4.19.35.patch
From: https://www.kernel.org
Desc: Linux 4.19.35
Patch: 1035_linux-4.19.36.patch
From: https://www.kernel.org
Desc: Linux 4.19.36
Patch: 1036_linux-4.19.37.patch
From: https://www.kernel.org
Desc: Linux 4.19.37
Patch: 1037_linux-4.19.38.patch
From: https://www.kernel.org
Desc: Linux 4.19.38
Patch: 1038_linux-4.19.39.patch
From: https://www.kernel.org
Desc: Linux 4.19.39
Patch: 1039_linux-4.19.40.patch
From: https://www.kernel.org
Desc: Linux 4.19.40
Patch: 1040_linux-4.19.41.patch
From: https://www.kernel.org
Desc: Linux 4.19.41
Patch: 1041_linux-4.19.42.patch
From: https://www.kernel.org
Desc: Linux 4.19.42
Patch: 1042_linux-4.19.43.patch
From: https://www.kernel.org
Desc: Linux 4.19.43
Patch: 1043_linux-4.19.44.patch
From: https://www.kernel.org
Desc: Linux 4.19.44
Patch: 1044_linux-4.19.45.patch
From: https://www.kernel.org
Desc: Linux 4.19.45
Patch: 1045_linux-4.19.46.patch
From: https://www.kernel.org
Desc: Linux 4.19.46
Patch: 1046_linux-4.19.47.patch
From: https://www.kernel.org
Desc: Linux 4.19.47
Patch: 1047_linux-4.19.48.patch
From: https://www.kernel.org
Desc: Linux 4.19.48
Patch: 1048_linux-4.19.49.patch
From: https://www.kernel.org
Desc: Linux 4.19.49
Patch: 1049_linux-4.19.50.patch
From: https://www.kernel.org
Desc: Linux 4.19.50
Patch: 1050_linux-4.19.51.patch
From: https://www.kernel.org
Desc: Linux 4.19.51
Patch: 1051_linux-4.19.52.patch
From: https://www.kernel.org
Desc: Linux 4.19.52
Patch: 1052_linux-4.19.53.patch
From: https://www.kernel.org
Desc: Linux 4.19.53
Patch: 1053_linux-4.19.54.patch
From: https://www.kernel.org
Desc: Linux 4.19.54
Patch: 1054_linux-4.19.55.patch
From: https://www.kernel.org
Desc: Linux 4.19.55
Patch: 1055_linux-4.19.56.patch
From: https://www.kernel.org
Desc: Linux 4.19.56
Patch: 1056_linux-4.19.57.patch
From: https://www.kernel.org
Desc: Linux 4.19.57
Patch: 1057_linux-4.19.58.patch
From: https://www.kernel.org
Desc: Linux 4.19.58
Patch: 1058_linux-4.19.59.patch
From: https://www.kernel.org
Desc: Linux 4.19.59
Patch: 1059_linux-4.19.60.patch
From: https://www.kernel.org
Desc: Linux 4.19.60
Patch: 1060_linux-4.19.61.patch
From: https://www.kernel.org
Desc: Linux 4.19.61
Patch: 1061_linux-4.19.62.patch
From: https://www.kernel.org
Desc: Linux 4.19.62
Patch: 1062_linux-4.19.63.patch
From: https://www.kernel.org
Desc: Linux 4.19.63
Patch: 1063_linux-4.19.64.patch
From: https://www.kernel.org
Desc: Linux 4.19.64
Patch: 1064_linux-4.19.65.patch
From: https://www.kernel.org
Desc: Linux 4.19.65
Patch: 1065_linux-4.19.66.patch
From: https://www.kernel.org
Desc: Linux 4.19.66
Patch: 1066_linux-4.19.67.patch
From: https://www.kernel.org
Desc: Linux 4.19.67
Patch: 1067_linux-4.19.68.patch
From: https://www.kernel.org
Desc: Linux 4.19.68
Patch: 1068_linux-4.19.69.patch
From: https://www.kernel.org
Desc: Linux 4.19.69
Patch: 1070_linux-4.19.70.patch
From: https://www.kernel.org
Desc: Linux 4.19.70
Patch: 1071_linux-4.19.72.patch
From: https://www.kernel.org
Desc: Linux 4.19.72
Patch: 1072_linux-4.19.73.patch
From: https://www.kernel.org
Desc: Linux 4.19.73
Patch: 1073_linux-4.19.74.patch
From: https://www.kernel.org
Desc: Linux 4.19.74
Patch: 1074_linux-4.19.75.patch
From: https://www.kernel.org
Desc: Linux 4.19.75
Patch: 1075_linux-4.19.76.patch
From: https://www.kernel.org
Desc: Linux 4.19.76
Patch: 1076_linux-4.19.77.patch
From: https://www.kernel.org
Desc: Linux 4.19.77
Patch: 1077_linux-4.19.78.patch
From: https://www.kernel.org
Desc: Linux 4.19.78
Patch: 1078_linux-4.19.79.patch
From: https://www.kernel.org
Desc: Linux 4.19.79
Patch: 1079_linux-4.19.80.patch
From: https://www.kernel.org
Desc: Linux 4.19.80
Patch: 1080_linux-4.19.81.patch
From: https://www.kernel.org
Desc: Linux 4.19.81
Patch: 1081_linux-4.19.82.patch
From: https://www.kernel.org
Desc: Linux 4.19.82
Patch: 1082_linux-4.19.83.patch
From: https://www.kernel.org
Desc: Linux 4.19.83
Patch: 1083_linux-4.19.84.patch
From: https://www.kernel.org
Desc: Linux 4.19.84
Patch: 1084_linux-4.19.85.patch
From: https://www.kernel.org
Desc: Linux 4.19.85
Patch: 1085_linux-4.19.86.patch
From: https://www.kernel.org
Desc: Linux 4.19.86
Patch: 1086_linux-4.19.87.patch
From: https://www.kernel.org
Desc: Linux 4.19.87
Patch: 1087_linux-4.19.88.patch
From: https://www.kernel.org
Desc: Linux 4.19.88
Patch: 1088_linux-4.19.89.patch
From: https://www.kernel.org
Desc: Linux 4.19.89
Patch: 1089_linux-4.19.90.patch
From: https://www.kernel.org
Desc: Linux 4.19.90
Patch: 1090_linux-4.19.91.patch
From: https://www.kernel.org
Desc: Linux 4.19.91
Patch: 1091_linux-4.19.92.patch
From: https://www.kernel.org
Desc: Linux 4.19.92
Patch: 1092_linux-4.19.93.patch
From: https://www.kernel.org
Desc: Linux 4.19.93
Patch: 1093_linux-4.19.94.patch
From: https://www.kernel.org
Desc: Linux 4.19.94
Patch: 1094_linux-4.19.95.patch
From: https://www.kernel.org
Desc: Linux 4.19.95
Patch: 1095_linux-4.19.96.patch
From: https://www.kernel.org
Desc: Linux 4.19.96
Patch: 1096_linux-4.19.97.patch
From: https://www.kernel.org
Desc: Linux 4.19.97
Patch: 1097_linux-4.19.98.patch
From: https://www.kernel.org
Desc: Linux 4.19.98
Patch: 1098_linux-4.19.99.patch
From: https://www.kernel.org
Desc: Linux 4.19.99
Patch: 1099_linux-4.19.100.patch
From: https://www.kernel.org
Desc: Linux 4.19.100
Patch: 1100_linux-4.19.101.patch
From: https://www.kernel.org
Desc: Linux 4.19.101
Patch: 1101_linux-4.19.102.patch
From: https://www.kernel.org
Desc: Linux 4.19.102
Patch: 1102_linux-4.19.103.patch
From: https://www.kernel.org
Desc: Linux 4.19.103
Patch: 1103_linux-4.19.104.patch
From: https://www.kernel.org
Desc: Linux 4.19.104
Patch: 1104_linux-4.19.105.patch
From: https://www.kernel.org
Desc: Linux 4.19.105
Patch: 1105_linux-4.19.106.patch
From: https://www.kernel.org
Desc: Linux 4.19.106
Patch: 1106_linux-4.19.107.patch
From: https://www.kernel.org
Desc: Linux 4.19.107
Patch: 1107_linux-4.19.108.patch
From: https://www.kernel.org
Desc: Linux 4.19.108
Patch: 1108_linux-4.19.109.patch
From: https://www.kernel.org
Desc: Linux 4.19.109
Patch: 1109_linux-4.19.110.patch
From: https://www.kernel.org
Desc: Linux 4.19.110
Patch: 1110_linux-4.19.111.patch
From: https://www.kernel.org
Desc: Linux 4.19.111
Patch: 1111_linux-4.19.112.patch
From: https://www.kernel.org
Desc: Linux 4.19.112
Patch: 1112_linux-4.19.113.patch
From: https://www.kernel.org
Desc: Linux 4.19.113
Patch: 1113_linux-4.19.114.patch
From: https://www.kernel.org
Desc: Linux 4.19.114
Patch: 1114_linux-4.19.115.patch
From: https://www.kernel.org
Desc: Linux 4.19.115
Patch: 1115_linux-4.19.116.patch
From: https://www.kernel.org
Desc: Linux 4.19.116
Patch: 1116_linux-4.19.117.patch
From: https://www.kernel.org
Desc: Linux 4.19.117
Patch: 1117_linux-4.19.118.patch
From: https://www.kernel.org
Desc: Linux 4.19.118
Patch: 1118_linux-4.19.119.patch
From: https://www.kernel.org
Desc: Linux 4.19.119
Patch: 1119_linux-4.19.120.patch
From: https://www.kernel.org
Desc: Linux 4.19.120
Patch: 1120_linux-4.19.121.patch
From: https://www.kernel.org
Desc: Linux 4.19.121
Patch: 1121_linux-4.19.122.patch
From: https://www.kernel.org
Desc: Linux 4.19.122
Patch: 1122_linux-4.19.123.patch
From: https://www.kernel.org
Desc: Linux 4.19.123
Patch: 1123_linux-4.19.124.patch
From: https://www.kernel.org
Desc: Linux 4.19.124
Patch: 1124_linux-4.19.125.patch
From: https://www.kernel.org
Desc: Linux 4.19.125
Patch: 1125_linux-4.19.126.patch
From: https://www.kernel.org
Desc: Linux 4.19.126
Patch: 1126_linux-4.19.127.patch
From: https://www.kernel.org
Desc: Linux 4.19.127
Patch: 1127_linux-4.19.128.patch
From: https://www.kernel.org
Desc: Linux 4.19.128
Patch: 1128_linux-4.19.129.patch
From: https://www.kernel.org
Desc: Linux 4.19.129
Patch: 1129_linux-4.19.130.patch
From: https://www.kernel.org
Desc: Linux 4.19.130
Patch: 1130_linux-4.19.131.patch
From: https://www.kernel.org
Desc: Linux 4.19.131
Patch: 1131_linux-4.19.132.patch
From: https://www.kernel.org
Desc: Linux 4.19.132
Patch: 1132_linux-4.19.133.patch
From: https://www.kernel.org
Desc: Linux 4.19.133
Patch: 1133_linux-4.19.134.patch
From: https://www.kernel.org
Desc: Linux 4.19.134
Patch: 1134_linux-4.19.135.patch
From: https://www.kernel.org
Desc: Linux 4.19.135
Patch: 1135_linux-4.19.136.patch
From: https://www.kernel.org
Desc: Linux 4.19.136
Patch: 1136_linux-4.19.137.patch
From: https://www.kernel.org
Desc: Linux 4.19.137
Patch: 1137_linux-4.19.138.patch
From: https://www.kernel.org
Desc: Linux 4.19.138
Patch: 1138_linux-4.19.139.patch
From: https://www.kernel.org
Desc: Linux 4.19.139
Patch: 1139_linux-4.19.140.patch
From: https://www.kernel.org
Desc: Linux 4.19.140
Patch: 1140_linux-4.19.141.patch
From: https://www.kernel.org
Desc: Linux 4.19.141
Patch: 1141_linux-4.19.142.patch
From: https://www.kernel.org
Desc: Linux 4.19.142
Patch: 1142_linux-4.19.143.patch
From: https://www.kernel.org
Desc: Linux 4.19.143
Patch: 1143_linux-4.19.144.patch
From: https://www.kernel.org
Desc: Linux 4.19.144
Patch: 1144_linux-4.19.145.patch
From: https://www.kernel.org
Desc: Linux 4.19.145
Patch: 1145_linux-4.19.146.patch
From: https://www.kernel.org
Desc: Linux 4.19.146
Patch: 1146_linux-4.19.147.patch
From: https://www.kernel.org
Desc: Linux 4.19.147
Patch: 1147_linux-4.19.148.patch
From: https://www.kernel.org
Desc: Linux 4.19.148
Patch: 1148_linux-4.19.149.patch
From: https://www.kernel.org
Desc: Linux 4.19.149
Patch: 1149_linux-4.19.150.patch
From: https://www.kernel.org
Desc: Linux 4.19.150
Patch: 1150_linux-4.19.151.patch
From: https://www.kernel.org
Desc: Linux 4.19.151
Patch: 1151_linux-4.19.152.patch
From: https://www.kernel.org
Desc: Linux 4.19.152
Patch: 1152_linux-4.19.153.patch
From: https://www.kernel.org
Desc: Linux 4.19.153
Patch: 1153_linux-4.19.154.patch
From: https://www.kernel.org
Desc: Linux 4.19.154
Patch: 1154_linux-4.19.155.patch
From: https://www.kernel.org
Desc: Linux 4.19.155
Patch: 1155_linux-4.19.156.patch
From: https://www.kernel.org
Desc: Linux 4.19.156
Patch: 1156_linux-4.19.157.patch
From: https://www.kernel.org
Desc: Linux 4.19.157
Patch: 1157_linux-4.19.158.patch
From: https://www.kernel.org
Desc: Linux 4.19.158
Patch: 1158_linux-4.19.159.patch
From: https://www.kernel.org
Desc: Linux 4.19.159
Patch: 1159_linux-4.19.160.patch
From: https://www.kernel.org
Desc: Linux 4.19.160
Patch: 1160_linux-4.19.161.patch
From: https://www.kernel.org
Desc: Linux 4.19.161
Patch: 1161_linux-4.19.162.patch
From: https://www.kernel.org
Desc: Linux 4.19.162
Patch: 1162_linux-4.19.163.patch
From: https://www.kernel.org
Desc: Linux 4.19.163
Patch: 1163_linux-4.19.164.patch
From: https://www.kernel.org
Desc: Linux 4.19.164
Patch: 1164_linux-4.19.165.patch
From: https://www.kernel.org
Desc: Linux 4.19.165
Patch: 1165_linux-4.19.166.patch
From: https://www.kernel.org
Desc: Linux 4.19.166
Patch: 1166_linux-4.19.167.patch
From: https://www.kernel.org
Desc: Linux 4.19.167
Patch: 1167_linux-4.19.168.patch
From: https://www.kernel.org
Desc: Linux 4.19.168
Patch: 1168_linux-4.19.169.patch
From: https://www.kernel.org
Desc: Linux 4.19.169
Patch: 1169_linux-4.19.170.patch
From: https://www.kernel.org
Desc: Linux 4.19.170
Patch: 1170_linux-4.19.171.patch
From: https://www.kernel.org
Desc: Linux 4.19.171
Patch: 1171_linux-4.19.172.patch
From: https://www.kernel.org
Desc: Linux 4.19.172
Patch: 1172_linux-4.19.173.patch
From: https://www.kernel.org
Desc: Linux 4.19.173
Patch: 1173_linux-4.19.174.patch
From: https://www.kernel.org
Desc: Linux 4.19.174
Patch: 1174_linux-4.19.175.patch
From: https://www.kernel.org
Desc: Linux 4.19.175
Patch: 1175_linux-4.19.176.patch
From: https://www.kernel.org
Desc: Linux 4.19.176
Patch: 1176_linux-4.19.177.patch
From: https://www.kernel.org
Desc: Linux 4.19.177
Patch: 1177_linux-4.19.178.patch
From: https://www.kernel.org
Desc: Linux 4.19.178
Patch: 1178_linux-4.19.179.patch
From: https://www.kernel.org
Desc: Linux 4.19.179
Patch: 1179_linux-4.19.180.patch
From: https://www.kernel.org
Desc: Linux 4.19.180
Patch: 1180_linux-4.19.181.patch
From: https://www.kernel.org
Desc: Linux 4.19.181
Patch: 1181_linux-4.19.182.patch
From: https://www.kernel.org
Desc: Linux 4.19.182
Patch: 1182_linux-4.19.183.patch
From: https://www.kernel.org
Desc: Linux 4.19.183
Patch: 1183_linux-4.19.184.patch
From: https://www.kernel.org
Desc: Linux 4.19.184
Patch: 1184_linux-4.19.185.patch
From: https://www.kernel.org
Desc: Linux 4.19.185
Patch: 1185_linux-4.19.186.patch
From: https://www.kernel.org
Desc: Linux 4.19.186
Patch: 1186_linux-4.19.187.patch
From: https://www.kernel.org
Desc: Linux 4.19.187
Patch: 1187_linux-4.19.188.patch
From: https://www.kernel.org
Desc: Linux 4.19.188
Patch: 1188_linux-4.19.189.patch
From: https://www.kernel.org
Desc: Linux 4.19.189
Patch: 1189_linux-4.19.190.patch
From: https://www.kernel.org
Desc: Linux 4.19.190
Patch: 1190_linux-4.19.191.patch
From: https://www.kernel.org
Desc: Linux 4.19.191
Patch: 1191_linux-4.19.192.patch
From: https://www.kernel.org
Desc: Linux 4.19.192
Patch: 1192_linux-4.19.193.patch
From: https://www.kernel.org
Desc: Linux 4.19.193
Patch: 1193_linux-4.19.194.patch
From: https://www.kernel.org
Desc: Linux 4.19.194
Patch: 1194_linux-4.19.195.patch
From: https://www.kernel.org
Desc: Linux 4.19.195
Patch: 1195_linux-4.19.196.patch
From: https://www.kernel.org
Desc: Linux 4.19.196
Patch: 1196_linux-4.19.197.patch
From: https://www.kernel.org
Desc: Linux 4.19.197
Patch: 1197_linux-4.19.198.patch
From: https://www.kernel.org
Desc: Linux 4.19.198
Patch: 1198_linux-4.19.199.patch
From: https://www.kernel.org
Desc: Linux 4.19.199
Patch: 1199_linux-4.19.200.patch
From: https://www.kernel.org
Desc: Linux 4.19.200
Patch: 1200_linux-4.19.201.patch
From: https://www.kernel.org
Desc: Linux 4.19.201
Patch: 1201_linux-4.19.202.patch
From: https://www.kernel.org
Desc: Linux 4.19.202
Patch: 1202_linux-4.19.203.patch
From: https://www.kernel.org
Desc: Linux 4.19.203
Patch: 1203_linux-4.19.204.patch
From: https://www.kernel.org
Desc: Linux 4.19.204
Patch: 1204_linux-4.19.205.patch
From: https://www.kernel.org
Desc: Linux 4.19.205
Patch: 1205_linux-4.19.206.patch
From: https://www.kernel.org
Desc: Linux 4.19.206
Patch: 1206_linux-4.19.207.patch
From: https://www.kernel.org
Desc: Linux 4.19.207
Patch: 1207_linux-4.19.208.patch
From: https://www.kernel.org
Desc: Linux 4.19.208
Patch: 1208_linux-4.19.209.patch
From: https://www.kernel.org
Desc: Linux 4.19.209
Patch: 1209_linux-4.19.210.patch
From: https://www.kernel.org
Desc: Linux 4.19.210
Patch: 1210_linux-4.19.211.patch
From: https://www.kernel.org
Desc: Linux 4.19.211
Patch: 1211_linux-4.19.212.patch
From: https://www.kernel.org
Desc: Linux 4.19.212
Patch: 1212_linux-4.19.213.patch
From: https://www.kernel.org
Desc: Linux 4.19.213
Patch: 1213_linux-4.19.214.patch
From: https://www.kernel.org
Desc: Linux 4.19.214
Patch: 1214_linux-4.19.215.patch
From: https://www.kernel.org
Desc: Linux 4.19.215
Patch: 1215_linux-4.19.216.patch
From: https://www.kernel.org
Desc: Linux 4.19.216
Patch: 1216_linux-4.19.217.patch
From: https://www.kernel.org
Desc: Linux 4.19.217
Patch: 1217_linux-4.19.218.patch
From: https://www.kernel.org
Desc: Linux 4.19.218
Patch: 1218_linux-4.19.219.patch
From: https://www.kernel.org
Desc: Linux 4.19.219
Patch: 1219_linux-4.19.220.patch
From: https://www.kernel.org
Desc: Linux 4.19.220
Patch: 1220_linux-4.19.221.patch
From: https://www.kernel.org
Desc: Linux 4.19.221
Patch: 1221_linux-4.19.222.patch
From: https://www.kernel.org
Desc: Linux 4.19.222
Patch: 1222_linux-4.19.223.patch
From: https://www.kernel.org
Desc: Linux 4.19.223
Patch: 1223_linux-4.19.224.patch
From: https://www.kernel.org
Desc: Linux 4.19.224
Patch: 1224_linux-4.19.225.patch
From: https://www.kernel.org
Desc: Linux 4.19.225
Patch: 1225_linux-4.19.226.patch
From: https://www.kernel.org
Desc: Linux 4.19.226
Patch: 1226_linux-4.19.227.patch
From: https://www.kernel.org
Desc: Linux 4.19.227
Patch: 1227_linux-4.19.228.patch
From: https://www.kernel.org
Desc: Linux 4.19.228
Patch: 1228_linux-4.19.229.patch
From: https://www.kernel.org
Desc: Linux 4.19.229
Patch: 1229_linux-4.19.230.patch
From: https://www.kernel.org
Desc: Linux 4.19.230
Patch: 1230_linux-4.19.231.patch
From: https://www.kernel.org
Desc: Linux 4.19.231
Patch: 1231_linux-4.19.232.patch
From: https://www.kernel.org
Desc: Linux 4.19.232
Patch: 1232_linux-4.19.233.patch
From: https://www.kernel.org
Desc: Linux 4.19.233
Patch: 1233_linux-4.19.234.patch
From: https://www.kernel.org
Desc: Linux 4.19.234
Patch: 1500_XATTR_USER_PREFIX.patch
From: https://bugs.gentoo.org/show_bug.cgi?id=470644
Desc: Support for namespace user.pax.* on tmpfs.
Patch: 1510_fs-enable-link-security-restrictions-by-default.patch
From: http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/
Desc: Enable link security restrictions by default.
Patch: 2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
From: https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@holtmann.org/raw
Desc: Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758
Patch: 2600_enable-key-swapping-for-apple-mac.patch
From: https://github.com/free5lot/hid-apple-patched
Desc: This hid-apple patch enables swapping of the FN and left Control keys and some additional on some apple keyboards. See bug #622902
Patch: 3000_Support-printing-firmware-info.patch
From: https://bugs.gentoo.org/732852
Desc: Print firmware info (Reqs CONFIG_GENTOO_PRINT_FIRMWARE_INFO). Thanks to Georgy Yakovlev
Patch: 4400_alpha-sysctl-uac.patch
From: Tobias Klausmann (klausman@gentoo.org) and http://bugs.gentoo.org/show_bug.cgi?id=217323
Desc: Enable control of the unaligned access control policy from sysctl
Patch: 4567_distro-Gentoo-Kconfig.patch
From: Tom Wijsman <TomWij@gentoo.org>
Desc: Add Gentoo Linux support config settings and defaults.
Patch: 5010_enable-cpu-optimizations-universal.patch
From: https://github.com/graysky2/kernel_compiler_patch
Desc: Kernel 4.19-5.4 patch enables gcc = v9+ optimizations for additional CPUs.
|