summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 2878791efc53d860be509618fec6aed28b8030bb (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
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
Version 0.6.57 -  8 Aug 2023

- add AMD Phoenix1 graphics id for amdgpu (ghibo)
- update pci.ids

Version 0.6.56 - 18 Jul 2023

- update ids from nvidia-current 535.86.05

Version 0.6.55 - 11 Jul 2023

- update pci.ids

Version 0.6.54 - 14 Jun 2023

- update ids from nvidia-current 535.54.03

Version 0.6.53 - 7 Jun 2023

- Add more (missed) AlderLake IDs under modesetting (bug 31654)
- Move ElkhartLake, JasperLake and TigerLake (UHD and Xe Graphics) to modesetting (bug #31654)

Version 0.6.52 - 7 Jun 2023

- Move RocketLake-S with UHD Graphics under modesetting (bug #31654)

Version 0.6.51 - 5 Jun 2023

- Explicitly display the string Xorg modesetting for Intel Kernel Mode setting
- Move back GTX 750 card to be preferred by nvidia-current 525.xx driver instead of nvidia470 (bug #31874)
- Duplicate modesetting in NVIDIA menu as aid for NVidia cards
- Add New Feature Branch to the NVIDIA menu
- Add Production, Latest Legacy and Nouveau as aliases in the NVIDIA menu
- Add two RaptorLake IDs under modesetting (exposed as UHD graphics in single-channel memory)
- Add more AlderLake-N/HX/P/S, RaptorLake-P and MeteorLake PCI-IDs to modesetting (bug #31654)

Version 0.6.50 - 26 Apr 2023

- move cards with Iris Xe Graphics and AlderLake-P or RaptorLake-P under modesetting
- introduce "Intel Kernel Mode setting" group for drakx11
- update pci.ids and usb.ids
- move ancient GTX 750 card under nvidia470 (in "GeForce 635 to GeForce 920" group)

Version 0.6.49 - 28 Apr 2023

- update ids from nvidia-current 525.116.03 (adds NVidia RTX 3060/4070, RTX A500/A1000 Laptop GPU, RTX 2000/3000/3500/4000/5000 Ada Generation Laptop GPU)

Version 0.6.48 - 31 Mar 2023

- update ids from nvidia-current 525.105.17 (adds NVidia H800, H100, L4, Geforce RTX 2050, RTX 4000 SFF Ada Generation).

Version 0.6.47 -  8 Feb 2023

- update ids from nvidia-current 525.89.02
- update pci.ids

Version 0.6.46 - 20 Jan 2023

- update ids from nvidia-current 525.85.05
- update pci.ids and usb.ids

Version 0.6.45 - 06 Jan 2023

- update ids from nvidia-current 525.78.01
- update pci.ids and usb.ids

Version 0.6.44 - 29 Nov 2022

- update pci.ids
- add amdgpu id from kernel 6.0.10
- add ids from nvidia-current 525.60.11

Version 0.6.43 - 23 Nov 2022

- Update pcitable from 515.86.01 (adds A800 and some model of RTX 3070 Ti, RTX 3060 Ti, RTX 3060)
- refresh extract-nvidia-pcitable.sh for nvidia-current 515.86.01 and nvidia470 470.161.03

Version 0.6.42 - 15 Oct 2022

- refresh/revise PCI ids for nvidia-current 515.76 and nvidia470 470.141.03
- introduce extract-nvidia-pcitable.sh script

Version 0.6.41 - 21 Sep 2022

- update ids from nvidia-current 515.76

Version 0.6.40 - 17 Sep 2022

- update card naming for nvidia-current
- add support for nvidia470 driver
- switch over all supported gpus from nvidia390 to nvidia470
- stop advertising nvidia390
- update pci.ids

Version 0.6.39 -  7 Aug 2022

- Use "fbdev" driver instead of broken s3/glint/tga drivers
- update ids from nvidia-current 515.65.01
- update pci.ids

Version 0.6.38 - 26 May 2022

- update pci.ids and usb.ids

Version 0.6.37 - 26 Apr 2022

- add ids from nvidia-current 510.68.02

Version 0.6.36 - 24 Apr 2022

- update amdgpu ids from kernel 5.15.35
- add ids from nvidia-current 510.60.02
- add ids from nvidia470 470.103.01
- update pci.ids and usb.ids

Version 0.6.35 - 22 Dec 2021

- add ids from nvidia-current 470.94
- update pci.ids

Version 0.6.34 - 11 Nov 2021

- add ids from nvidia-current 470.86
- update amdgpu ids from kernel 5.15.1
- update pci.ids and usb.ids

Version 0.6.33 - 20 Sep 2021

- add ids from nvidia-current 470.74
- update pci.ids

Version 0.6.32 - 24 Aug 2021

- add ids from nvidia-current 470.63.01
- update pci.ids and usb.ids

Version 0.6.31 - 3 Jun 2021

- add ids from nvidia-current 460.84
- update pci.ids and usb.ids

Version 0.6.30 - 11 May 2021

- add ids from nvidia-current 460.80
- update pci.ids

Version 0.6.29 - 27 Apr 2021

- add pci ids from nvidia-current 460.73.01
- update pci.ids and usb.ids

Version 0.6.28 - 19 Mar 2021

- add ids from nvidia-current 460.67
- update pci.ids

Version 0.6.27 - 26 Feb 2021

- add ids from nvidia-current 460.56
- update pci.ids and usb.ids

Version 0.6.26 - 7 Feb 2021

- add card definition for AMD Southern islands and later
- switch AMD SI and CIK entries to new card name
- drop obsolete fglrx references

Version 0.6.25 - 30 Jan 2021

- amdgpu: add Sienna Cichlid id 0x73a1
- switch Amd Sea Islands cards from radeon to amdgpu
- switch Amd Southern Islands cards from radeon to amdgpu
- update usb.ids

Version 0.6.24 - 26 Jan 2021

- add new pci ids from nvidia-current 460.39

Version 0.6.23 - 25 Jan 2021

- revert switch from radeon to amdgpu for all supported cards,
  as it breaks more than it fixes

Version 0.6.22 - 24 Jan 2021

- switch from radeon to amdgpu for all supported cards
- update usb.ids

Version 0.6.21 - 22 Jan 2021

- Re-classify GeForce 8200M G in the GeForce 8100-415 group
- Cleanup false-positive/non-existant pcidev id from pcitable
- add missed amdgpu ids from kernel 5.10.9
- update pci.ids

Version 0.6.20 - 10 Jan 2021

- redo pcitable.x86_64 for nvidia-current 460.32.03 and remove
  false-positive ids added by merge2pcitable.pl bug
- redo pcitable for nvidia390 390.141 and remove
  false-positive ids added by merge2pcitable.pl bug
- disable nvidia340 as it is EOL upstream as of 31.12.2020,
  and has unfixable security issues

Version 0.6.19 - 09 Jan 2021

- add several missed device ids from nvidia390 driver
- switch over several nvidia gpus from nvidia340 to
  nvidia390 according to nvidia README in 390.141 driver

Version 0.6.18 - 09 Jan 2021

- add several missed nvidia-current pci ids
- update pci.ids

Version 0.6.17 - 08 Jan 2021

- refresh pcitable.x86_64 from nvidia 460.32.03

Version 0.6.16 - 16 Dec 2020

- add amdgpu and i915 ids from kernel 5.10.1
- update pci.ids and usb.ids

Version 0.6.15 - 20 Nov 2020

- refresh pcitable.x86_64 from nvidia 455.45.01

Version 0.6.14 - 10 Oct 2020

- refresh pcitable.x86_64 from nvidia 455.28

Version 0.6.13 - 22 Sep 2020

- refresh pcitable.x86_64 from nvidia 455.23.0ngi4

Version 0.6.12 - 22 Sep 2020

- refresh pcitable from nvidia 390.138

Version 0.6.11 - 22 Sep 2020

- refresh pcitable from nvidia 340.108

Version 0.6.10 - 20 Aug 2020

- refresh pcitable.x86_64 from nvidia 450.66
- update pci.ids and usb.ids

Version 0.6.9 - 24 Apr 2020

- update i915 ids from kernel 5.6.6
- update pci.ids and usb.ids

Version 0.6.8 - 22 Mar 2020

- update pci.ids and usb.ids

Version 0.6.7 - 13 Dec 2019

- update amdgpu ids from kernel 5.4.2
- update i915 ids from kernel 5.4.2
- update pci.ids and usb.ids

Version 0.6.6 -  4 Nov 2019

- update ids from nvidia-current 440.31
- update pci.ids and usb.ids

Version 0.6.5 -  3 Oct 2019

- update amdgpu ids from kernel 5.3.2
- update pci.ids and usb.ids

Version 0.6.4 - 13 Sep 2019

- update ids from nvidia-current 430.50
- update pci.ids and usb.ids

Version 0.6.3 - 10 Aug 2019

- update i915 ids from kernel 5.2.8
- update pci.ids

Version 0.6.2 - 30 Jul 2019

- update ids from nvidia-current 430.40
- update pci.ids and usb.ids

Version 0.6.1 - 20 Jul 2019

- update ids from nvidia-current 430.34
- update pci.ids

Version 0.6.0 - 10 Jun 2019

- update ids from nvidia-current 430.26
- update pci.ids

Version 0.5.9 - 19 May 2019

- update i915 pci ids as of kernel-5.1.3-4.mga7
- update pci.ids and usb.ids

Version 0.5.8 -  8 May 2019

- update ids from nvidia-current 418.74

Version 0.5.7 -  3 May 2019

- update intel ids as of kernel 5.1.0-rc7.2
- update pci.ids and usb.ids

Version 0.5.6 - 30 Mar 2019

- update amdgpu ids as of kernel 5.0.5
- update intel ids as of kernel 5.0.5
- update pci.ids

Version 0.5.5 - 21 Mar 2019

- update x86_64 ids from nvidia-current 418.56
- update pci.ids and usb.ids

Version 0.5.4 - 23 Feb 2019

- update x86_64 ids from nvidia-current 418.43
- update pci.ids and usb.ids

Version 0.5.3 - 16 Nov 2018

- update x86_64 ids from nvidia-current 410.78
- update pci.ids and usb.ids

Version 0.5.2 -  17 Oct 2018

- update x86_64 ids from nvidia-current 410.66
- update pci.ids

Version 0.5.1 -  5 Oct 2018

- fix up x86_64 ids from nvidia-current 410.57
- fix up ids from nvidia390 driver

Version 0.5.0 -  1 Oct 2018

- nvidia-current supports cards from GeForce 635 and up beginning with
  410.57 and is 64bit only
- nvidia 390.xx long lived driver is now named nvidia390 and supports
  all GeForce 420 to 630 in both 64bit and 32bit
- update pci.ids and usb.ids

Version 0.4.9 -  22 Jun 2018

- switch VirtualBox from modesetting to vboxvideo

Version 0.4.8 -  6 Jun 2018

- re-enable nvidia340 as it now supports xorg 1.20
- update pci.ids

Version 0.4.7 - 24 May 2018

- do not try to install nvidia3xx (doesn't support xserver 1.20)

Version 0.4.6 - 17 May 2018

- update ids from nvidia-current 390.59
- update pci.ids and usb.ids

Version 0.4.5 - 31 Mar 2018

- update ids from nvidia-current 390.48
- update pci.ids and usb.ids

Version 0.4.4 - 01 Feb 2018

- update ids from nvidia-current 390.25
- update pci.ids

Version 0.4.3 - 19 Jan 2018

- update gpu ids from kernel 4.14
- update pci.ids and usb.ids

Version 0.4.2 - 05 Jan 2018

- update ids from nvidia-current 384.111

Version 0.4.1 - 02 Jan 2018

- add missing ids from nvidia-current 384.98
- update pci.ids and usb.ids

Version 0.4.0 - 04 Nov 2017

- update ids from nvidia-current 384.98
- update pci.ids

Version 0.3.9 - 23 Sep 2017

- update ids from nvidia-current 384.90
- update pci.ids and usb.ids

Version 0.3.8 - 13 Aug 2017

- update ids from nvidia-current 384.59
- update pci.ids and usb.ids

Version 0.3.7 - 04 Jun 2017

- update pci.ids

Version 0.3.6 - 05 May 2017

- update ids from nvidia-current 375.66
- add one missing polaris12 id
- fix one polaris12 id typo
- update pci.ids

Version 0.3.5 - 05 Mar 2017

- add amdgpu polaris12 ids
- update pci.ids

Version 0.3.4 - 19 Feb 2017

- update ids from nvidia-current 375.39
- update pci.ids and usb.ids

Version 0.3.3 - 14 Dec 2016

- enable nvidia340 again (xorg 1.19 supported as of 340.101)
- enable nvidia304 again (xorg 1.19 supported as of 304.134)
- update usb.ids

Version 0.3.2 - 27 Nov 2016

- do not try to install nvidia3xx (doesn't support xserver 1.19)

Version 0.3.1 - 24 Nov 2016

- switch VirtualBox from vboxvideo to modesetting

Version 0.3.0 - 22 Nov 2016

- update nVidia ids from nvidia-current 375.20
- update pci.ids and usb.ids

Version 0.2.9 - 02 Oct 2016

- update nVidia ids from nvidia-current 367.44
- enable earlier missed nVidia Pascal (GTX 10xx) hw
- update pci.ids and usb.ids

Version 0.2.8 - 05 Jul 2016

- update Intel ids from kernel 4.7-rc6
- update amdgpu ids from kernel 4.7-rc6
- update radeon ids from kernel 4.7-rc6
- update pci.ids and usb.ids

Version 0.2.7 - 20 Jun 2016

- detect Virtio GPU

Version 0.2.6 - 18 Jun 2016

- fix driver for a broadcom card (mga#15618)

Version 0.2.5 - 14 Jun 2016

- update pci ids from nvidia-current 367.27
- update pci.ids

Version 0.2.4 - 30 May 2016

- update pci ids from nvidia-current-361.45.11
- update pci.ids

Version 0.2.3 - 30 Apr 2016

- use nvidia304 for NVIDIA GeForce 8200M G (id 0x0845) (mga#18206)
- update pci ids from nvidia-current-361.42-1.mga6
- update pci.ids and usb.ids

Version 0.2.2 - 28 Jan 2016

- update ids from nvidia-current-352.79-1.mga6
- update pci.ids

Version 0.2.1 - 9 Jan 2016

- update intel i915 ids from kernel-4.4.0-0.rc8.2.mga6
- update pci.ids and usb.ids

Version 0.2.0 - 1 Dec 2015

- use amdgpu for newer ATI/AMD cards

Version 0.1.349 - 18 Nov 2015

- re-enable nvidia drivers
- sync ids with nvidia-current 352.63
- update pci.ids

Version 0.1.348 - 13 Nov 2015

- disable fglrx & nvidia
  (do not work with xserver-1.18)

Version 0.1.347 - 4 Oct 2015

- update pci.ids and usb.ids
- add new ids from nvidia-current-352.41-1.mga6

Version 0.1.346 - 9 Jul 2015

- update pci.ids and usb.ids
- add new ids from fglrx-15.200.1046-1.mga6

Version 0.1.345 - 21 Jun 2015

- update pci.ids and usb.ids
- add new ids from nvidia-current-352.21-1.mga6

Version 0.1.344 - 22 May 2015

- use wl driver for BCM4312 (mga#13099)
- update pci.ids and usb.ids

Version 0.1.343 - 12 Apr 2015

- update pci.ids and usb.ids
- add new ids from nvidia-current-346.59-1.mga5

Version 0.1.342 - 3 Apr 2015

- use modesetting driver instead of cirrus (#10263)

Version 0.1.341 - 25 Mar 2015

- use modesetting instead of mga driver for Matrox graphic cards (mga#15568)

Version 0.1.340 - 14 Mar 2015

- update pci.ids and usb.ids
- use wl driver for BCM43228 (mga#13976)

Version 0.1.339 - 27 Feb 2015

- update ids from nvidia proprietary driver 346.47

Version 0.1.338 - 21 Feb 2015

- update pci.ids and usb.ids
- sync intel gpu ids with kernel 3.19

Version 0.1.337 - 26 Jan 2015

- add GeForce FX series pci ids back (they are supported
  by the nouveau driver)
- merge2pcitable.pl: add support for nvidia driver 346+
- update ids from nvidia proprietary driver 346.35
- reassign GeForce 8100 through 415 to the newly branched
  nvidia proprietary legacy driver nvidia340

Version 0.1.336 - 14 Dec 2014

- update pci.ids and usb.ids
- update ids from x11-driver-video-ati-7.5.0-2.mga5
- update ids from fglrx-14.501.1003-1.mga5.nonfree
- update ids from nvidia-current-340.65-1.mga5.nonfree

Version 0.1.335 - 29 Aug 2014

- nvidia173 (aka Geforce FX series) is EOL upstream, wont
  support x.org server 1.16
- update ids from nvidia-current-340.32-1.mga5
- update pci.ids and usb.ids

Version 0.1.334 - 29 May 2014

- update pci.ids and usb.ids
- sync nvidia ids with nvidia-current 331.79
- sync fglrx ids with fglrx-14.010.1006

Version 0.1.333 - 22 Feb 2014

- sync nvidia ids with nvidia-current 331.49

Version 0.1.332 - 27 Jan 2014

- add 2 missing intel gpu ids (0x041e and 0x0f32)

Version 0.1.331 - 16 Jan 2014

- sync nvidia ids with nvidia-current 325.15
- sync radeon ids with x11-driver-video-ati-7.2.0-9
- sync i915 ids with kernel 3.12.7
- update pci.ids & usb.ids

Version 0.1.330 - 1 Aug 2013

- update pcitable ids from proprietary fglrx 13.200.5
- update pci.ids

Version 0.1.329 - 11 Jul 2013

- update pci.ids & usb.ids

Version 0.1.328 - 28 Jun 2013

- pcitable:
  o update device ids from proprietary nvidia-current 319.32
  o update device ids from proprietary fglrx 13.101

Version 0.1.327 - 3 May 2013

- pcitable:
  o add missing NVIDIA Tesla/VGX device ids
  o update device ids from proprietary nvidia-current 319.17
  o fix some incorrect NVIDIA card classifications (cosmetic)

Version 0.1.326 - 2 May 2013

- pcitable:
  o drop hardcoding of free broadcom wireless drivers done in
    0.1.321, as it does not work as intended.

Version 0.1.325 - 28 April 2013

- Cards+
  o enable sis acceleration again as driver is now fixed

Version 0.1.324 - 27 April 2013

- pcitable:
  o update device ids from x11-driver-video-ati-7.1.0-4.mga3

Version 0.1.323 - 25 April 2013

- pcitable:
  o update device ids from x11-driver-video-ati-7.1.0-3.mga3
  o update device ids from i915 in kernel-3.8.8-3.mga3

Version 0.1.322 - 24 April 2013

- pcitable:
  o update device ids from proprietary fglrx-12.104

Version 0.1.321 - 24 April 2013

- map free drivers for broadcom wireless hw:
  * b43legacy
    0x4301 / BCM4301
    0x4306 / BCM4306/2 
    0x4325 / BCM4306/2
  * b43
    0x4307 / BCM4306/3
    0x4311 / BCM4311
    0x4312 / BCM4311
    0x4315 / BCM4312
    0x4318 / BCM4318
    0x4319 / BCM4318
    0x4320 / BCM4320
    0x4321 / BCM4321
    0x4322 / BCM4322
    0x4324 / BCM4309
    0x4328 / BCM4321
    0x4329 / BCM4321
    0x432b / BCM4322
    0x432c / BCM4322
    0x4331 / BCM4331
    0x4350 / BCM43222
    0xa8d6 / BCM43222
    0xa8d8 / BCM43224/5
  * brcmfmac
    0x4330 / BCM4330
    0x4334 / BCM4334
    0xbd17 / BCM43236
    0xbd1e / BCM43143
    0xbd1f / BCM43242
  * brcmsmac
    0x0576 / BCM43224
    0x4353 / BCM43224
    0x4357 / BCM43225
    0x4727 / BCM4313

Version 0.1.320 - 13 April 2013

- nuke ancient dkms-modules-info/*
- map broadcom-wl driver for hw with no free alternative:
  * 0x4313 / BCM4311
  * 0x432a / BCM4321
  * 0x432d / BCM4322
  * 0x435a / BCM43228
  * 0xa99d / BCM43421

Version 0.1.319 - 10 April 2013

- use "modesetting" for "Poulsbo US15W(GMA500)" (mga#8258)

Version 0.1.318 - 28 March 2013

- dabusb & ultracam no more exist
- some modules were replaced:
  o cpia-usb, ibmcam, konicawc, ov511, stv680 & w9968cf => gspca*
  o radio-maestro => snd_es1968
  o touchkitusb => usbtouchscreen

Version 0.1.317 - 28 March 2013

- at76_usb was replaced by at76c50x-usb

Version 0.1.316 - 28 March 2013

- kill "hci_usb" entries (mga#5841)
  (removed from kernel in 2008)

Version 0.1.315 - 22 March 2013

- disable acceleration on SiS as it crashes (mga#7521)
- pcitable:
  o update ids from proprietary nvidia-current 310.40
- update pci.ids & usb.ids 

Version 0.1.314 - 10 January 2013

- pcitable
  o drop all broadcom-wl ids from database to be able to
    configure and test  free drivers through drakx tools

Version 0.1.313 - 6 January 2013

- update pci.ids & usb.ids 

Version 0.1.312 - 6 December 2012

- fix driver for some r128 cards (mga#7867)

Version 0.1.311 - 22 November 2012

- switch DRIVER2 for GeForce 7xxx and GeForce 8xxx cards to the
  newly added 304.xx series proprietary driver as support is
  dropped from nvidia-current

Version 0.1.310 - 31 October 2012

- Cards+
  o enable nvidia173 driver again as it supports x11-server 1.13
- pcitable
  o add new ids from fglrx-9.010

Version 0.1.309 - 30 September 2012

- pcitable
  o add new ids from nvidia-current-304.51

Version 0.1.308 - 14 September 2012

- pcitable
  o add new ids from nvidia-current-304.43
  o add new ids from fglrx-9.00

Version 0.1.307 - 7 September 2012

- remove "wl" driver for 0x14e4:0x4727 (mga#6122)
- remove two other "wl" references

Version 0.1.306 - 19 August 2012

- pcitable
  o update ids from x11-driver-video-ati-6.14.6
  o update ids from nvidia-current-304.37
- Monitor DB
  o add Samsung SMS19A100

Version 0.1.305 - 2 July 2012

- update ids from the proprietary nvidia-current-295.59

Version 0.1.304 - 6 June 2012

- update AMD/ATI Cards+ entries from the proprietary driver
  o HD 4000 and below are no longer supported by it, so the free driver
    is now always used for those

Version 0.1.303 - 13 May 2012

- add another intel id from kernel-3.3.6
- add new NVIDIA ids from the proprietary nvidia-current-295.49
- Monitor DB
  o add SyncMaster XL2370 (mga#5315)

Version 0.1.302 - 2 May 2012

- drop DKMS data about r8192se_pci & rt3090sta* (mga#5681)

Version 0.1.301 - 28 April 2012

- use fbdev for "Poulsbo US15W(GMA500)" (mga#5633)

Version 0.1.300 - 05 April 2012

- disable nvidia96xx as third driver when nvidia cannot be used due to
  missing SSE support
- refuse to set up nvidia if SSE support is not available
- Monitor DB
  o add BENQ G2320HDB (mga#397)
- add new AMD ids from the proprietary and free drivers
- add new NVIDIA ids from the proprietary driver
- restructure AMD/ATI Cards+ entries for HD 2000 and newer
  o separate those that support usermode modesetting
  o add the necessary FIRMWARE and DRIVER_NO_FIRMWARE entries as per
    mga bug #3466
  o do not assign anything to the old unmaintained radeonhd driver
- switch NVIDIA NVD9/GF119 cards from vesa to nouveau

Version 0.1.299 - 10 December 2011

- Monitor DB
  o sync with latest Fedora

Version 0.1.298 - 10 December 2011

- update pci.ids & usb.ids (mga#3677)

Version 0.1.297 - 02 December 2011

- add new ATI ids from the free and proprietary drivers
- add new NVIDIA ids from the proprietary driver
- disable nvidia173 and nvidia96xx as they do not support X.org server
  1.11)
- add new Intel ids from the i915 driver
- switch NVIDIA Fermi (400/500 series) from vesa to nouveau driver
  except for some PMC.ID 0xd9 cards (GF410/510/520 and Quadro 4200M)
  that will only get support in kernel 3.2

Version 0.1.296 - 27 November 2011

- add nvidia 0x0df4 (mga#3499)
- add Samsung SyncMaster 933SN (mga#1658)

Version 0.1.295 - 23 November 2011

- fix for mga #933 must filter on subvendor/subdevice in order to fix
  mga #1525

Version 0.1.294 - 23 November 2011

- move back ldetect-lst-modules.alias in /lib/module-init-tools/,
  it needs to be parsed in its own group, so that modprobe.d/*.conf
  files are preferred over it

Version 0.1.293 - 21 November 2011

- add support for virtual gfx card
- drop obsolete pcitable.ia64 (either redundant or invalid)
- reenable nvidia96xx (support for x.org server 1.10 was added with 96.43.20)
- move preferred aliases list back to /etc/modprobe.d
  (still read before kernel ones)

Version 0.1.292 - 01 August 2011

- add new ATI ids from the free and proprietary drivers
- add support for all new Intel Sandy Bridge graphics devices (mga#1401)
- add support for QXL virtual video card
- add support for wl driver (#2266)
- disable nvidia96xx (not compatible with x.org server 1.10)
- prefer amd74xx module for nForce MCP51 IDE (mga#933, mdv#49957)
- switch 1002:9610 back to ati driver (mga #1267)
- make the names of the last two Cards using radeonhd/fglrx more specific
- make 'MAX' in pnp.ids point to Maxdata (for some Belinea monitors)

Version 0.1.291 - 22 March 2011

- add new NVIDIA ids from the proprietary driver
- add new ATI ids from the prorietary driver and the free driver
- update ATI ids from xf86-video-ati-6.14.1

Version 0.1.290 - 19 December 2010

- add new NVIDIA ids from the proprietary driver
- update pci.ids usb.ids oui.txt

Version 0.1.289 - 22 October 2010

- add new NVIDIA ids from the proprietary driver
- add new ATI ids from the free ati driver and the proprietary driver

Version 0.1.288 - 18 August 2010

- update to latest usb.ids from linux-usb.org
- add the product names corresponding to the appropriate usb product ids for
  Samsung's new G4 USB which the firmware fails to provide & identify itself by

Version 0.1.287 - 11 June 2010

- add new NVIDIA ids from the proprietary driver (#59714), assigning the
  Fermi cards to a new GF400+ class for vesa/nvidia-current

Version 0.1.286 - 11 May 2010

- switch back 0x10de:0x0110 to using the proprietary driver (#57539)
- remove imwheel support (replace with evdev)
- switch ATI cards now supported by radeon to it from vesa
  (HD 5000 series cards)

Version 0.1.285 - 30 March 2010

- add new NVIDIA ids from nvidia-current
- add new ATI ids from fglrx
- switch ATI cards now supported by radeon to it from vesa
- re-enable ATI proprietary driver

Version 0.1.284 - 25 February 2010

- make imstt cards use vesa driver (imstt driver doesn't exist since 2009.1)
- make MediaGX cards use geode instead of cyrix
- make Intel Vermilion cards use vesa since vermilion doesn't work
- drop vga driver which is no longer working
- drop i810 driver which is no longer working
- add support for Intel Atom "Pineview G" and "Pineview GM" integrated
  graphics adapters
- add support for desktop and mobile Intel Core i3/i5 integrated
  graphics adapters
- add support for Intel B43 graphics adapter
- disable NVidia propretary driver on 0x10de:0x0110 as it segfaults on
  2010.0
- add new ATI ids from fglrx 8.690 (10.1)

Version 0.1.281 - 3 January 2010

- disable ATI propretary driver for now, it doesn't support X.org
  server 1.7+
- update various ATI ids as per current free driver ID lists (some
  cards were switched from radeonhd to radeon, and some to vesa)
- remove ATI IDs that are not supported by any driver

Version 0.1.280 - 24 December 2009

- Monitor DB
  o add entry for 'Samsung SyncMaster 2233SW (Charles A Edwards)
  o add entry for 'Samsung SyncMaster 2494HS' (Marek Laane)
- add new NVIDIA ids from nvidia-current 190.42
- add new ATI ids from fglrx 8.671, 8.681 assigned to
  fglrx+radeonhd
- switch all HD 5000 series ATI ids from ati to radeonhd
- use nouveau as default free driver for NVIDIA cards, except for
  Riva 128 (NV03) which is not supported by it
- re-enable proprietary NVIDIA driver on G105M, issue fixed upstream

Version 0.1.279 - 27 October 2009

- really tag for 10de:06ec as not working with nvidia driver (#54862)
- use nvidia173 for 10de:2362 (#54768)

Version 0.1.278 - 15 October 2009

- select openchrome driver for 0x1106:0x1122
- Monitor DB
  o add entry for 'Iiyama Prolite E2607WS' (#54225)
  o add entry for 'MAG LT717s' and default to 1280x1024 (#49656)
  o add entry for 'Samsung SyncMaster 2343BW' (Dick Gevers)

Version 0.1.277 - 8 October 2009

- use lower horizsync for 800x480 (28.8 kHz for WeSurf and Compal Jax10)
- add LCD Panel 1366x768 entry (#47706)
- add monitor entry for Asus 1101HA (#47706)
- add Samsung SyncMaster 732NW (from Sergio Rafael Lemke)
- use psb video driver for Intel 0x8108 and 0x8109

Version 0.1.276 - 6 October 2009

- enable to automatically add new ATI cards from
  dkms-modules-info/dkms-modules.alias where fglrx declares what it
  supports
- add Cards+ entry for Intel Poulsbo US15W (GMA500), using the psb driver
- Monitor DB
  - add Samsung SyncMaster 2243SN (Reinout van Schouwen)

Version 0.1.275 - 25 September 2009

- add support for 0x10de:0x06ec (G98M [GeForce G 105M]) which only
  works with nv (#54000)
- add quite a lot of new nvidia cards definition from NV_WHQL.inf from
  windows driver 186.82)
- remove quite a lot of usb devices descriptions that came from usb.ids

Version 0.1.274 - 23 September 2009

- radeonhd failed on 0x1002:0x9480 (#53183)

Version 0.1.273 - 23 September 2009

- dc2xx is now obsoleted by userspace
- drop obsolete 'cs46xx', 'cs5535', 'maestro', 'maestro3', & 'ymfpci'
  entries

Version 0.1.272 - 23 September 2009

- kill all 0x10ec:0x8139:*:* entries (ldetect now try to choose
  bettwen "8139cp" & "8139too" according to PCI revision like
  performed by the kernel) (#53349)

Version 0.1.271 - 22 September 2009

- auerswald, hp5300, hpusbscsi, rio500 & tiglusb are obsoleted by
  userspace
- fix obsoleted drivers:
  o CDCEther => cdc_ether
  o hci_usb => btusb
  o mtouchusb => usbtouchscreen
  o ov518_decomp => gspca_ov519
  o phidgetservo => hid
  o touchkitusb => usbtouchscreen

Version 0.1.270 - 22 September 2009

- fix obsoleted drivers:
  o b2c2_usb => b2c2-flexcop-usb
  o cy82c693 => pata_cypress
  o dtc => initio
  o generic => ata_generic and ide-pci-generic
  o maestro3 => snd_maestro3
  o snd_gina3g => snd-echo3g
  o sonypi => i2c-piix4
  o sonicvibes => snd-sonicvibes

Version 0.1.269 - 22 September 2009

- add new ATI ids from fglrx
- mod_quicikame doesn't exist anymore (#52176)
- tag one more "nVidia Geforce2 MX/MX" as GeForce 3 so that it can
  uses 3D (#53841)

Version 0.1.268 - 18 September 2009

- fix 2 Matrox entries
- Monitor DB
  o sync with latest Fedora (new Dell monitors)

Version 0.1.267 - 18 September 2009

- add support for the last missing from Matrox card
- fix invalid Horzsync for 6 'Generic CRT Display; Monitor' and a
  couple Acer & Philips monitors (#48063)
- use fglrx again with ATI Mobility Radeon HD 3400 (now working)

Version 0.1.266 - 15 September 2009

- sync ati list with latest driver

Version 0.1.265 - 15 September 2009

- sync nvidia list with latest driver

Version 0.1.264 - 15 September 2009

- add support for one Matrox card (#53564)

Version 0.1.263 - 9 September 2009

- add support for ION video card (#53515)
- Monitor DB
  o sync with latest Fedora (new Dell monitors)

Version 0.1.262 - 13 August 2009

- update usbtable to get proper descriptions for USB devices
- add GeForce 9400 (nvidia-current / vesa)
- use newer intel driver for 8086:3582:1179:0002, fixes bug #44371
- do not choose siimage when pata_sil680 works too since the former
  seems no longuer to work (#52736)
- fix loading '8139too' over '8139cp' on 10ec:8139:5853:0001 (#51520)

Version 0.1.261 - 23 April 2009

- propagate the following changes from anssi (2009-04-01) into
  pcitable.x86_64 too, thus fixing wrongly using 'vesa' driver on some
  machines:
  o prefer "ati"/"radeon" driver over "radeonhd"
  o add new ATI ids from fglrx, ati and radeonhd
  o do not use fglrx with old Radeon cards

Version 0.1.260 - 21 April 2009

- Monitor DB
  o sync with latest Fedora (new Dell monitors)
- drop amd64_agp entries (#43870)

Version 0.1.259 - 20 April 2009

- fix preferring pata_marvell over ahci (#43975)

Version 0.1.258 - 1 April 2009

- do not try to use nv for 0x10de:0x053e (#48684)
- do not use fglrx with ATI Mobility Radeon HD 3400 (Andriy Rysin reported
  a failure with fglrx 8.600)
- Monitor DB
  o add Samsung SyncMaster 2043NW (Jaanus Ojangu)
- prefer pata_marvell over ahci since ahci need marvel_enabled=1 to make it work (#43975)
- prism2_plx was removed from kernel, switch the only entry that was
  using it to orinoco_tmd (0x15e8:0x0131)
- remove dpc7146 entry since it was dropped from kernel
- use radeonhd instead of ati for ATI Radeon HD 3200 0x9610 (#49824)

Version 0.1.257 - 1 April 2009

- only use Intel 810 for a specic subvendor/subdevice of 0x8086:0x3582
- Monitor DB
  o add a lot of Proview monitors (Yannick56, #49104)
  o add Samsung SyncMaster 2253BW
- prefer "ati"/"radeon" driver over "radeonhd"
- add new ATI ids from fglrx, ati and radeonhd
- do not use fglrx with old Radeon cards
- add "GeForce (nouveau driver, experimental)" to allow users to test nouveau
  by selecting it in XFdrake

Version 0.1.256 - 24 March 2009

- fix driver for "nVidia Corporation|NV11 [GeForce2 MX/MX 400]" (#48928)
- add new NVIDIA ids from 180.41
- use e100 instead of eepro100 since kernel team disabled the latest (#49085)
- Monitor DB
  o add Sony TV Bravia KDL-32D3000 (fcrozat)
  o add Samsung SyncMaster 2053BW (dams)

Version 0.1.255 - 18 March 2009

- re-enable fglrx driver
- use (old) Intel 810 driver for 0x8086:0x3582, fixes bug #44371

Version 0.1.254 - 16 March 2009

- Monitor DB
  o add Acer AL1716 (Steve Morris)
  o add Iiyama Prolite H481S (aapgorilla)
  o add Packard Bell Viseo 223Ws (patrick)

Version 0.1.253 - 5 March 2009

- disable fglrx and nvidia71xx as they do not support X.org server 1.6
  (IgnoreABI does not work for them)
- use nvidia173 for non-SSE processors as well, the support was restored
- Monitor DB
  o add back "LCD Panel 800x480"
  o add ViewSonic VX2260WM (Donald Stewart)
  o sync with latest Fedora

Version 0.1.252 - 29 January 2009

- add new NVIDIA cards supported in 180.25

Version 0.1.251 - 16 January 2009

- re-work the blacklist of cards that don't work with nv to be
  more general and include more confirmed IDs

Version 0.1.250 - 11 January 2009

- add NVIDIA GeForce 9400 GT ID, adjust 7050 group to include it 
  (doesn't work with nv)

Version 0.1.249 - 23 December 2008

- add new NVIDIA IDs from 180.18
- add new ATI IDs from 8.12

Version 0.1.248 - 3 December 2008

- Monitor DB
  o remove duplicated entries
  o sync with latest Fedora

Version 0.1.247 - 2 December 2008

- Monitor DB
  o further sync with Fedora

Version 0.1.246 - 2 December 2008

- fix "INTERNAL ERROR: good_default_monitor (Generic|*) is unknown in
  MonitorsDB" after syncing with redhat

Version 0.1.245 - 29 November 2008

- NSC chips now use geode driver, nsc driver no longer builds
- drop the special case for VIA K8M800, works OK with openchrome now
- add new NVIDIA and ATI IDs from new driver versions
- add "Flat Panel 1600x900" (#45091)
- Monitor DB
  o sync monitor vendor names with Fedora
  o partial sync with Fedora
- use "i810" instead of "intel" driver on older i810 because it
  segfaults when using XAA acceleration (#43916)

Version 0.1.244 - 13 November 2008

- add new mouse definition (Logitech G5v2)
- vesa not framebuffer for ST Kyro, per dams
- disable 3D on ATI Rage 128-based cards (hard lock the machine on
  x86_64)
- use pata_cs5536 for Geode IDE controllers
- default to 800x480 on TECO TR2350 (Omatek netbook)

Version 0.1.243 - 01 October 2008

- updated DKMS alias DB

Version 0.1.242 - 01 October 2008

- drop separate Radeon HD 4xxx category: radeonhd supports these now

Version 0.1.241 - 30 September 2008

- add ID 0605 for NVIDIA GeForce 9800 GT (reported and tested by Zoida A)

Version 0.1.240 - 25 September 2008

- update dkms modules info

Version 0.1.239 - 18 September 2008

- update dkms modules info (mainly for rt2860 and rtl8187se)

Version 0.1.238 - 18 September 2008

- add support for Intel G41 graphics adapter
- use 'vesa' driver not 'nv' for GeForce 7050 (#38391)

Version 0.1.237 - 4 September 2008

- use pata_jmicron for jmicron controllers