-
Notifications
You must be signed in to change notification settings - Fork 4
/
whitelist.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 13.
1030 lines (1030 loc) · 112 KB
/
whitelist.csv
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
"4MBOL&S", "7521 *", "REV. A0", "", 0, /* Michael Wagner <[email protected]> */
"Acer *", "AcerPower 2000", "", "", 0, /* Klaus Ade Johnstad <[email protected]> */
"Acer ", "AO532h ", "V1.25", "V1.25", 0, /* Tomáš Kaluža <[email protected]> */
"Acer ", "AO751h ", "Not Applicable", "V0.32*", 0, /* Jan 29, 2010 - Luca Rei <luca.rei@ge...> */
"Acer", "AOA110", "", "", 0, /* Jan Matuska <[email protected]>, Aspire One 110 */
"Acer", "AOA150", "", "", 0, /* Matt Harlum <[email protected]> Aspire One 150 + Dec 29, 2009 - Scott Lees <[email protected]> */
"Acer *", "Aspire 1500 *", "", "", VBE_POST|VBE_SAVE, /* Simon Bachmann <[email protected]> works with proprietary ATI driver */
"Acer", "Aspire 1520", "", "", VBE_POST|VBE_MODE, /* Andreas Wagner <[email protected]> */
"Acer ", "Aspire 1551 ", "V1.11 ", "V1.11 ", S3_BIOS|VBE_SAVE, /* Mario J. Borgnia <[email protected]> */
"Acer ", "Aspire 1620 ", "0100 ", "V1.05 ", 0, /* Acer Aspire 1620, Sascha Warner <[email protected]> */
"Acer *", "Aspire 1670 ", "", "", S3_BIOS|S3_MODE, /* Stefano Sabatini https://bugzilla.novell.com/show_bug.cgi?id=415675 */
"Acer", "Aspire 1810TZ", "v0.3115", "v0.3115", 0, /* Acer 1810TZ, tom <[email protected]> */
"Acer", "Aspire 2000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Acer *", "Aspire 2920 *", "", "", 0, /* Eberhard Niendorf <[email protected]>, kernel 2.6.25.9 */
"Acer *", "Aspire 3100 *", "", "", 0, /* Marek Stopka (M4r3k) <[email protected]> */
"Acer", "Aspire 3610", "", "", S3_BIOS|S3_MODE, /* From: Bontemps Camille <[email protected]> */
"Acer", "Aspire 3620", "", "", S3_BIOS|S3_MODE, /* From: Saul Mena Avila <[email protected]> */
"Acer ", "Aspire 3690 *", "", "", S3_BIOS|S3_MODE, /* From: Witmaster <[email protected]> */
"Acer", "Aspire 4810T", "", "", 0, /* Martin Luethi, [email protected] + Mar 21, 2010 - Theo Band <theo.band@of...> */
"Acer", "Aspire 4820T", "V1.17", "V1.17", 0, /* Oct 29, 2010 - Deepak Nayak <[email protected]> */
"Acer", "Aspire 5020", "", "", VBE_POST, /* Carlos Corbacho <[email protected]> */
"Acer *", "Aspire 5100 *", "", "", VBE_SAVE|PCI_SAVE|S3_MODE, /* Fadain Tariq <[email protected]> reported S3_BIOS|S3_MODE, but for Donald Curtis <[email protected]> only VBE_* works... NEW: Jun 23, 2010 - Max Sydorenko <[email protected]>, KMS shoud be disabled */
"Acer *", "Aspire 5110 *", "", "", VBE_POST|VBE_MODE, /* Damyan Ivanov <[email protected]> */
"Acer ", "Aspire 5500Z *", "", "", 0, /* Paul Kretek <[email protected]> */
"Acer ", "Aspire 5610Z *", "", "", S3_BIOS|S3_MODE, /* Vadim Dashkevich <[email protected]> */
"Acer *", "Aspire 5630 *", "", "", S3_BIOS|S3_MODE, /* Andrey Popov <[email protected]> */
"Acer *", "Aspire 5670 *", "", "v1.3219", RADEON_OFF, /* Eduardo Bach <[email protected]> */
"Acer ", "Aspire 5730 ", "0100 ", "V1.07 ", 0, /* Acer Aspire 5730Z, Will Donnelly <[email protected]> */
"Acer", "Aspire One 753", "V1.11", "V1.11", 0, /* Vladimir Zapolskiy <[email protected]> */
"Acer", "Extensa 2900", "", "", VBE_POST|VBE_MODE, /* Christine Upadek <[email protected]> */
"Acer", "Extensa 3000 *", "", "", S3_BIOS|S3_MODE, /* Paolo Herms <[email protected]> */
"Acer ", "Extensa 4150 *", "", "", S3_BIOS|S3_MODE, /* seife */
"Acer ", "Extensa 5620 *", "", "", S3_BIOS|S3_MODE, /* Xavier Douville <[email protected]> */
"Acer ", "Extensa 6220 *", "", "", S3_BIOS, /* Libor Plucnar <[email protected]> */
"Acer,Inc.", "Aspire 1350", "", "", VBE_POST|VBE_MODE|NOFB, /* Felix Rommel, https://bugzilla.novell.com/show_bug.cgi?id=228572 */
"Acer, inc.", "Aspire 1640 ", "", "", VBE_SAVE, /* Giorgio Lando <[email protected]> */
"Acer, inc.", "Aspire 1650 ", "", "", VBE_POST|VBE_MODE, /* Stefano Costa <[email protected]> */
"Acer, inc.", "Aspire 1690 ", "", "", VBE_POST|VBE_SAVE, /* */
"Acer, inc.", "Aspire 3000 *", "", "", VBE_POST|VBE_MODE, /* Ricardo Garcia <[email protected]> */
"Acer, inc.", "Aspire 4520 *", "", "", 0, /* <[email protected]> */
"Acer, inc.", "Aspire 5050 *", "", "", S3_BIOS, /* Jim Hague <[email protected]> */
"Acer, inc.", "Aspire 5570 *", "", "", VBE_POST|VBE_MODE, /* From: "cj.yap" <[email protected]> */
"Acer, inc.", "Aspire 5580 *", "", "", 0, /* <[email protected]>, probably only with nvidia driver :-( */
"Acer, inc.", "Aspire 5920G *", "", "", 0, /* Adrian Levi <[email protected]>. S3_BIOS reported by: Jun 29, 2010 - morpheus <jacopogg83@li...>. No flags: Feb 10, 2010 - Juraj Misur <juraj.misur@gm...> */
"Acer, inc.", "Aspire 5920 *", "", "", VBE_POST|VBE_MODE, /* Ronny Dahl <[email protected]> */
"Acer, inc.", "Ferrari 1000 ", "", "", VBE_POST|VBE_SAVE, /* Hannes Reinecke https://bugzilla.novell.com/show_bug.cgi?id=354728 */
"Acer, inc.", "Ferrari 4000 ", "", "", VBE_POST|VBE_SAVE|NOFB, /* */
"Acer, inc.", "Ferrari 5000 ", "", "", VBE_POST|VBE_MODE, /* Russ Dill <[email protected]> * does not work with fglrx, [email protected] */
"Acer, inc.", "TravelMate 2310 ", "", "", VBE_POST|VBE_MODE, /* Quentin Denis <[email protected]> */
"Acer, inc.", "TravelMate 3000 ", "", "", VBE_POST|VBE_SAVE, /* */
"Acer, inc.", "TravelMate 3010 ", "", "", VBE_POST|VBE_MODE, /* Norbert Preining <[email protected]>, kernel 2.6.23-rc2++ needed */
"Acer, inc.", "TravelMate 3020 ", "", "", VBE_POST|VBE_MODE, /* Momsen Reincke <[email protected]> */
"Acer, inc.", "TravelMate 3260 ", "", "", VBE_POST|VBE_MODE, /* Rohan Dhruva <[email protected]> */
"Acer, inc.", "TravelMate 4100 ", "", "", VBE_POST|VBE_SAVE, /* From: LucaB <[email protected]> */
"Acer, inc.", "TravelMate 6291 ", "", "", VBE_POST|VBE_MODE, /* Paul Korossy <[email protected]> */
"Acer, inc.", "TravelMate 8100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Acer, inc.", "TravelMate C200 ", "", "", 0, /* Sven Foerster <[email protected]> */
"Acer, inc.", "Xspire 1650 *", "", "", 0, /* decoder <[email protected]> */
"Acer", "TravelMate 2300", "", "", VBE_POST|VBE_MODE, /* Arkadiusz Miskiewicz <[email protected]> */
"Acer ", "TravelMate 230 ", "", "", S3_BIOS|S3_MODE, /* Sridar Dhandapani <[email protected]> */
"Acer", "TravelMate 2350 *", "", "", S3_BIOS|S3_MODE, /* Arjan Oosting <[email protected]> */
"Acer ", "TravelMate 240 ", "", "", VBE_POST|VBE_SAVE, /* */
"Acer", "TravelMate 2410", "", "", S3_BIOS|S3_MODE, /* jan sekal <[email protected]> */
"Acer", "TravelMate 2420", "", "", S3_BIOS|S3_MODE, /* Peter Stolz <[email protected]> */
"Acer ", "TravelMate 2450 ", "", "", 0, /* Erki Ferenc <[email protected]> */
"Acer ", "TravelMate 2490 ", "", "", S3_BIOS|S3_MODE, /* Vit Cepela <[email protected]> */
"Acer ", "TravelMate 3220 *", "", "", S3_BIOS|S3_MODE, /* */
"Acer", "TravelMate 4000", "", "", S3_BIOS|S3_MODE, /* Andreas Juch <[email protected]> */
"Acer", "TravelMate 4400", "", "", 0, /* [email protected] */
"Acer ", "TravelMate 4650 *", "", "", S3_BIOS|S3_MODE, /* */
"Acer *", "TravelMate 5320 *", "", "", S3_BIOS|S3_MODE, /* Adrian C. <[email protected]> */
"Acer ", "TravelMate 630 ", "", "", S3_BIOS|S3_MODE, /* TravelMate 630Lci Tim Dijkstra <[email protected]> */
"Acer", "TravelMate 6492", "", "", 0, /* Hubert Lepicki <[email protected]> */
"Acer", "TravelMate 650", "", "", VBE_POST|VBE_SAVE, /* Norbert Preining */
"Acer", "TravelMate 660*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Acer", "TravelMate 7520", "", "", S3_BIOS, /* <[email protected]> */
"Acer", "TravelMate 800", "", "", VBE_POST, /* Martin Sack, this one may be NOFB, to be verified */
"Acer ", "TravelMate C300", "", "", VBE_SAVE, /* */
"Acer ", "TravelMate C310 ", "0100 ", "V1.08 ", 0, /* Mar 15, 2010 - Robert Jason Meerman <robert.meerman@gm...> */
"American Megatrends Inc.", "Uknown", "1.0", "P2.00", 0, /* AMI :-), Mario Maas <[email protected]> */
"AnabelleB", "Claro TW7M", "", "", S3_BIOS|S3_MODE, /* Ian <[email protected]> ASI Claro TW7M Notebook */
"Apple Computer, Inc.", "MacBook1,1", "", "", VBE_POST|VBE_MODE, /* Alexander Wirt reported "VBE_SAVE", but Penny Leach <[email protected]> needs VBE_POST|VBE_MODE */
"Apple Computer, Inc.", "MacBook2,1", "", "", VBE_POST, /* Marvin Stark <[email protected]> */
"Apple Computer, Inc.", "MacBookPro2,2", "", "", VBE_MODE, /* Brian Kroth <[email protected]>, newer BIOS does not like VBE_POST?, (sys_ver:" MBP22.88Z.00A5.B00.0610192105", VBE_POST|VBE_MODE, Julien BLACHE [email protected]) */
"Apple Inc.", "MacBook2,1", "1.0", "", 0, /* Mildred <[email protected]>, needs VBE_SAVE from console, but that slows resuming */
"Apple Inc.", "MacBook3,1", "1.0", "", 0, /* <[email protected]> Kernel 2.6.26-rc9, probably with i910 */
"Apple Inc.", "MacBookPro4,1", "", "", 0, /* Tilman Vogel <[email protected]>, only works from X */
"Apple Inc.", "MacBookPro5,1", "1.0", " MBP51.88Z.007E.B00.0902031928", 0, /* Giovanni Toraldo <[email protected]>, no flags tested */
"Apple Inc.", "MacBookPro5,5", "1.0", " MBP55.88Z.00AC.B03.0906151708", 0, /* Macbook 5,5, Giorgio <[email protected]> */
"Apple Inc.", "MacBookPro6,2", "1.0", " MBP61.88Z.0057.B0A.1005121001", 0, /* Aug 18, 2010 - Michel Bauer <michel.bauer@ce...> (nvidia propietary driver */
"", "", "", "ASUS A7V600 ACPI BIOS Revision *", S3_BIOS|S3_MODE, /* ASUS a7v600 motherboard, has no usable sys_* entries besides bios_version :-( reported by James Spencer */
"", "", "", "ASUS A7V8X-X ACPI BIOS Revision *", VBE_POST|VBE_MODE, /* Gabriel <[email protected]> */
"", "", "", "ASUS A7V ACPI BIOS Revision *", 0, /* ASUS A7V Mainboard, Michael Klein <[email protected]> */
"", "", "", "ASUS M2A-VM ACPI BIOS Revision *", VBE_POST|VBE_MODE, /* Tristan Hoffmann <[email protected]> Newer bios revisions (1705) seem to need VBE_POST, bios_ver: "ASUS M2A-VM ACPI BIOS Revision 1101", S3_BIOS|VBE_MODE, Andreas Bolsch <[email protected]>, Lajos Bor�czki <[email protected]> reports S3_BIOS|S3_MODE because -f fails on console */
"", "", "", "ASUS M2A-VM HDMI ACPI BIOS Revision 1603", VBE_POST|VBE_MODE, /* Jan Schaefer <[email protected]> */
"", "", "", "ASUS M2N32-SLI DELUXE ACPI BIOS Revision 1101", VBE_POST|VBE_MODE, /* */
"", "", "", "ASUS M2N32-SLI DELUXE ACPI BIOS Revision 1201", VBE_POST|VBE_MODE, /* another ASUS Mainboard, reported by [email protected] */
"", "", "", "ASUS M2N-E ACPI BIOS Revision *", 0, /* ASUS M2N-E motherboars, not much usable in DMI :-( reported by Ingo <[email protected]> */
"", "", "", "ASUS Striker ACPI BIOS Revision *", 0, /* another ASUS Mainboard, RidewithStyle <[email protected]> */
"ASUSTEK ", "A2H/L ", "", "", 0, /* Cristian Rigamonti */
"ASUSTeK Computer INC.", "1000H", "", "", 0, /* Daniel Willkomm <[email protected]> EEE 1000H */
"ASUSTeK Computer INC.", "1002HA", "x.x", "0802 ", 0, /* ASUS Eeepc 1002HA, Miguel Figueiredo <[email protected]> */
"ASUSTeK Computer INC.", "1005HA", "x.x", "", 0, /* ASUS Eeepc 1005HA, Raphael Scholer <[email protected]> (bios_version="0703 ", J�r�me H�nin <[email protected]>, (bios_version="0505 ") */
"ASUSTeK Computer INC.", "1005PR", "x.x", "0201 ", S3_BIOS|S3_MODE, /* James Dewar <[email protected]> */
"ASUSTeK Computer INC.", "1015PE", "x.x", "0601 ", S3_BIOS, /* Oct 5, 2010 - Brandon Kase <[email protected]> */
"ASUSTeK Computer INC.", "1201T", "x.x", "0317 ", 0, /* Jul 2, 2010 - Brian Harkness <maestro_bwh@ya...> */
"ASUSTeK Computer INC.", "701", "", "", VBE_POST|VBE_MODE, /* Andrea Zucchelli <[email protected]> EEE-PC 4G */
"ASUSTeK Computer INC.", "900", "0704", "0802*", 0, /* Jul 3, 2010 - <jon@wh...> */
"ASUSTeK Computer INC.", "900A", "x.x", "0403 ", 0, /* Apr 10, 2010 - Bernhard M. Wiedemann <s2rambmw@ls...> */
"ASUSTeK Computer Inc.", "A2D ", "", "", S3_BIOS|S3_MODE, /* From: Julien Puydt <[email protected]> */
"ASUSTeK Computer Inc. ", "A3N ", "1.0 ", "0215 ", S3_BIOS, /* Asus A3N, Stephan Schaller <[email protected]> */
"ASUSTeK Computer Inc.*", "A6G ", "", "", 0, /* Thomas Thrainer <[email protected]> */
"ASUSTeK Computer Inc. ", "A6JC *", "", "", 0, /* Piotr Drozdek <[email protected]> */
"ASUSTeK Computer Inc. ", "A6J *", "", "", VBE_POST|VBE_MODE, /* Arnout Boelens <[email protected]> */
"ASUSTeK Computer Inc. ", "A6K *", "", "", 0, /* Tom Gruben <[email protected]>, maybe only with nvidia? */
"ASUSTeK Computer Inc. ", "A6Km ", "", "", 0, /* Patryk Zawadzki <[email protected]> */
"ASUSTeK Computer Inc. ", "A6Kt ", "", "", S3_BIOS|S3_MODE, /* Tom Malfrere <[email protected]> */
"ASUSTeK Computer Inc. ", "A6M", "", "", VBE_POST, /* Szalai Akos <[email protected]> */
"ASUSTeK Computer INC. ", "A6T", "", "", 0, /* Anthony Mahe <[email protected]> */
"ASUSTeK Computer Inc. ", "A6U ", "", "", VBE_POST|VBE_MODE, /* [email protected] */
"ASUSTeK Computer INC. ", "A6VA ", "", "", 0, /* Daniel Bumke <[email protected]> */
"ASUSTeK Computer Inc. ", "A8He *", "", "", S3_BIOS|S3_MODE, /* Alex Myltsev <[email protected]> */
"ASUSTeK Computer Inc. ", "A8JS *", "", "", 0, /* Oliver Moessinger <[email protected]> */
"ASUSTeK Computer Inc. ", "F2J *", "", "", S3_BIOS, /* Arkadiusz Miskiewicz <[email protected]> */
"ASUSTeK Computer Inc. ", "F3F *", "", "", 0, /* Julien Puydt <[email protected]> works from console and with nvidia driver, S3_BIOS|S3_MODE ([email protected]) */
"ASUSTeK Computer Inc. ", "F3JC *", "", "", S3_BIOS|S3_MODE, /* Daniel Kinzler <[email protected]> */
"ASUSTeK Computer Inc. ", "F3JP *", "", "", VBE_POST|VBE_MODE, /* Marco Jorge <[email protected]> */
"ASUSTeK Computer Inc. ", "F3Ka *", "", "", VBE_POST|VBE_SAVE|NOFB, /* Oliver Neukum, only works without FB, https://bugzilla.novell.com/show_bug.cgi?id=425071 */
"ASUSTeK Computer INC. *", "F3Sg *", "", "", 0, /* Anghinolfi Luca <[email protected]> */
"ASUSTeK Computer INC. ", "F3T", "", "", 0, /* Vladimir Pouzanov <[email protected]>, probably only with nvidia and from X */
"ASUSTeK Computer Inc. ", "F80L ", "1.0 ", "204 ", VBE_POST, /* Asus F80L laptop, Manuel P�gouri�-Gonnard <[email protected]> */
"ASUSTeK Computer Inc. *", "F9E *", "", "", 0, /* Enrico Zini <[email protected]> */
"ASUSTeK Computer Inc. *", "G1S *", "", "", 0, /* Paul Cousins <[email protected]> */
"ASUSTek Computer Inc.", "K8N-E-Deluxe", "", "", S3_BIOS, /* ASUS Mainboard, Christoph Jaeschke <[email protected]> */
"ASUSTeK Computer Inc.", "K8V-MX", "", "", 0, /* Asus Mainboard, Ian McAnena <[email protected]> */
"ASUSTeK Computer Inc.", "L7000G series Notebook PC*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"ASUSTeK Computer Inc. ", "M2N ", "", "", S3_BIOS|S3_MODE, /* Guenther Schwarz <[email protected]> */
"ASUSTeK Computer Inc. ", "M3N ", "", "", VBE_POST|VBE_SAVE, /* Peter Suetterlin <[email protected]>, VBE_MODE does not work */
"ASUSTeK Computer Inc. ", "M51Sr *", "", "", S3_MODE, /* Galeffi Christian [email protected] */
"ASUSTeK Computer Inc. ", "M5N ", "", "", S3_BIOS|S3_MODE, /* Charles de Miramon */
"ASUSTeK Computer Inc. ", "M6Ne ", "", "", S3_MODE, /* */
"ASUSTeK Computer Inc. ", "M6N ", "", "", S3_BIOS|S3_MODE, /* Manfred Tremmel, https://bugzilla.novell.com/show_bug.cgi?id=171107 */
"ASUSTeK Computer Inc. ", "M6VA ", "", "", S3_BIOS|S3_MODE, /* M6VA, [email protected] */
"ASUSTeK Computer Inc. ", "M7A ", "", "", S3_BIOS|S3_MODE, /* M7N, Xavier Douville <[email protected]> */
"ASUSTeK Computer Inc. ", "N50Vc ", "1.0 ", "211 ", 0, /* Mar 4, 2010 - Igor Ternovsky <igor.ternovsky@gm...> */
"ASUSTeK Computer Inc. ", "S5N ", "", "", S3_BIOS|S3_MODE, /* ASUS S5200N Philip Frei <[email protected]> */
"ASUSTeK Computer Inc. ", "U3S *", "", "", VBE_POST|VBE_SAVE, /* Tobias Rothe <[email protected]> */
"ASUSTeK Computer Inc. ", "U5F *", "", "", S3_BIOS, /* ASUS U5F, Krzysztof Krzyzaniak <[email protected]> */
"ASUSTeK Computer Inc. ", "UL30A ", "1.0 ", "206 ", S3_MODE, /* Oct 20, 2010 - Simon Hafner <[email protected]> */
"ASUSTeK Computer Inc. ", "UL30A ", "1.0 ", "212 ", 0, /* Apr 22, 2010 - Florian Ragwitz <rafl@de...> */
"ASUSTeK Computer Inc. ", "V1J *", "", "", VBE_POST|VBE_MODE|NOFB, /* Szymon Olko <[email protected]> */
"ASUSTeK Computer INC.", "V6V", "", "", S3_MODE, /* ASUS V6V, Johannes Engel <[email protected]> */
"ASUSTeK Computer INC.", "W3A", "", "", S3_BIOS|S3_MODE, /* Kanru Chen <[email protected]> */
"ASUSTeK Computer Inc. ", "W5A ", "", "", S3_BIOS|S3_MODE, /* ASUS W5A, Riccardo Sama' <[email protected]> */
"ASUSTeK Computer Inc.", "W5A*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"ASUSTeK Computer Inc.", "W7J *", "", "", VBE_MODE, /* ASUS W7J, https://bugzilla.novell.com/show_bug.cgi?id=351661 */
"ASUSTeK Computer Inc. ", "W7Sg ", "1.0 ", "309 ", 0, /* Mar 11, 2010 - 易松林 <yisl04@gm...> */
"ASUSTeK Computer Inc.", "X51RL *", "", "", VBE_POST|VBE_SAVE, /* Bernhard M. Wiedemann <[email protected]>, works with radeon and fglrx */
"ASUSTeK Computer Inc. ", "Z35FM *", "", "", S3_BIOS|PCI_SAVE, /* ASUS Z35Fm, Francois Marier <[email protected]> */
"ASUSTEK ", "L2000D", "", "", S3_MODE, /* */
"ASUSTEK ", "L3000D", "", "", VBE_POST|VBE_SAVE, /* */
"ASUSTEK ", "M2000E", "", "", S3_BIOS, /* Carl Troein <[email protected]> */
"AVERATEC", "1000 Series", "", "", S3_BIOS|S3_MODE, /* Ross Patterson <[email protected]> */
"AVERATEC", "3700 Series", "", "", S3_BIOS|S3_MODE, /* Mark Stillwell */
"AVERATEC", "5500 Series", "", "", S3_MODE, /* Joel Dare <[email protected]> */
"BENQ", "JoyBook 7000", "GRASSHOPPER2", "", S3_BIOS|S3_MODE, /* Sebastian Maus <[email protected]> */
"BenQ ", "Joybook R22", "", "", S3_BIOS|S3_MODE, /* Andreas Schmitz */
"BenQ", "Joybook S32", "", "", VBE_POST|VBE_MODE, /* Miroslav Hruz <[email protected]> */
"BenQ", "Joybook S52", "", "", VBE_POST|VBE_MODE, /* Paul Duncan <[email protected]> */
"BIOSTAR Group", "N61PB-M2S", " ", "6.00 PG", 0, /* Apr 6, 2010 - John Rusnak <john.rusnak@mi...> */
"BIOSTAR Group", "TA780G M2+", "6.0", "080014 ", 0, /* Feb 11, 2010 - Gernot Schilling <gernot@ns...> */
"CLEVO CO. ", "M570TU ", "Not Applicable ", "1.00.10", 0, /* Noah Romer <[email protected]> */
"CLEVO CO. ", "M860TU ", "Not Applicable", "1.00.06", 0, /* Roel van den Berg <[email protected]> */
"CLEVO CO.", "TN120R", "", "", 0, /* Alexandre Viard <[email protected]> */
"CLEVO CO. ", "W760T/M740T/M760T ", "Not Applicable", "1.00.03", 0, /* John K Pate <[email protected]> */
"CLEVO", "D500P", "", "", VBE_POST|NOFB, /* Gilles Grandou <[email protected]> */
"CLEVO ", "M5X0JE ", "", "", S3_BIOS, /* Francisco Neto <[email protected]> */
"COMPAL", "HEL80C ", "", "", 0, /* Justin Lewis <[email protected]> */
"COMPAL ", "HEL80I ", "", "", 0, /* Leszek Kubik <[email protected]> */
"COMPAL *", "HEL81I *", "", "", 0, /* Jason Clinton <[email protected]> */
"Compaq", "Armada ", "", "1.35", 0, /* This Armada m300, reported by [email protected] seems not to have a useful model description, so to make sure i also added the bios_version */
"Compaq", "Armada E500 *", "", "", 0, /* seife has some of those */
"Compaq", "Armada M700 *", "", "", 0, /* <[email protected]> */
"Compaq", "Armada M70 *", "", "", 0, /* Rod Schafter [email protected] */
"Compaq", "Evo D510 USDT", "", "", 0, /* Martin Heimes <[email protected]> */
"Compaq", "Evo N400c *", "", "", 0, /* Viktor Placek <[email protected]> */
"Compaq ", "Evo N800w *", "", "", S3_BIOS|S3_MODE|VBE_POST|VBE_MODE, /* Joel Schaerer <[email protected]> has a later BIOS and needs different Options :-/ sys_ver:"F.05", VBE_POST|VBE_SAVE, Chris AtLee <[email protected]>, VBE_MODE does not work, text size changes. */
"Compaq*", "N620c *", "", "", S3_BIOS|S3_MODE, /* */
"Compaq", "Presario 2701EA *", "", "", VBE_POST|VBE_SAVE|NOFB, /* Paolo Saggese <[email protected]> */
"Dell Computer Corp.", "Latitude LS ", "", "", 0, /* Ed Barrett <[email protected]> */
"Dell Computer Corp.", "Latitude X200", "", "", VBE_POST|VBE_SAVE, /* Alain Prignet <[email protected]> */
"Dell Computer Corporation", "Dimension 2400 *", "", "", VBE_POST|VBE_MODE, /* Michael Witten [email protected] */
"Dell Computer Corporation", "Dimension 3000 *", "", "", VBE_POST|VBE_MODE, /* Allen <[email protected]>, Desktop with onboard grephics */
"Dell Computer Corporation", "Inspiron 1100 *", "", "", VBE_POST|VBE_MODE, /* Eitan Mosenkis <[email protected]> */
"Dell Computer Corporation", "Inspiron 1150*", "", "", 0, /* From bug [email protected], Andrei - amaces */
"Dell Computer Corporation", "Inspiron 1200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 500m*", "", "", VBE_POST|VBE_MODE, /* Dell Inspiron 500m, Georg Zumstrull <[email protected]> */
"Dell Computer Corporation", "Inspiron 5100 *", "", "", NOFB, /* Eric Sandall <[email protected]> */
"Dell Computer Corporation", "Inspiron 5100", "Revision A0", "", VBE_SAVE|VBE_MODE|PCI_SAVE, /* Another Inspiron 5100, Tony Ernst <[email protected]> */
"Dell Computer Corporation", "Inspiron 5150*", "", "", VBE_SAVE, /* VBE_POST|VBE_SAVE works on text console, but not under X. Tested by Chirag Rajyaguru */
"Dell Computer Corporation", "Inspiron 5160*", "", "", VBE_POST|VBE_MODE, /* Felipe Alvarez https://bugzilla.novell.com/show_bug.cgi?id=364429 */
"Dell Computer Corporation", "Inspiron 6000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 600m *", "", "", VBE_POST|VBE_MODE, /* Dell Inspiron 600m, Gavrie Philipson <[email protected]> */
"Dell Computer Corporation", "Inspiron 700m*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 8000 *", "", "", VBE_POST|VBE_SAVE, /* */
"Dell Computer Corporation", "Inspiron 8100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 8200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 8500 *", "", "", VBE_POST|VBE_SAVE, /* by Henare Degan <[email protected]> 8500 w. NVidia card. There are also 8500s w. ATI cards */
"Dell Computer Corporation", "Inspiron 8600*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Inspiron 9300*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude 110L*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude C400 *", "", "", VBE_POST|VBE_SAVE, /* Bernie du Breuil <[email protected]> */
"Dell Computer Corporation", "Latitude C600 *", "", "", RADEON_OFF, /* */
"Dell Computer Corporation", "Latitude C610 *", "", "", VBE_POST|VBE_MODE, /* */
"Dell Computer Corporation", "Latitude C840 *", "", "", VBE_POST|VBE_SAVE, /* Tom Lear <[email protected]> */
"Dell Computer Corporation", "Latitude CPx J650GT*", "", "", 0, /* Manuel Jander */
"Dell Computer Corporation", "Latitude CPx J800GT*", "", "", VBE_POST|VBE_MODE, /* Luke Myers */
"Dell Computer Corporation", "Latitude D400 *", "", "", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=366460 */
"Dell Computer Corporation", "Latitude D410*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude D500 *", "", "", VBE_POST|VBE_SAVE, /* Roland Hagemann <[email protected]> */
"Dell Computer Corporation", "Latitude D510*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude D600 *", "", "", VBE_POST|VBE_SAVE|NOFB, /* */
"Dell Computer Corporation", "Latitude D800 *", "", "", VBE_POST|VBE_SAVE, /* */
"Dell Computer Corporation", "Latitude D810*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude X1*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Latitude X300*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "OptiPlex 170L *", "", "", 0, /* Seppe Hoogzaad <[email protected]> */
"Dell Computer Corporation", "OptiPlex GX260 *", "", "", VBE_POST|VBE_MODE, /* Ian McAnena <[email protected]>, [email protected] */
"Dell Computer Corporation", "OptiPlex GX270 ", "", "A07", VBE_POST|VBE_MODE, /* Aug 28, 2010 - Klaviersegler <[email protected]> */
"Dell Computer Corporation", "Precision M20*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Computer Corporation", "Precision M60*", "", "", VBE_SAVE, /* Per Øyvind Karlsen <[email protected]> VBE_POST will get console working, but break X */
"Dell Computer Corporation", "Precision WorkStation 360*", "", "", 0, /* Christoph Pacher <[email protected]>, maybe only with nvidia driver :-( */
"Dell Inc. *", "Dell DM061 *", "", "", 0, /* Richard Osborne <[email protected]>, Dimension E520 */
"Dell Inc. ", "Dell DXP051 *", "", "", 0, /* Struan Bartlett <[email protected]> */
"Dell Inc. *", "Dimension 9100 *", "", "", VBE_POST|VBE_MODE, /* Edward Webb https://bugzilla.novell.com/show_bug.cgi?id=428181 */
"Dell Inc.", "Inspiron 1010 ", "A09", "A09", VBE_POST|VBE_SAVE, /* Dell Inspiron 1010, Alfredo Rezinovsky <[email protected]> */
"Dell Inc.", "Inspiron 1011", "A06", "A06", 0, /* Alex Palecek <[email protected]> + May 23, 2010 - Graeme Roberts <chee@sn...> */
"Dell Inc.", "Inspiron 1120 ", "A03", "A03", 0, /* Jamie Kitson <[email protected]> */
"Dell Inc.", "Inspiron 1200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 1420 *", "", "", VBE_POST|VBE_MODE, /* joey <[email protected]> */
"Dell Inc.", "Inspiron 1501 ", "", "", S3_BIOS|S3_MODE, /* Dell Inspiron 1501, https://bugzilla.novell.com/show_bug.cgi?id=304281 */
"Dell Inc.", "Inspiron 1520 *", "", "", 0, /* Sebastian Rittau <[email protected]> */
"Dell Inc.", "Inspiron 1525 *", "", "", VBE_SAVE, /* Horvath Andras / Log69.com <[email protected]> previously Klaus Thoennissen <[email protected]> (VBE_POST|VBE_MODE) */
"Dell Inc.", "Inspiron 1720 *", "", "", 0, /* Christophe Gay <[email protected]>, maybe only with binary only driver */
"Dell Inc.", "Inspiron 510m *", "", "", VBE_POST, /* Dell Inspiron 510m, Jose Carlos Garcia Sogo <[email protected]> */
"Dell Inc.", "Inspiron 531", "00", "1.0.13", VBE_POST|VBE_MODE, /* Rob OpenSuSE <[email protected]> */
"Dell Inc.", "Inspiron 6000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 700m*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 8100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 8200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 8600*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron 9300*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Inspiron N5010", "A08", "A08", 0, /* Adams Micsku <[email protected]> */
"Dell Inc.", "Latitude 110L*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Latitude D410 *", "", "", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=220865 */
"Dell Inc.", "Latitude D420 *", "", "", VBE_POST|VBE_MODE, /* tested by seife and Nenad ANTONIC <[email protected]> */
"Dell Inc.", "Latitude D430 *", "", "", VBE_POST|VBE_MODE, /* Benoit Gschwind <[email protected]> */
"Dell Inc.", "Latitude D505 *", "", "", VBE_POST|VBE_SAVE, /* Ian Samule, https://bugzilla.novell.com/show_bug.cgi?id=175568 */
"Dell Inc.", "Latitude D510*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Latitude D520 *", "", "", VBE_POST|VBE_MODE, /* tested by seife */
"Dell Inc.", "Latitude D530 *", "", "", VBE_POST|VBE_MODE, /* Jim <[email protected]> */
"Dell Inc.", "Latitude D610 *", "", "", VBE_POST|VBE_SAVE|NOFB, /* */
"Dell Inc.", "Latitude D620 *", "", "", VBE_POST|VBE_MODE, /* D620 reported by Miroslav Ruda <[email protected]>, <[email protected]> */
"Dell Inc.", "Latitude D630 *", "", "", VBE_POST|VBE_MODE, /* D630 Ian Bezanson <[email protected]> and tested by seife */
"Dell Inc.", "Latitude D810*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Latitude D820 *", "", "", VBE_POST|VBE_MODE, /* Johannes Engel <[email protected]> */
"Dell Inc.", "Latitude D830 *", "", "", VBE_POST|VBE_MODE, /* Gabriel Ambuehl <[email protected]>, version with intel graphics */
"Dell Inc.", "Latitude E4200 ", "", "A16", 0, /* Nov 24, 2010 - <[email protected]> */
"Dell Inc.", "Latitude E4300 ", "", "", 0, /* Dell Latitude E4300, Nicolas Estibals <[email protected]> & Frank Ploss <[email protected]> */
"Dell Inc.", "Latitude E5400", "", "A15", 0, /* Jul 9, 2010 - João Santiago <exalowprofile@gm...> */
"Dell Inc.", "Latitude E5510", "0001", "A04", 0, /* Sep 19, 2010 - TOOTAI <[email protected]> */
"Dell Inc.", "Latitude E6400 ", "", "A15", 0, /* Feb 9, 2010 - Krzysztof SOCHA <kszysss@gm...> */
"Dell Inc.", "Latitude E6400 ", "", "A20", 0, /* Apr 25, 2010 - George B. <i93.borg@gm...> */
"Dell Inc.", "Latitude E6500 ", "", "A23", 0, /* Martin Jungmann <[email protected]> */
"Dell Inc.", "Latitude X1*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Latitude X300*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "ME051 *", "", "", 0, /* Dell inspiron 1300, Tim Dijkstra <[email protected]> */
"Dell Inc.", "MM061 *", "", "", VBE_POST|VBE_MODE, /* Dell e1505, Alexander Antoniades / Inspiron 6400, James Cherryh <[email protected]> */
"Dell Inc.", "MP061 *", "", "", 0, /* Dell Inspiron E1702, Julian Krause <[email protected]> */
"Dell Inc.", "MP061", "", "", 0, /* Dell Inspiron E1705, Paul Hummel <[email protected]> */
"Dell Inc.", "MXC051 *", "", "", 0, /* Dell Inspiron 630m, Fredrik Edemar */
"Dell Inc.", "MXC061 *", "", "", VBE_POST, /* Dell Inspiron 640m, Daniel Drake <[email protected]> */
"Dell Inc.", "MXC062 *", "", "", S3_BIOS|S3_MODE, /* Dell XPS M1210 BryanL <[email protected]> */
"Dell Inc.", "MXG061 *", "", "", 0, /* Dell XPS M1710 Harry Kuiper <[email protected]>, console only resumes with vesafb! */
"Dell Inc.", "OptiPlex 755 *", "", "", VBE_POST|NOFB, /* Ted Percival <[email protected]>, ATI Graphics, no FB :( */
"Dell Inc.", "OptiPlex FX160 *", "", "", S3_BIOS|S3_MODE, /* */
"Dell Inc.", "Optiplex FX160 *", "", "", S3_BIOS|S3_MODE, /* Dell FX160, James Willcox <[email protected]> https://bugzilla.novell.com/show_bug.cgi?id=379774 */
"Dell Inc. ", "OptiPlex GX520 *", "", "", VBE_POST|VBE_MODE, /* Desktop with Intel graphics, Sitsofe Wheeler <[email protected]> */
"Dell Inc. *", "OptiPlex GX620 *", "", "", 0, /* Jon Dowland <[email protected]> */
"Dell Inc.", "Precision M20*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Dell Inc.", "Precision M4300 *", "", "", 0, /* Bruno Friedmann <[email protected]> */
"Dell Inc.", "Precision M6300 *", "", "", VBE_POST|VBE_MODE, /* Chris Debrunner <[email protected]> */
"Dell Inc.", "Precision M65 *", "", "", VBE_POST|VBE_MODE, /* [email protected] */
"Dell Inc.", "Precision M90 *", "", "", 0, /* Manoj Srivastava <[email protected]> */
"Dell Inc.", "Studio 1555", "A08", "A08", S3_MODE, /* Orel Weinstock <[email protected]> */
"Dell Inc.", "Studio XPS 1640", "A113", "A11", 0, /* JackDesBwa <[email protected]> */
"Dell Inc.", "Studio XPS 1645", "A08 ", "A08", 0, /* Apr 6, 2010 - Jon Arne Jørgensen <jonjon.arnearne@gm...> Not minimal mode */
"Dell Inc.", "Vostro 1000 ", "", "", S3_BIOS|S3_MODE, /* Florian Buether <[email protected]> */
"Dell Inc.", "Vostro 1500 *", "", "", VBE_POST|VBE_MODE, /* Kyle Kearney <[email protected]> */
"Dell Inc.", "Vostro1710", "", "", 0, /* Luciano A. Ferrer <[email protected]> */
"Dell Inc.", "Vostro 3300", "Not Specified", "A01 ", VBE_POST|VBE_MODE, /* Oct, 2010 - Mathias Teugels <[email protected]> */
"Dell Inc.", "Vostro 3500", "Not Specified", "A01 ", 0, /* Aug 9, 2010 - Anton Olsson <exuvo@ex...> */
"Dell Inc.", "Vostro 3700", "", "A09 ", 0, /* Petr Morávek [Xificurk] <[email protected]> */
"Dell Inc.", "XPS M1330 *", "", "", VBE_POST|VBE_MODE, /* Dell XPS M1330, Danny Kukawka <[email protected]> */
"Dell Inc.", "XPS M1530 *", "", "", 0, /* Pierre <[email protected]> maybe only with nvidia driver... Elie Roux <[email protected]> */
"DIXONSXP", "To be filled by O.E.M.", "Ver.001", "", 0, /* Jarek Grzys <[email protected]> */
"ECS", "536", "", "", VBE_POST|NOFB, /* Michael Dickson <[email protected]> */
"ECS", "G556 Centrino*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Elitegroup Co.", "ECS G320", "", "", VBE_POST|VBE_MODE, /* Michael Bunk <[email protected]> */
"eMachines", "ET1831", "", "P01-A1", 0, /* Jan 9, 2010 - Andreas Balser <[email protected]> */
"ERGOUK ", "M2N ", "", "", S3_BIOS|S3_MODE, /* ASUS M2400N, Daniel Gollub */
" EVGA ", "nForce 750i SLI", "1", "6.00 PG", 0, /* Jan 20, 2010 - John Gallagher <[email protected]> */
"Foxconn", "nT-330i", "To Be Filled By O.E.M.", "080015 ", 0, /* Oct 31, 2010 - Markus Mayer <[email protected]> */
"FUJITSO", "FMVLT70R", "", "", S3_BIOS|S3_MODE|PCI_SAVE, /* Aurelien Jacobs <[email protected]> */
"FUJITSU", "0000000000", " ", "Version 1.04 ", 0, /* Fujitsu S6120, Andre Kusuma <[email protected]> */
"FUJITSU", "Amilo M*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU ", "D2950-A1 ", " ", "6.00 R1.05.2950.A1 ", 0, /* Feb 7, 2010 - Eckehardt Luhm <bselu@we...> */
"FUJITSU", "FMVMGG75N7", " ", "Version 1.12 ", S3_MODE, /* rmmod xhci; s2ram -f -a 2; modprobe xhci - May 18, 2010 - Michael Fellinger <[email protected]> */
"FUJITSU", "LifeBook P7010D", "", "", S3_BIOS, /* Stephen Gildea <[email protected]> */
"FUJITSU", "LIFEBOOK P7010*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU", "LifeBook S2110", "", "", S3_BIOS, /* Andi Kleen, reported to work in 64bit mode */
"FUJITSU", "LIFEBOOK S6120*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU", "LIFEBOOK S710", " ", "Version 1.08 ", S3_MODE, /* Oct 6, 2010 - Andreas Tille <[email protected]> */
"FUJITSU", "LifeBook S7110", "", "", 0, /* Srinath Madhavan <[email protected]> */
"FUJITSU", "LifeBook S Series*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU", "LifeBook T2010", "", "", S3_BIOS|S3_MODE, /* Duy Nguyen <[email protected]> */
"FUJITSU", "LifeBook T Series", "", "", 0, /* David Nolden <[email protected]> */
"FUJITSU SIEMENS", "Amilo A1645 ", "", "", S3_BIOS|S3_MODE, /* Loki Harfagr <[email protected]> */
"FUJITSU SIEMENS", "Amilo A1650G", "", "", VBE_MODE, /* Ramon Schenkel <[email protected]> */
"FUJITSU SIEMENS", "Amilo A1667G Serie", "", "", S3_BIOS, /* stan ioan-eugen <[email protected]> */
"FUJITSU SIEMENS", "Amilo A7640 ", "", "", S3_BIOS|S3_MODE, /* Holger Macht <[email protected]>, with kernel 2.6.22+, x86_64 */
"FUJITSU SIEMENS", "Amilo A7645 ", "", "", VBE_SAVE|S3_BIOS|S3_MODE, /* reported by Thomas Halva Labella <[email protected]> */
"FUJITSU SIEMENS", "Amilo A Series", "0.01", "", VBE_POST|VBE_SAVE, /* Chris Hammond <[email protected]> Amilo A 1630 */
"FUJITSU SIEMENS", "Amilo D Series", "", "", VBE_POST|VBE_MODE, /* Hendrik Golzke <[email protected]> */
"FUJITSU SIEMENS", "AMILO L Series", "", "", VBE_POST|VBE_MODE, /* Marcel Klemmer <[email protected]> */
"FUJITSU SIEMENS", "AMILO M ", "-1 *", "R01-S0N *", VBE_POST|VBE_SAVE|PCI_SAVE, /* Simon Maurer <[email protected]> again, match exactly. */
"FUJITSU SIEMENS", "AMILO M ", "-1 *", "R01-S0Z *", VBE_POST|VBE_SAVE, /* Reiner Herrmann <[email protected]>, this one realls needs VBE_SAVE since there are many different models of the "AMILO M" series, i do a very exact match */
"FUJITSU SIEMENS", "AMILO M Series", "", "1.0G*", VBE_SAVE, /* Moritz Heidkamp <[email protected]> */
"FUJITSU SIEMENS", "Amilo M*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU SIEMENS", "AMILO Pi 1505", "", "", S3_BIOS|S3_MODE, /* Sab <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pi 1536", "", "", VBE_POST|VBE_MODE, /* Giorgos Mavrikas <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pi 2515", "", "", VBE_POST|VBE_MODE, /* Yasen Pramatarov <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pro Edition V3405", "", "", S3_BIOS|S3_MODE, /* Alexandr Kara <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pro Edition V3505 *", "", "", S3_BIOS|S3_MODE, /* Igor A. Goncharovsky <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pro Series V3525 *", "", "", 0, /* Juhasz Adam <[email protected]> */
"FUJITSU SIEMENS", "AMILO PRO V2030", "", "", VBE_POST|VBE_MODE, /* Aleksandar Markovic <[email protected]> */
"FUJITSU SIEMENS", "AMILO PRO V2035", "", "", VBE_POST|VBE_MODE, /* some unknown contributor */
"FUJITSU SIEMENS", "AMILO Pro V2040", "", "", 0, /* Florian Herrmann <[email protected]> */
"FUJITSU SIEMENS", "AMILO Pro V3205", "", "", S3_BIOS|S3_MODE, /* <[email protected]> / https://bugzilla.novell.com/show_bug.cgi?id=279944 */
"FUJITSU SIEMENS", "AMILO PRO V3515", "20", "1.0M-2309-8A20", VBE_POST|VBE_MODE, /* AmiloPro V3515, Julian Wollrath <[email protected]> */
"FUJITSU SIEMENS", "AMILO PRO V8010 *", "", "", VBE_POST|VBE_MODE, /* Steffen <[email protected]> */
"FUJITSU SIEMENS", "Amilo Si 1520", "", "", S3_BIOS|S3_MODE, /* Markus Meyer <[email protected]>, Christian Illy <[email protected]> */
"FUJITSU SIEMENS", "AMILO Xi 1546", "", "", S3_BIOS|S3_MODE, /* <[email protected]> */
"FUJITSU SIEMENS", "AMILO Xi 2550", " ", "1.11C", VBE_POST|VBE_MODE, /* Elmar Stellnberger <[email protected]> */
"FUJITSU SIEMENS", "ESPRIMO Mobile D9500", "", "", 0, /* Guilhem Bonnefille <[email protected]> */
"FUJITSU SIEMENS", "ESPRIMO Mobile M9400", "", "", 0, /* Martin Wilck <[email protected]> */
"FUJITSU SIEMENS", "ESPRIMO Mobile U9200", "1.0", "1.11 - 067 - 1566", 0, /* Aug 15, 2010 - Ondřej Caletka <O.Caletka@sh...> */
"FUJITSU SIEMENS", "ESPRIMO P*", "", "", 0, /* Jan Schaefer <[email protected]> */
"FUJITSU SIEMENS", "ESPRIMO Q5030", "None", "R2.03TFS", 0, /* Nov 16, 2010 - Michael Franz <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK B Series", "", "", 0, /* Clement LAGRANGE <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK E4010", "", "", VBE_SAVE, /* [email protected] */
"FUJITSU SIEMENS", "LIFEBOOK E8020", "", "", VBE_POST|VBE_MODE, /* Robin Knapp <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK E8110", "", "", 0, /* Florian Lohoff <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK E8410", "", "", S3_BIOS|S3_MODE, /* seife. Without Flags: Apr 13, 2010 - Gabriel Sailer <Gabriel.Sailer@gm...>*/
"FUJITSU SIEMENS", "LIFEBOOK P7010*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU SIEMENS", "LIFEBOOK P7230", "", "", S3_BIOS|S3_MODE|PCI_SAVE, /* Michael Hillerstrom <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK P8010", "", "", S3_BIOS|S3_MODE, /* Bernd Speiser <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK S6120*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU SIEMENS", "LIFEBOOK S6410", "", "", VBE_POST|VBE_MODE, /* Fred Lahuis <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK S7010", "", "", 0, /* <[email protected]>, tested with X only */
"FUJITSU SIEMENS", "LIFEBOOK S7020", "", "", S3_BIOS|S3_MODE|PCI_SAVE, /* Antonio Cardoso Martins <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK S7110", "", "", 0, /* Samuel Tardieu <[email protected]> */
"FUJITSU SIEMENS", "LifeBook S Series*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"FUJITSU SIEMENS", "LifeBook T2010", "", "", VBE_POST|VBE_SAVE|PCI_SAVE, /* Alexander Clouter <[email protected]>, needs vbe_save or the vga mode is upset */
"FUJITSU SIEMENS", "LIFEBOOK T3010", "", "", 0, /* arnold seiler <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK T4010", "", "", S3_BIOS|S3_MODE, /* Eckhart Woerner <[email protected]> */
"FUJITSU SIEMENS", "LIFEBOOK T4210", "", "", S3_BIOS|S3_MODE|PCI_SAVE, /* Jay <[email protected]> */
"FUJITSU SIEMENS", "LifeBook T4310", "10601127925", "Version 1.05 ", 0, /* Apr 27, 2010 - H.-Dirk Schmitt <dirk@co...> */
"FUJITSU SIEMENS", "P5GD1-FM", "", "1004.001", 0, /* Dennis Koll <[email protected]> */
"Fujitsu Siemens", "P6VAP-AP", "", "", 0, /* Tomas Pospisek <[email protected]> */
"FUJITSU SIEMENS", "SCENIC N300/N600", "", "", VBE_POST|VBE_MODE, /* Ulf Lange <[email protected]> */
"FUJITSU SIEMENS", "SCENIC P / SCENICO P", "", "", VBE_POST|VBE_MODE, /* Guenther Schwarz <[email protected]> */
"FUJITSU SIEMENS", "SCENIC W300/W600", "", "", VBE_POST|VBE_MODE, /* This is a desktop with onboard i810 video <[email protected]> */
"FUJITSU SIEMENS", "SCENIC W", "", "", VBE_POST|VBE_MODE, /* Peer Heinlein <[email protected]> */
"FUJITSU SIEMENS", "Stylistic ST5000", "", "", S3_BIOS|S3_MODE, /* */
"Gateway ", "LT31 ", "Not Applicable", "v1.3201 ", S3_BIOS|S3_MODE, /* Jan 30, 2010 - Jay Logan <jermaine151@ya...> */
"Gateway *", "MT6707 *", "", "", S3_BIOS|S3_MODE, /* Mario Nigrovic <[email protected]> */
"Gateway", "MX3228", "73.08 ", "73.08 ", VBE_POST|VBE_MODE, /* Gateway MX3228, The Space Man <[email protected]> */
"Gateway *", "MX6922B *", "", "", 0, /* Ilya Eremin <[email protected]> */
"GERICOM", "259IA1", "", "", 0, /* Christoph Wiesmeyr <[email protected]> */
"Gericom", "G730", "Revision A0", "6.00", 0, /* Jan 9, 2010 - Andreas Balser <[email protected]> */
"Gericom", "HUMMER", "", "1.03 ", VBE_POST|VBE_MODE, /* [email protected] */
"Gericom", "Montara-GML ", "FAB-2", "", 0, /* From: Einon <[email protected]>, seems to work only from X :-( */
"Gigabyte Technology Co., Ltd.", "945GCM-S2L", "", "", 0, /* Nik Tripp https://bugzilla.novell.com/show_bug.cgi?id=400356 */
"Gigabyte Technology Co., Ltd.", "945GCMX-S2", "", "", VBE_POST|VBE_MODE, /* Art Mitskevich <[email protected]> */
"Gigabyte Technology Co., Ltd.", "945GZM-S2", "", "", 0, /* Josef Zenisek <[email protected]> */
"Gigabyte Technology Co., Ltd.", "EP45-UD3R", " ", "F12", 0, /* Jul 4, 2010 - tuxfusion <tuxfusion@go...> */
"Gigabyte Technology Co., Ltd.", "GA-MA69G-S3H", " ", "F5", 0, /* Florian Sesser <[email protected]> */
"Gigabyte Technology Co., Ltd.", "GA-MA785GMT-UD2H", " ", "F5", 0, /* Apr 9, 2010 - Eri Johnson <ericj@ca...> */
"Gigabyte Technology Co., Ltd.", "GA-MA785GM-US2H", " ", "F5", S3_BIOS|S3_MODE, /* Andi Valachi <[email protected]> */
"Gigabyte Technology Co., Ltd.", "GA-MA78G-DS3H", " ", "FC", S3_BIOS|S3_MODE, /* Sebastian Koerner <[email protected]> */
"Gigabyte Technology Co., Ltd.", "GA-MA78GPM-DS2H", " ", "F1", S3_BIOS, /* Ian-Xue Li <[email protected]> */
"Gigabyte Technology Co., Ltd.", "GA-MA790XT-UD4P", " ", "F4", 0, /* Mar 12, 2010 - Vit <vitruss@gm...> */
"Gigabyte Technology Co., Ltd.", "M61PM-S2", " ", "Beta F9c", 0, /* Mar 5, 2010 - Márcio Spezani <spezani@gm...> */
"Gigabyte Technology Co., Ltd.", "P35-DS3", " ", "F6", 0, /* Thorsten Goetzke <[email protected]> */
"Gigabyte Technology Co., Ltd.", "P35-DS3L", " ", "F8", 0, /* Gigabyte P35-DS3L, Kainr�th Roland <[email protected]> */
"Gigabyte Technology Co., Ltd.", "P35-DS4", "", "", VBE_POST|VBE_MODE, /* Roberto Lumbreras <[email protected]> */
"Gigabyte Technology Co., Ltd.", "P55M-UD2", "", "F11", 0, /* Andreas Mueller <[email protected]> */
"Gigabyte Technology Co., Ltd.", "X58A-UD7", " ", "F6", 0, /* Jun 7, 2010 - Damir Perisa <damir.perisa@gm...> */
"Hewlett-Packard", "", "", "68YDU*", 0, /* Michal Sedkowski <[email protected]>, VBE_POST (Michal Vyskocil <[email protected]>), VBE_POST|VBE_MODE (Danny Kukawka <[email protected]>), Hendrik Tews <[email protected]> "HP Compaq nc6320 (RH367ET*" */
"Hewlett-Packard", "", "", "68YGU*", VBE_POST, /* Michael Meskes <[email protected]>, this is a NX 7400 */
"Hewlett-Packard", "Compaq 515", "F.06", "68GVV Ver. F.06", 0, /* May 4, 2010 - Peter Becker <peter.de@gm...> */
"Hewlett-Packard", "Compaq nc4000 (DA762AV) ", "F.30 ", "68BAS Ver. F.30", S3_BIOS|S3_MODE, /* Oct 10, 2010 - John Thiga <[email protected]> */
"Hewlett-Packard", "Compaq nc6000 *", "", "68BDD*", S3_BIOS|S3_MODE, /* Jan Adlen <[email protected]> */
"Hewlett-Packard*", "Compaq nx5000 *", "", "68BCU*", VBE_POST|VBE_MODE, /* */
"Hewlett-Packard ", "Compaq nx 7010 (DU394T#*", "", "68BAL*", S3_BIOS|S3_MODE, /* Philippe Marzouk <[email protected]> */
"Hewlett-Packard ", "Compaq nx 7010 (PG588EA#*", "", "", S3_BIOS, /* François Münch <[email protected]> */
"Hewlett-Packard ", "Compaq Presario CQ60 Notebook PC", "F.32", "F.32", 0, /* egelor <[email protected]> */
"Hewlett-Packard ", "Compaq Presario X1000 (DK454AV)*", "", "", S3_BIOS, /* "Zirkel, Timothy K" <[email protected]> */
"Hewlett-Packard", "EW434AVABA *", "", "", S3_BIOS|S3_MODE, /* Marcos Pinto <[email protected]>, HP dv6000 */
"Hewlett-Packard", "HP 2133", "", "68VGU*", S3_BIOS|S3_MODE, /* hp compaq 2133, https://bugzilla.novell.com/show_bug.cgi?id=409246 */
"Hewlett-Packard", "HP 550", "", "68MVU*", VBE_POST|VBE_MODE, /* [email protected] */
"Hewlett-Packard", "HP Compaq 2133", "", "68VGU*", S3_BIOS|S3_MODE, /* hp compaq 2133, https://bugzilla.novell.com/show_bug.cgi?id=363240 */
"Hewlett-Packard", "HP Compaq 2230s (FU312EA)", "F.0D", "68PHU Ver. F.0D", 0, /* Wouter Verhelst <[email protected]> */
"Hewlett-Packard", "HP Compaq 2510p *", "", "68MSP*", VBE_POST|VBE_MODE, /* Stefan Kulow https://bugzilla.novell.com/show_bug.cgi?id=362928 */
"Hewlett-Packard", "HP Compaq 2710*", "", "68MOU*", VBE_POST|VBE_MODE, /* Holger Sickenberg https://bugzilla.novell.com/show_bug.cgi?id=376715 */
"Hewlett-Packard", "HP Compaq 6510b (GB863EA*", "", "68DDU*", VBE_POST|VBE_MODE, /* Jamil Djadala <[email protected]> */
"Hewlett-Packard", "HP Compaq 6510b (KE134EA*", "", "68DDU*", 0, /* [email protected] */
"Hewlett-Packard", "HP Compaq 6520s", "F.0A", "68MDU Ver. F.0A", 0, /* Jamalulkhair Khairedin <[email protected]>, tested on console and X */
"Hewlett-Packard", "HP Compaq 6710b", "F.15", "68DDU Ver. F.15", 0, /* Jun 21, 2010 - Luiz Kuwabara <luizk22@gm...> */
"Hewlett-Packard", "HP Compaq 6710b (GB893EA*", "", "68DDU*", VBE_POST|VBE_MODE, /* Michal Sojka <[email protected]> */
"Hewlett-Packard", "HP Compaq 6710b (GB893ET*", "", "68DDU*", VBE_POST|VBE_MODE, /* Harry ten Berge <[email protected]> */
"Hewlett-Packard", "HP Compaq 6710b (GR681EA*", "", "68DDU*", VBE_POST|VBE_MODE, /* Michal Skrzypek <[email protected]> */
"Hewlett-Packard", "HP Compaq 6710b (KE123EA*", "", "68DDU*", 0, /* Jaromrir Cervenka <[email protected]> */
"Hewlett-Packard", "HP Compaq 6710b (KE124EA*", "", "68DDU*", VBE_POST|VBE_MODE, /* Jakub Talas <[email protected]> */
"Hewlett-Packard", "HP Compaq 6710s (GC014ET*", "", "68DDU*", VBE_POST|VBE_MODE, /* Alberto Gonzalez <[email protected]> */
"Hewlett-Packard", "HP Compaq 6715b (GB834EA*", "", "68YTT*", VBE_POST|VBE_MODE, /* Darek Nawrocki <[email protected]> */
"Hewlett-Packard", "HP Compaq 6715b (GB835EA*", "", "68YTT*", S3_BIOS|S3_MODE, /* Radu Benea <[email protected]> */
"Hewlett-Packard", "HP Compaq 6715b (RK156AV*", "", "68YTT*", S3_BIOS|S3_MODE, /* Andrey Petrov <[email protected]> */
"Hewlett-Packard", "HP Compaq 6715b (RM174UT*", "", "68YTT*", S3_BIOS|VBE_MODE, /* Matthias Hopf, https://bugzilla.novell.com/show_bug.cgi?id=390271, needs strange combination */
"Hewlett-Packard", "HP Compaq 6715s (GR656ET*", "", "68YTT*", S3_BIOS, /* Petteri Tolonen <[email protected]> works with radeonhd and fglrx */
"Hewlett-Packard", "HP Compaq 6720s", "", "68MDU*", VBE_POST|VBE_MODE, /* Paul Smet <[email protected]> */
"Hewlett-Packard", "HP Compaq 6820s", "", "68MDD*", S3_BIOS, /* Babarovic Ivica <[email protected]> */
"Hewlett-Packard", "HP Compaq 6910p", "", "68MCD*", S3_BIOS|S3_MODE, /* Robert Norris <[email protected]>, tested with fglrx */
"Hewlett-Packard", "HP Compaq 6910p", "", "68MCU*", VBE_POST|VBE_MODE, /* Daniele Frijia <[email protected]>, this machine has no model number in DMI. BIOS F.14 */
"Hewlett-Packard", "HP Compaq 6910p (GB951EA*", "", "68MCD*", VBE_MODE, /* Ola Widlund <[email protected]>, works with proprietary ATI driver, to be verified without */
"Hewlett-Packard", "HP Compaq 6910p (GH717AW#UUG)", "F.15", "68MCD Ver. F.15", VBE_POST|VBE_MODE, /* HP Compaq 6910p, Alexander Mikhailian <[email protected]> */
"Hewlett-Packard", "HP Compaq 6910p (RH241AV)", "", "68MCU*", VBE_POST|VBE_MODE, /* Tomas Kejzlar <[email protected]> */
"Hewlett-Packard", "HP Compaq 8510p ", "", "68MVD*", VBE_POST|VBE_MODE, /* Krisztian Loki <[email protected]>, does not work with proprietary ATI driver */
"Hewlett-Packard", "HP Compaq 8710p (GC102EA*", "", "68MAD*", 0, /* Milan Znamenacek <[email protected]>, only from X */
"Hewlett-Packard", "HP Compaq 8710p (GT647PA*", "", "68MAD*", 0, /* Tim Harris <[email protected]> */
"Hewlett-Packard", "HP Compaq dc5800 Small Form Factor", "", "786F2*", 0, /* Marek Stopka <[email protected]>, kernel 2.6.25 */
"Hewlett-Packard", "HP Compaq nc2400*", "", "68YOP*", VBE_POST|VBE_MODE, /* hp compaq nc2400, tested by seife. sometimes has keyboard problems after resume */
"Hewlett-Packard", "HP Compaq nc4200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP Compaq nc4400*", "", "68YHV*", VBE_POST|VBE_MODE, /* Antti Laine <[email protected]>, "did not work with older BIOS", now has F.09 sys_ver="F.08": VBE_POST|VBE_SAVE, Rene Seindal <[email protected]> */
"Hewlett-Packard*", "HP Compaq nc6000 *", "", "68BDD*", S3_BIOS|S3_MODE, /* there seem to be versions with a " " after Hewlett-Packard and without. */
"Hewlett-Packard", "HP Compaq nc6120 *", "", "", VBE_POST|VBE_MODE, /* Winfried Dobbe, https://bugzilla.novell.com/show_bug.cgi?id=159688 */
"Hewlett-Packard", "HP Compaq nc6220*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP Compaq nc6230 *", "", "", VBE_SAVE|NOFB, /* */
"Hewlett-Packard", "HP Compaq nc6400 (EH522AV)", "", "68YCU*", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=260451 */
"Hewlett-Packard", "HP Compaq nc6400 (EY582ES*", "", "68YCU*", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=295489 */
"Hewlett-Packard", "HP Compaq nc6400 (RH560EA*", "", "68YCU*", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=326526 */
"Hewlett-Packard", "HP Compaq nc8230*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP Compaq nc8430 (ES591EA#ABD)", "F.16", "68YVD Ver. F.16", VBE_MODE, /* Jan 19, 2010 - Stefan Schneider <[email protected]> */
"Hewlett-Packard", "HP Compaq nw8440 *", "", "68YVD*", VBE_POST|VBE_MODE, /* Stefan Seyfried <[email protected]> novell bug 259831, this machine is only available in one configuration (ATI Graphics) */
"Hewlett-Packard", "HP Compaq nw9440 *", "", "68YAF*", 0, /* Magnus Hoglund <[email protected]> */
"Hewlett-Packard*", "hp compaq nx5000 *", "", "68BCU*", VBE_POST|VBE_MODE, /* */
"Hewlett-Packard*", "hp Compaq nx5000 *", "", "68BCU*", VBE_POST|VBE_MODE, /* Ed Hoo <[email protected]> */
"Hewlett-Packard", "HP Compaq nx6110 *", "", "68DTD", VBE_POST|VBE_MODE, /* <[email protected]> */
"Hewlett-Packard", "HP Compaq nx6120 *", "", "68DTD*", VBE_POST|VBE_MODE, /* Niv aharonovich <[email protected]> */
"Hewlett-Packard", "HP Compaq nx6125 *", "", "", VBE_SAVE|NOFB, /* */
"Hewlett-Packard", "HP Compaq nx6315", "", "68MOU*", S3_BIOS|S3_MODE, /* Pavel Machek */
"Hewlett-Packard", "HP Compaq nx6325 *", "", "68TT2*", VBE_POST|VBE_SAVE, /* Benedikt Nimmervoll <[email protected]>, EY350EA#ABD also works with version RD115AA#ABA <[email protected]> */
"Hewlett-Packard ", "HP compaq nx7000 *", "", "", VBE_POST|VBE_SAVE, /* Michael Biebl <[email protected]> */
"Hewlett-Packard", "HP Compaq nx7300 (RU374ES#*", "", "", VBE_POST|VBE_MODE, /* Valent Turkovic <[email protected]> */
"Hewlett-Packard", "HP Compaq nx7400 (RH412EA#)", "", "", VBE_POST|VBE_MODE, /* Slawomir Skrzyniarz <[email protected]> */
"Hewlett-Packard", "HP Compaq nx8220 *", "", "", VBE_SAVE|NOFB, /* */
"Hewlett-Packard", "HP Compaq nx9420 (RB549UT#ABA)", "F.1D", "68YAF Ver. F.1D", S3_BIOS|S3_MODE, /* HP Compaq nx9420, Adam <[email protected]> */
"Hewlett-Packard", "HP d330 uT*", "", "", 0, /* Georg Walser <[email protected]> Model DG286A */
"Hewlett-Packard", "HP d530 SFF*", "", "", 0, /* Ryan Bair <[email protected]> */
"Hewlett-Packard", "HP EliteBook 8530w", "F.0F", "68PDV Ver. F.0F", 0, /* Works with -a 1, -a 2 and -a 3 too. Jir� Nov�cek <[email protected]> 26/12/2009 */
"Hewlett-Packard", "HP G60 Notebook PC", "F.54", "F.54", 0, /* Jan 5, 2010 - Tom Petit <[email protected]> */
"Hewlett-Packard", "HP Mini 5101", "F.02", "68DGI Ver. F.02", 0, /* Oct 6, 2010 - Zdeněk Janeček <[email protected]> */
"Hewlett-Packard", "HP OmniBook PC ", "HP OmniBook 500 FA ", "FA.M2.71", 0, /* HP OmniBook 500, Oliver Redner <[email protected]> */
"Hewlett Packard", "", "HP OmniBook XE3 GC *", "", VBE_POST|VBE_SAVE, /* Frederic Mothe <[email protected]> */
"Hewlett Packard", "", "HP OmniBook XE3 GF *", "", VBE_POST|VBE_SAVE, /* */
"Hewlett Packard", "", "HP OmniBook XT1000 *", "", S3_MODE, /* Bernd Rinn <[email protected]> */
"Hewlett-Packard", "HP Pavilion dm1 Notebook PC", "048C110000241B00000320000", "F.11", 0, /* Feb 18, 2010 - Stefano Z. <mie.iscrizioni@gm...> */
"Hewlett-Packard", "HP Pavilion dm3t Notebook PC ", "039F100000240000110320000", "F.0A", S3_BIOS|S3_MODE, /* Jan 20, 2010 - Michael Cheah <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv1000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP Pavilion dv2000 (GA534UA#*", "", "", 0, /* Tarek Soliman <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv2000 (GF759EA#*", "", "", 0, /* S.Çağlar Onur <[email protected]>, works only from X! */
"Hewlett-Packard", "HP Pavilion dv2000 (RN066EA#*", "", "", 0, /* Daniel Forrer <[email protected]> and Jimmi <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv2500 Notebook PC", "", "", 0, /* Robert Hart <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv2 Notebook PC ", "F.03 ", "F.03 ", VBE_POST|VBE_SAVE, /* HP Pavilion dv2, Mike Leimon <[email protected]>. VBE_POST only Mar 9, 2010 - Andre Pereira <icebraining@gm...> */
"Hewlett-Packard", "HP Pavilion dv6000 (EW434AV#*", "", "", S3_BIOS|S3_MODE, /* Benjamin Kudria <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (EY798AV*", "", "", 0, /* Carlos Andrade <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (GA378UA#*", "", "", S3_MODE, /* Valent Turkovic <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (GF688EA*", "", "", 0, /* Marlin Forbes <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (GH907EA#*", "", "", S3_MODE, /* Eric Brasseur <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (RM469EA#*", "", "", 0, /* Antony Dovgal <[email protected]> */
"Hewlett-Packard", "HP Pavilion dv6000 (RP153UA#*", "", "", S3_BIOS|S3_MODE, /* Jens Kaiser <[email protected]>, maybe only with binary nvidia module? */
"Hewlett-Packard", "HP Pavilion dv6000 (RP980EA#*", "", "", 0, /* John Soros <[email protected]> "HP dv6120ea" */
"Hewlett-Packard", "HP Pavilion dv6500 Notebook PC *", "", "", S3_BIOS, /* Fran Firman <[email protected]>, no hacks, maybe only works due to the Nvidia driver? Marco Nenciarini <[email protected]> needs S3_BIOS */
"Hewlett-Packard", "HP Pavilion dv6700 Notebook PC *", "", "", S3_BIOS|S3_MODE, /* [email protected], dv6855el. No flags from: Jun 27, 2010 - Stanila Sorin-Valer <st_sorin2004@ya...> */
"Hewlett-Packard", "HP Pavilion dv7 Notebook PC*", "", "", 0, /* Wael Nasreddine <[email protected] */
"Hewlett-Packard", "HP Pavilion dv9700 Notebook PC *", "", "", 0, /* Bengt Gorden <[email protected]> */
"Hewlett-Packard", "HP Pavilion Notebook PC", "HP Pavilion Notebook *", " IC.M1.02", 0, /* <[email protected]> hp pavilion xz275 */
"Hewlett-Packard", "HP Pavilion tx1000 Notebook PC *", "", "", 0, /* <[email protected]> */
"Hewlett-Packard", "HP Pavilion tx2500 Notebook PC", "", "", S3_BIOS|S3_MODE, /* Joachim Deguara <[email protected]> */
"Hewlett-Packard", "HP Pavilion ze2000 (EK791EA#*", "", "", 0, /* Chris Polderman <[email protected]> */
"Hewlett-Packard ", "hp pavilion ze4900 (*", "", "", 0, /* Fuad Tabba <[email protected]>, only available with integr. gfx */
"Hewlett-Packard", "HP Pavilion zt3000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP ProBook 4515s", "", "", S3_BIOS|VBE_SAVE, /* Nov 6, 2010 - Marc Wirz <[email protected]> | Sep 4, 2010 - Damien Kesteman <[email protected]> */
"Hewlett-Packard", "HP Tablet PC TR1105*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP Tablet PC Tx1100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "HP xw4300 Workstation", " ", "786D3 v01.11", 0, /* HP xw4300 Workstation, Florian Reitmeir <[email protected]> */
"Hewlett-Packard", "HP xw4550 Workstation", "", "786F7*", 0, /* tested by HP https://bugzilla.novell.com/show_bug.cgi?id=436284 */
"Hewlett-Packard", "HP xw6600 Workstation", "", "786F4*", 0, /* tested by HP https://bugzilla.novell.com/show_bug.cgi?id=436284 */
"Hewlett-Packard", "HP xw8600 Workstation", "", "786F5*", 0, /* tested by HP https://bugzilla.novell.com/show_bug.cgi?id=436284 */
"Hewlett-Packard", "HP xw9400 Workstation", "", "786D6*", 0, /* tested by HP https://bugzilla.novell.com/show_bug.cgi?id=436284 */
"Hewlett-Packard", "Pavilion dv4000 (EB911EA#*", "", "", S3_BIOS, /* Damien Raude-Morvan <[email protected]>, This is a dv4052ea, i915GM */
"Hewlett-Packard", "Pavilion dv4000 (ES973EA#*", "", "", VBE_POST|VBE_SAVE|NOFB, /* Fabio Comolli <[email protected]>, dv4378ea, ATI X700 */
"Hewlett-Packard", "Pavilion dv4000 (PX306UA#*", "", "", S3_BIOS|S3_MODE, /* Daniel L Wells <[email protected]> */
"Hewlett-Packard", "Pavilion dv5000 (ET805UA#ABA) ", "F.33", "", VBE_SAVE, /* Sep 27, 2010 - William Welch <[email protected]> */
"Hewlett-Packard", "Pavilion dv5000 (EZ535UA#*", "", "", 0, /* Wally Valters <[email protected]> */
"Hewlett-Packard", "Pavilion dv5000 (RA648EA#ABU) ", "F.42", "F.42", 0, /* HP Pavilion dv5244eu, Adrian Connolly <[email protected]> */
"Hewlett-Packard", "Pavilion dv6000 (EY798AV#*", "", "", 0, /* Arun Gupta <[email protected]> */
"Hewlett-Packard", "Pavilion zd7000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Hewlett-Packard", "Pavilion zd8000 (EL030EA#*", "", "", VBE_POST, /* Etienne URBAH <[email protected]> */
"Hewlett-Packard ", "Pavilion zt3300 *", "", "68BAL*", S3_BIOS, /* Karthik <[email protected]> */
"Hewlett-Packard ", "Pavilion zt3300 (PF083UA#*", "", "", 0, /* Frank Schröder <[email protected]>, zt3380us */
"Hewlett-Packard", "Pavilion ZV6100 (EK848EA#*", "F.1B", "F.1B", 0, /* Feb 2011 - Pierre Hilson <[email protected]> */
"Hewlett-Packard*", "Presario 2100 (DP835E)*", "", "", 0, /* Jari Turkia <[email protected]> */
"Hewlett-Packard*", "Presario 2200 (PR309UA#*", "", "", 0, /* Frederic Koehler <[email protected]> */
"Hewlett-Packard", "Presario C500 (RZ341UA#*", "", "", 0, /* Matto Marjanovic <[email protected]> */
"Hewlett-Packard", "Presario C700 (GV681LA#*", "", "", 0, /* Igor Tamara <[email protected]> */
"Hewlett-Packard", "Presario F500 (GF596UA#*", "", "", 0, /* Robert Gomulka <[email protected]>*/
"Hewlett-Packard", "Presario M2000 (EQ547PA#*", "", "", S3_BIOS|VBE_MODE, /* Fatih Alabas https://bugzilla.novell.com/show_bug.cgi?id=230528 */
"Hewlett-Packard ", "Presario R3000 *", "", "", S3_BIOS|S3_MODE, /* Sitsofe Wheeler <[email protected]> */
"Hewlett-Packard*", "Presario R3200 *", "", "", VBE_POST|VBE_SAVE, /* Arthur Peters <[email protected]> */
"Hewlett-Packard", "Presario R4100 *", "", "", S3_BIOS|S3_MODE, /* */
"Hewlett-Packard", "Presario V2000 (EP381UA#*", "", "", S3_BIOS, /* [email protected] */
"Hewlett-Packard", "Presario V3000 (EZ674UA#*", "", "", S3_BIOS|S3_MODE, /* Cristian S. Rocha [email protected] */
"Hewlett-Packard", "Presario V3000 (EZ755UA#*", "", "", 0, /* JEROME HAYNES-SMITH <[email protected]> */
"Hewlett-Packard", "Presario V3000 (RL377PA#*", "", "", S3_BIOS|S3_MODE, /* From: "Lim Chuen Ee, Mike" <[email protected]> */
"Hewlett-Packard", "Presario V3700 Notebook PC", "", "", S3_BIOS|S3_MODE, /* Adi Nugroho https://bugzilla.novell.com/show_bug.cgi?id=364456 */
"Hewlett-Packard", "Presario V5000 (ET826UA#*", "", "", 0, /* Michael Kimsal <[email protected]> */
"Hewlett-Packard", "PY507ET#*", "", "68DTD*", VBE_POST|VBE_MODE, /* Battle Nick <[email protected]>, also a nc6120 */
"HP Pavilion 061", "D7223K-ABA A650E", "", "", 0, /* Benjamin Cherian <[email protected]> */
"HP Pavilion 061", "EJ192AA-ABS t3250.se", "", "", 0, /* A desktop with integrated graphics, Bo Thysell <[email protected]> */
"HP Pavilion 061", "EP198AA-UUZ t3335.ch", "", "", 0, /* Michael Zaugg <[email protected]> */
"HP Pavilion 061", "ES061AA-ABD t3320*", "", "", 0, /* Stefan Friedrich <[email protected]> */
"HP Pavilion 061", "PC098A-ABA M1070N", "", "", 0, /* Levi Larsen <[email protected]> */
"HP-Pavilion", "NB965AA-ABF s3715fr", " ", "5.08 ", 0, /* Philippe LEBOURG <[email protected]> */
"HP-Pavilion", "RP829AV-ABA d4790y", "", "", 0, /* Arun Gupta <[email protected]>, works only with nvidia driver :( */
"HP-Pavilion", "RZ418AA-ABH s3020*", "", "", VBE_MODE, /* Gijs van Gemert <[email protected]> */
"IBM", "1830*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1831*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1832*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1833*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1834S5G", "ThinkPad R50e", "1WET90WW (2.10 )", 0, /* ThinkPad R50e, Ferenc Wagner <[email protected]> */
"IBM", "1836*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1840*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1841*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R50/p imported from acpi-support 0.59 "half known". */
"IBM", "1846*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1847*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1848*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1849*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1850*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1860*", "", "", S3_BIOS|S3_MODE, /* R52, reported by Joscha Arenz */
"IBM", "1864*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X41 imported from acpi-support 0.59 "half known". */
"IBM", "1865*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X41 imported from acpi-support 0.59 "half known". */
"IBM", "1870*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R52 imported from acpi-support 0.59 "half known". */
"IBM", "1871*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "1872*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "1873*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "1874*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "1875*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "1876*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T43 imported from acpi-support 0.59 "half known". */
"IBM", "2366*", "", "", RADEON_OFF, /* T30 */
"IBM", "2369*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X40 imported from acpi-support 0.59 "half known". */
"IBM", "2370*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X40 imported from acpi-support 0.59 "half known". */
"IBM", "2371*", "ThinkPad X40", "", S3_BIOS|S3_MODE, /* X40 confirmed by Christian Deckelmann */
"IBM", "2372*", "ThinkPad X40", "", S3_BIOS, /* X40, Confirmed by Ville Kov�cs (From X and console) */
"IBM", "2373*", "", "", S3_BIOS|S3_MODE, /* T42p confirmed by Joe Shaw, T41p by Christoph Thiel (both 2373) */
"IBM", "2374*", "", "", S3_BIOS|S3_MODE, /* T41p, Stefan Gerber */
"IBM", "2375*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T40/T41/T42/p imported from acpi-support 0.59 "half known". */
"IBM", "2376*", "", "", S3_BIOS|S3_MODE, /* T42, Bjorn Mork <[email protected]> */
"IBM", "2378*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T40/T41/T42/p imported from acpi-support 0.59 "half known". */
"IBM", "2379*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T40/T41/T42/p imported from acpi-support 0.59 "half known". */
"IBM", "2382*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X40 imported from acpi-support 0.59 "half known". */
"IBM", "2386*", "", "", S3_BIOS|S3_MODE, /* X40, Andrew Pimlott <[email protected]> */
"IBM", "2388*", "", "", 0, /* G40 confirmed by David Härdeman */
"IBM", "2511*", "", "", S3_BIOS|S3_MODE, /* Z60t, Sascha Hunold <[email protected]> */
"IBM", "2525*", "", "", S3_BIOS|S3_MODE, /* X41, Florian Ragwitz <[email protected]>, */
"IBM", "2526*", "", "", S3_BIOS|S3_MODE, /* X41, Johannes Zellner <[email protected]> */
"IBM", "2527*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X41 imported from acpi-support 0.59 "half known". */
"IBM", "2528*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* X41 imported from acpi-support 0.59 "half known". */
"IBM", "2529*", "", "", S3_BIOS|S3_MODE, /* Z60m, reported by Arkadiusz Miskiewicz */
"IBM", "2628*", "", "", 0, /* A21m, Raymund Will */
"IBM", "2629*", "", "", 0, /* A21p, Holger Sickenberg */
"IBM", "2645*", "", "", VBE_SAVE, /* George says the newer BIOS INET36WW / kernel 2.6.22 works fine with these options / without X VBE_POST|VBE_MODE, George Tellalov <[email protected]> with X */
"IBM", "2647*", "", "", S3_BIOS|S3_MODE, /* T23 Gernot Schilling <[email protected]> */
"IBM", "2648*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T21 imported from acpi-support 0.59 "half known". */
"IBM", "2652*", "", "", S3_BIOS|S3_MODE, /* A30, Axel Braun. https://bugzilla.novell.com/show_bug.cgi?id=309742 Backlight stays on, but RADEON_OFF kills the machine on second suspend :-( */
"IBM", "2653*", "", "", RADEON_OFF, /* A31p, Till D"orges <[email protected]> */
"IBM", "2658*", "", "", 0, /* R32 */
"IBM", "2662*", "", "", S3_BIOS|S3_MODE|RADEON_OFF, /* X22, confirmed by Richard Neill */
"IBM", "2672*", "", "", S3_BIOS|S3_MODE|RADEON_OFF, /* X31, confirmed by Bjoern Jacke */
"IBM", "2673*", "", "", S3_BIOS|S3_MODE, /* X31, Vladislav Korecky <[email protected]>, bios_version="1QET73WW (2.11 )" */
"IBM", "2681*", "", "", 0, /* R40 */
"IBM", "2682*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2683*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2692*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2693*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2696*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2698*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2699*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2722*", "", "", 0, /* R40 */
"IBM", "2723*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2724*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "2884*", "", "", VBE_POST|VBE_SAVE|UNSURE|RADEON_OFF, /* X30 imported from acpi-support 0.59 "half known". */
"IBM", "2885*", "", "", VBE_POST|VBE_SAVE|UNSURE|RADEON_OFF, /* X30 imported from acpi-support 0.59 "half known". */
"IBM", "2886*", "", "", VBE_POST|VBE_MODE, /* G41, Steven Rostedt <[email protected]> */
"IBM", "2890*", "", "", VBE_POST|VBE_SAVE|UNSURE|RADEON_OFF, /* X30 imported from acpi-support 0.59 "half known". */
"IBM", "2891*", "", "", VBE_POST|VBE_SAVE|UNSURE|RADEON_OFF, /* X30 imported from acpi-support 0.59 "half known". */
"IBM", "2897*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* R40 imported from acpi-support 0.59 "half known". */
"IBM", "475S*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* T23 imported from acpi-support 0.59 "half known". */
"IBM", "", "ThinkPad R51", "", 0, /* R51 confirmed by Christian Zoz and Sitsofe Wheeler <[email protected]> */
"IBM", "", "ThinkPad R51e", "", S3_BIOS|S3_MODE, /* R51e, reported by [email protected] */
"IBM", " ", "ThinkPad T40 ", "1RETDRWW*", 0, /* Joerg Platte [email protected], again emtpy sys_product... */
"IBM", "", "ThinkPad T43p", "", S3_BIOS|S3_MODE, /* T43p reported by Magnus Boman */
"IBM", "", "ThinkPad T43", "", S3_BIOS|S3_MODE, /* Some T43's reported by Sebastian Nagel */
"IBM", "", "ThinkPad X32", "", RADEON_OFF|S3_BIOS|S3_MODE, /* */
"IBM", " ", "ThinkPad X40", "1UETD2WW*", 0, /* Ralph Thormann, notice the empty sys_product :-( */
"IBM", "", "ThinkPad X41 Tablet", "", S3_BIOS|S3_MODE, /* X41 Tablet, tested by Danny Kukawka */
"Infomash", "RoverBook", "", "", VBE_POST|VBE_MODE, /* Andrey Melentyev <[email protected]> */
"JVC", "J2N ", "", "", VBE_SAVE, /* Christian Beier <[email protected]> */
"LENOVO", "019624U", "ThinkPad Edge", "6YET29WW (1.12 )", 0, /* May 29, 2010 - rousta bout <rousta_bout@ya...> */
"LENOVO", "0657*", "", "", S3_BIOS|VBE_MODE, /* Dave Royal <[email protected]>, R60e 32bit works with S3_MODE, 64bit needs VBE_MODE */
"LENOVO", "068928U", "3000 N100 *", "", 0, /* Leo G <[email protected]> */
"LENOVO", "0761*", "3000 C100 *", "", 0, /* AFAICT the 3000 C100 is only available with intel graphics Luc Levain <[email protected]>, works with old and new kernel. */
"LENOVO", "0763*", "LENOVO3000 V100", "", 0, /* Sebastian Schleehauf <[email protected]>, 3000V100 */
"LENOVO", "076804U", "3000 N100 *", "", S3_BIOS|VBE_MODE, /* these Lenovo 3000 N100 model 768 are available with different graphics chips, so i do not dare to wildcard anything here :-( https://bugzilla.novell.com/show_bug.cgi?id=299099 */
"LENOVO", "076831G", "3000 N100 *", "", 0, /* Bogdan <[email protected]> */
"LENOVO", "076835U", "3000 N100 *", "", 0, /* Tim Creech <[email protected]> */
"LENOVO", "07686VG", "3000 N100 *", "", 0, /* Aviv Ben-Yosef <[email protected]> */
"LENOVO", "07687MM", "3000 N100 *", "", S3_MODE, /* Ted Percival <[email protected]> */
"LENOVO", "0768BYG", "3000 N100 *", "", 0, /* Johannes Rohr <[email protected]> */
"LENOVO", "0769AC6", "3000 N200 *", "", S3_BIOS|S3_MODE, /* I'm not sure how to handle the 3000 N200 models... Thorsten Frey <[email protected]> reported no options, [email protected] reports -a3 */
"LENOVO", "0769AH9", "3000 N200 *", "", 0, /* Moritz Schaefer <[email protected]> */
"LENOVO", "0769AVU", "3000 N200 ", "68ET31WW", 0, /* Lenovo 3000 N200, Kyle Jones -- Hotelicom <[email protected]> */
"LENOVO", "0769B9G", "3000 N200 *", "", 0, /* Hans Gunnarsson <[email protected]> */
"LENOVO", "0769BBG", "3000 N200 *", "", S3_BIOS|S3_MODE, /* Stojan Jakotic <[email protected]> */
"LENOVO", "0769BEG", "3000 N200 *", "", 0, /* ozon <[email protected]> */
"LENOVO", "0769ESG", "3000 N200 *", "", 0, /* Jes�s Malo Poyatos <[email protected]> */
"LENOVO", "1702*", "", "", S3_BIOS|S3_MODE, /* X60 / X60s */
"LENOVO", "1704*", "", "", S3_BIOS|S3_MODE, /* X60 / X60s */
"LENOVO", "1706*", "", "", S3_BIOS|S3_MODE, /* X60 / X60s */
"LENOVO", "20021,2959", "Lenovo Ideapad S12", "19CN21WW", 0, /* Nov 1, 2010 - Markus Bauer-Sommerfeld <[email protected]> */
"LENOVO", "2007*", "", "", S3_BIOS|S3_MODE, /* T60p, Stephane Liardet <[email protected]> */
"LENOVO", "20828WG", "ThinkPad T500", "7VET81WW (3.11 )", 0, /* Apr 12, 2010 - Johannes Engel <jcnengel@go...> */
"LENOVO", "20828WG", "ThinkPad T500", "7VET86WW (3.16 )", 0, /* Tanuva <[email protected]> */
"LENOVO", "2242CTO", "ThinkPad T500", "6FET79WW (3.09 )", 0, /* Lenovo ThinkPad T500, Maciej Piechotka <[email protected]> */
"LENOVO", "2478*", "", "", S3_BIOS|S3_MODE, /* LENOVO X300, 2008-04-03 https://bugzilla.novell.com/show_bug.cgi?id=370690 */
"LENOVO", "2479*", "", "", S3_BIOS|S3_MODE, /* LENOVO X300, 2008-04-03 https://bugzilla.novell.com/show_bug.cgi?id=370690 */
"LENOVO", "273232G", "ThinkPad R500", "7YET70WW (3.00 )", VBE_POST|VBE_MODE, /* Dec 29, 2009 - Slawek Gocan <[email protected]> */
"LENOVO", "2764CTO", "ThinkPad T400", "", VBE_POST|VBE_MODE, /* Lenovo T400, Chris Cain <[email protected]>; Whitelist all bioses Arkadiusz Miskiewicz */
"LENOVO", "2767*", "ThinkPad T400", "", 0, /* Michael Düll <[email protected]> Thinkpad T400 | Michael Düll <[email protected]> */
"LENOVO", "2768EB7", "ThinkPad T400", "7UET71WW (3.01 )", VBE_SAVE|VBE_MODE|PCI_SAVE, /* IBM T400, Erez Zarum <[email protected]> */
"LENOVO", "28477MG", "ThinkPad SL510", "6JET73WW (1.31 )", S3_BIOS|S3_MODE, /* Jul 18, 2010 - Mathias Lorenz <mathias@lo...> */
"LENOVO", "2985ETG", "ThinkPad X201 Tablet", "6QET61WW (1.31 )", 0, /* Moritz Augsburger <[email protected]> */
"LENOVO", "3241 ", "Lenovo IdeaPad Y550P ", "1ECN33WW(V5.07)", 0, /* Jun 10, 2010 - Kevin Brosnan <kbrosnan@gm...> */
"LENOVO", "4108*", "", "", S3_BIOS|S3_MODE, /* T61 / R61 2008-01-29, bug https://bugzilla.novell.com/show_bug.cgi?id=334522#c10 */
"LENOVO", "4141*", "", "", S3_BIOS|S3_MODE, /* T61 / R61 2008-01-29, bug https://bugzilla.novell.com/show_bug.cgi?id=334522#c10 */
"LENOVO", "4143*", "", "", S3_BIOS|S3_MODE, /* T61 / R61 2008-01-29, bug https://bugzilla.novell.com/show_bug.cgi?id=334522#c10 */
"LENOVO", "4391B76", "ThinkPad W510", "6LET63WW (1.26 )", 0, /* Vladimir Zapolskiy <[email protected]> */
"LENOVO", "6088*", "", "", 0, /* ThinkCentre M57p, <[email protected]>, intel gfx, kernel 2.6.25.5 */
"LENOVO", "6363*", "", "", S3_BIOS|S3_MODE, /* X60 Tablet, Carlos Lange, https://bugzilla.novell.com/show_bug.cgi?id=265613#c12 */
"LENOVO", "6364*", "", "", S3_BIOS|S3_MODE, /* X60 Tablet, Gary Ekker, https://bugzilla.novell.com/show_bug.cgi?id=265613 */
"LENOVO", "6365*", "", "", S3_BIOS|S3_MODE, /* X60 Tablet, Aaron Denney <[email protected]>, needs at least BIOS "7JET25WW (1.10 )"*/
"LENOVO", "6366*", "", "", S3_BIOS|S3_MODE, /* Florian Wagner <[email protected]>, X60 Tablet */
"LENOVO", "6378*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6379*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6457*", "", "", VBE_POST|VBE_MODE, /* Christian Borntraeger <[email protected]>, VBE_POST|VBE_MODE works without binary driver */
"LENOVO", "6458*", "", "", VBE_POST|VBE_MODE, /* confirmed to work with VESA by Ryan Kensrod <[email protected]> */
"LENOVO", "6459*", "", "", 0, /* T61p, leighton 5 <[email protected]>, ... what's the difference to the other T61p? */
"LENOVO", "6460*", "", "", S3_BIOS|VBE_MODE, /* T61p, leighton 5 <[email protected]>, ... what's the difference to the other T61p? */
"LENOVO", "6463*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6464*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6465*", "", "", 0, /* T61: Amit Joshi <[email protected]> (S3_BIOS|S3_MODE), No flags KyuHwa Lee <[email protected]> + Michael Henry <lug_user@dr...> */
"LENOVO", "6466*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6467*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6468*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6471*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "6476*", "", "", S3_BIOS|S3_MODE, /* LENOVO X300, 2008-04-03 https://bugzilla.novell.com/show_bug.cgi?id=370690 */
"LENOVO", "6477*", "", "", S3_BIOS|S3_MODE, /* LENOVO X300, 2008-04-03 https://bugzilla.novell.com/show_bug.cgi?id=370690 */
"LENOVO", "6478*", "", "", S3_BIOS|S3_MODE, /* LENOVO X300, 2008-04-03 https://bugzilla.novell.com/show_bug.cgi?id=370690 */
"LENOVO", "6480*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "7439W8A", "ThinkPad R400", "7UET79WW (3.09 )", 0, /* Mar 5, 2010 - Max Zimmermann <maxzimmermann@go...> */
"LENOVO", "7458*", "", "", 0, /* "Lenovo X200", "7458AD9", "ThinkPad X200", "6DET30WW (1.07 )", [email protected] */
"LENOVO", "7459W37", "ThinkPad X200", "6DET63WW (3.13 )", 0, /* Nine Cholas <[email protected]> */
"LENOVO", "74665EG", "ThinkPad X200s", "6DET60WW (3.10 )", 0, /* Dec 27, 2009 - Lars Stoltenow <[email protected]> */
"LENOVO", "7642*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7643*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7644*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7645*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7646*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7647*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7648*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7649*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7650*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7657*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7658*", "", "", S3_BIOS|S3_MODE, /* T61, Joe Nahmias <[email protected]>, debian bug #432018, 7658Q4U Frank Seidel <[email protected]> */
"LENOVO", "7659*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "7660*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "7661*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "7663*", "", "", S3_MODE, /* T61 with NVidia card, https://bugzilla.novell.com/show_bug.cgi?id=290618 */
"LENOVO", "7664*", "", "", 0, /* Jeremiah Mahler <[email protected]> | T61, Aku Pietikainen <[email protected]>, works with console and X */
"LENOVO", "7666*", "", "", S3_BIOS|S3_MODE, /* Rasmus Borup Hansen <[email protected]>, X61s reported 7666 w. S3_BIOS Anders Engstrom <[email protected]> reported 7666 w. S3_BIOS|S3_MODE */
"LENOVO", "7667*", "", "", S3_BIOS|S3_MODE, /* X61s */
"LENOVO", "7668*", "", "", S3_BIOS|S3_MODE, /* X61s */
"LENOVO", "7669*", "", "", S3_BIOS, /* X61s, Hendrik-Jan Heins <[email protected]>. Probably does not restore the framebuffer mode correctly, but S3_MODE as well as VBE_MODE seem to fail sometimes on x86_64 on this machine :-( */
"LENOVO", "7670*", "", "", S3_BIOS|S3_MODE, /* X61s */
"LENOVO", "7671*", "", "", S3_BIOS|S3_MODE, /* X61s */
"LENOVO", "7673*", "", "", 0, /* X61, Marco Barreno <[email protected]>, works without any hack | kix: S3_BIOS|S3_MODE */
"LENOVO", "7674*", "", "", S3_BIOS|S3_MODE, /* X61, Holger Hetterich <[email protected]> */
"LENOVO", "7675*", "", "", S3_BIOS|S3_MODE, /* X61, Jan Grmela <[email protected]> */
"LENOVO", "7676*", "", "", S3_BIOS|S3_MODE, /* X61*/
"LENOVO", "7678*", "", "", S3_BIOS|S3_MODE, /* X61*/
"LENOVO", "7679*", "", "", S3_BIOS|S3_MODE, /* X61*/
"LENOVO", "7732*", "", "", S3_BIOS, /* Thinkpad R61, Calvin Walton <[email protected]>, | kix: probably needs S3_MODE */
"LENOVO", "7733*", "", "", S3_BIOS|S3_MODE, /* R61 */
"LENOVO", "7734*", "", "", S3_BIOS|S3_MODE, /* R61 */
"LENOVO", "7735*", "", "", S3_BIOS|S3_MODE, /* R61 */
"LENOVO", "7736*", "", "", S3_BIOS|S3_MODE, /* R61 */
"LENOVO", "7737*", "", "", S3_BIOS|S3_MODE, /* R61 */
"LENOVO", "7738*", "", "", S3_BIOS|S3_MODE, /* Thinkpad R61, <[email protected]> */
"LENOVO", "7762*", "", "", S3_BIOS|S3_MODE, /* Stephane Delcroix https://bugzilla.novell.com/show_bug.cgi?id=362945 */
"LENOVO", "7763*", "", "", S3_BIOS|S3_MODE, /*ThinkPad X61 Tablet https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7764*", "", "", S3_BIOS|S3_MODE, /*ThinkPad X61 Tablet https://bugzilla.novell.com/show_bug.cgi?id=353896 or VBE_POST|VBE_MODE Baylis Shanks <[email protected]>, possible problems with video */
"LENOVO", "7767*", "", "", S3_BIOS|S3_MODE, /*ThinkPad X61 Tablet https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "7768*", "", "", S3_BIOS|S3_MODE, /* Danny Kukawka <[email protected]> ThinkPad X61 Tablet */
"LENOVO", "7769*", "", "", S3_BIOS|S3_MODE, /*ThinkPad X61 Tablet https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8808*", "", "", S3_BIOS|S3_MODE, /* ThinkCentre M55, Mansfield Jordan <[email protected]> */
"LENOVO", "8889*", "", "", 0, /* R61 Discrete [email protected], works with and without nvidia drivers */
"LENOVO", "8895*", "", "", S3_BIOS|VBE_MODE, /* T61, intel card <[email protected]> 32bit works with S3_MODE, but 64bit needs VBE_MODE */
"LENOVO", "8896*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8897*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8898*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8899*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8900*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8918*", "", "", 0, /* Grzegorz Piektiewicz <[email protected]>, R61, with nvidia driver */
"LENOVO", "8919*", "", "", S3_BIOS|S3_MODE, /* <[email protected]>, R61, 64bit, NVidia driver does not work */
"LENOVO", "8930*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8932*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8933*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8934*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8935*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8936*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8937*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8938*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8939*", "", "", S3_BIOS|S3_MODE, /* T61 */
"LENOVO", "8942*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8943*", "", "", S3_BIOS|VBE_MODE, /* ThinkPad R61, [email protected] */
"LENOVO", "8944*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8945*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8946*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8947*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "8948*", "", "", S3_BIOS|S3_MODE, /*ThinkPad R61 https://bugzilla.novell.com/show_bug.cgi?id=353896 */
"LENOVO", "9452*", "", "", S3_BIOS|S3_MODE, /* Rick van Hattem <[email protected]>, Z61p*/
"LENOVO", "9456*", "", "", S3_BIOS|S3_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=210928, Thinkpad R60, 32bit? */
"Lenovo", "Soleil E660P *", "", "", 0, /* Xu Zhe <[email protected]> */
"LENOVO", "", "Thinkpad R60e", "", S3_BIOS|S3_MODE, /* From: gregor herrmann <[email protected]> */
"LENOVO", "", "ThinkPad R60", "", S3_BIOS|S3_MODE, /* Marcus Better <[email protected]>, this time with a capital "P" */
"LENOVO", "", "ThinkPad T60p", "", S3_BIOS|S3_MODE, /* T60p, had a report from a 2007* and a 2008* model */
"LENOVO", "", "ThinkPad T60", "", S3_BIOS|S3_MODE, /* T60 From: Jeff Nichols <[email protected]> and Kristofer Hallgren <[email protected]> */
"LENOVO", "", "ThinkPad X201", "", S3_BIOS|S3_MODE, /* Daniel Corson <[email protected]> */
"LENOVO", "", "ThinkPad X60", "", S3_BIOS|S3_MODE, /* At least 1709 series thinkpads can be whitelisted by name, and we can probably delete entries above, too.... */
"LENOVO", "", "ThinkPad Z61m", "", S3_BIOS|S3_MODE, /* Z61m From: Roderick Schertler <[email protected]> */
"LENOVO", "", "ThinkPad Z61p", "", S3_BIOS|S3_MODE, /* Paul Wilkinson <[email protected]> */
"LG Electronics", "LM50-DGHE", "", "", S3_BIOS|S3_MODE, /* [email protected] LM50a */
"LG Electronics", "LW20-JNMV", "", "WINRSF03", S3_BIOS|S3_MODE, /* Ragnar Seton <[email protected]> */
"LG Electronics", "LW75-SGGV1", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"LG Electronics", "M1-3DGBG", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"LG Electronics", "R500-U.CPCBG", "", "", 0, /* Neysan Schaefer <[email protected]> */
" ", "M37EW", "None", "", S3_BIOS, /* simon kaucic <[email protected]> */
"Matsushita Electric Industrial Co.,Ltd.", "CF-51E*", "", "", VBE_POST|VBE_MODE, /* seife */
"Matsushita Electric Industrial Co.,Ltd.", "CF-R2C*", "0032", "", VBE_POST|VBE_MODE, /* https://sourceforge.net/tracker/index.php?func=detail&aid=1601715&group_id=45483&atid=443088 */
"Matsushita Electric Industrial Co.,Ltd.", "CF-R3E*", "002", "", VBE_POST|VBE_MODE, /* Hanspeter Kunz <[email protected]> */
"Matsushita Electric Industrial Co.,Ltd.", "CF-R6A*", "", "", VBE_POST|VBE_MODE, /* Hanspeter Kunz <[email protected]> */
"Matsushita Electric Industrial Co.,Ltd.", "CF-R6M*", "", "", VBE_POST|VBE_MODE, /* Itsuo HATONO <[email protected]> */
"Matsushita Electric Industrial Co.,Ltd.", "CF-W4G*", "", "", 0, /* Michal Krasucki <[email protected]> */
"MAXDATA", "IMPERIO4045A *", "", "", 0, /* Joost Witteveen <[email protected]> */
"MAXDATA", "PRO600IW", "", "", S3_BIOS|S3_MODE, /* Jan Gerrit <[email protected]> */
"MaxSelect", "Mission_A330", "", "", VBE_POST|VBE_SAVE, /* Oleg Broytmann <[email protected]> */
"MEDION", "M295M", "", "", 0, /* Nicolas HENRY <[email protected]>, nvidia binary driver */
"MEDIONNB ", "WID2010 ", "", "", VBE_POST|VBE_MODE, /* Leszek Lesner <[email protected]> Medion MD43100 */
"MEDIONNB ", "WIM 2000 ", "", "", 0, /* Ralf Auer <[email protected]>, tested both with nv and binary nvidia */
"MEDIONPC", "MS-6714", "", "", S3_BIOS|S3_MODE, /* Alberto Gonzalez <[email protected]> */
"MEDIONPC", "MS-7012", "", "", 0, /* Mike Galbraith <[email protected]> needs X to get text console back */
"MEDION", "WIM 2140", "", "", 0, /* Axel Braun <[email protected]> */
"MICRO-STAR INTERNATIONAL CO.,LTD", "MS-7514", "1.0", "V1.10", 0, /* Apr 4, 2010 - Mark van Dijk <mark@vo...> */
"MICRO-STAR INTERNATIONAL CO.,LTD", "MS-7596", "1.0", "V2.3", 0, /* Aug 1, 2010 - Tristan Hoffmann <info@tr...> */
"MICRO-STAR INTERNATIONAL CO., LTD", "MS-9632", "1.0", "6.00 PG", 0, /* Oct 13, 2010 - Matti Ropo <[email protected]> */
"MICRO-STAR INTERNATIONAL CO., LTD", "MS-N014", "REV:1.0", "EN014IMS.10B", 0, /* Jan 21, 2010 - Paul Slater <[email protected]> */
"MICRO-STAR INTERNATIONAL CO., LTD", "U-100", "", "", S3_BIOS|S3_MODE, /* MSI Wind U100, [email protected] */
"Micro-Star International", "EX610", "", "", VBE_POST|VBE_MODE, /* Frank Thomas <[email protected]> */
"Micro-Star International", "MS-1412", "", "", VBE_POST|VBE_SAVE|NOFB, /* Baruch Even <[email protected]> */
"Micro-Star International", "PR210", "MS-1222X", "", VBE_POST, /* Enno Wein <[email protected]> */
"Micro-Star International", "U210", "Ver 1.000", "080015 ", VBE_POST|VBE_MODE, /* Daniel <[email protected]> */
"Micro-Star International", "X320", "Ver 1.000", "A1351IMS Ver1.01 ", VBE_SAVE, /* Feb 12, 2010 - Zach Foresta <foureza87@ya...> */
"MICRO-STAR INT'L CO.,LTD", "MS-1003", "", "", 0, /* Branislav Gajdos <[email protected]> */
"MICRO-STAR INT'L CO.,LTD", "MS-1012", "", "", S3_BIOS, /* Andreas Kostyrka <[email protected]> */
"MICRO-STAR INT'L CO.,LTD", "MS-1013", "", "", S3_BIOS, /* Matthijs Kooijman <[email protected]> */
"MICRO-STAR INT'L CO.,LTD.", "MS-1057", "", "", S3_BIOS|S3_MODE, /* Gergely Csepany <[email protected]> */
" ", " ", " ", "MOPNV10N.86A.0155.2009.1106.0430", 0, /* May 24, 2010 - Carl van Tonder <carl@su...> */
" ", " ", " ", "MQ96510J.86A.0816.2006.0716.2308", VBE_POST|VBE_MODE, /* Armin Braunstein <[email protected]> */
"MSI", "A9830IMS", "11", "080015 ", S3_BIOS|S3_MODE, /* MSI IM-945GSE, Martin Teufel <[email protected]> */
"MSI", "MS-6417", "", "", 0, /* Matej Tyc <[email protected]> */
"MSI", "MS-6702", "", "", 0, /* Petric Frank <[email protected]> MSI K8T Neo-FIS2R */
"MSI.", "MS-7207PV", "", "", 0, /* [email protected] */
"MSI", "MS-7350", "", "", 0, /* Nicholas T <[email protected]>, mainboard */
"MSI", "MS-7522", "3.0", "V8.10", 0, /* Apr 9, 2010 - Dâniel Fraga <fragabr@gm...> */
"MTC", "Montara-GML ", "FAB-2", "", 0, /* S.Çağlar Onur <[email protected]>, only works from X */
"NCA_GROUP_LTD", "iRU_Notebook", "0106", "", VBE_POST|VBE_MODE, /* "Alex V. Myltsev" <[email protected] */
"NEC *", "B7 *", "", "", VBE_SAVE, /* Hugo Costelha */
"NEC COMPUTERS INTERNATIONAL", "NEC Versa Premium", "FAB-2", "", 0, /* Benoit Thiell <[email protected]> */
"NEC Computers International *", "VC2", "", "", S3_BIOS|S3_MODE, /* Nicky Gerritsen <[email protected]> */
"NEC ", "L4B ", " ", "NOTE BIOS Version /358A1200 ", 0, /* Apr 20, 2010 - René Gabriëls <renegabriels@gm...> */
"NOTEBOOK", "MIM2080", "", "", S3_BIOS|S3_MODE, /* Ronny Radke <[email protected]> medion MIM2080 */
"NOTEBOOK", "SAM2000", "0131", "", 0, /* Jan Willies <[email protected]> medion md 96400 */
"Notebook", "SAM2010", "1058", "A1058AM7 V7.23", VBE_SAVE, /* Tomas Groth <[email protected]> */
"OEM", "P53IN4", "", "", 0, /* Thomas Braun <[email protected]>, rebranded Uniwill P53IN */
"OQO", "ZEPTO", "00", "", VBE_POST|VBE_SAVE, /* Wolf Geldmacher <[email protected]> */
"Packard Bell NEC", "00000000000000000000000", "", "A03 ", 0, /* Angelo Anfossi <[email protected]> "Easy Note A6010" */
"Packard Bell NEC", "00000000000000000000000", "P820008416", "", 0, /* Per Waago <[email protected]> */
"Quanta", "TW8/SW8/DW8", "", "", 0, /* Mar 1, 2010 - Jan-Matthias Braun <jan_braun@gm...> */
"SAMSUNG", "CoronaR", "03RK", "", 0, /* Florian Tham <[email protected]> Samsung P35 */
"SAMSUNG ELECTRONICS CO., LTD.", "N130 ", "Not Applicable", "05CM.M011.20091013.JIP", 0, /* Aug 11, 2010 - Jan Bessai <jan.bessai@tu...> */
"SAMSUNG ELECTRONICS CO., LTD.", "Q330 ", "Not Applicable", "02UU.M001.20100611.WZW", 0, /* Aug 31, 2010 - Marco Maso <[email protected]> */
"SAMSUNG ELECTRONICS CO., LTD.", "Q35/Q36", "", "", S3_BIOS|S3_MODE, /* Jeremie Delaitre <[email protected]> */
"SAMSUNG ELECTRONICS CO., LTD.", "R40/R41", "", "", VBE_SAVE, /* Eduardo Robles Elvira <[email protected]> */
"SAMSUNG ELECTRONICS CO.,LTD", "R50/R51 *", "", "", 0, /* Tim Fischer <[email protected]> works with and without ATI binary driver */
"SAMSUNG ELECTRONICS CO., LTD.", "R520/R522/R620 ", "Not Applicable", "06LL.M026.20091029.Jay", VBE_POST|VBE_MODE, /* Jan 22, 2010 - Rafał Miłecki <[email protected]> */
"SAMSUNG ELECTRONICS CO., LTD.", "R55S *", "", "", 0, /* Daniel Koester <[email protected]> does not yet work from text mode */
"SAMSUNG ELECTRONICS CO., LTD.", "SQ1US", "01ME", "", VBE_SAVE, /* Pavel Machek, Samsung UMPC */
"SAMSUNG ELECTRONICS CO., LTD.", "SQ35S", "", "", VBE_POST, /* Maximilian Mehnert <[email protected]> */
"SAMSUNG ELECTRONICS CO., LTD.", "SQ45S70S", "", "", S3_BIOS|S3_MODE, /* Frank Ruell <[email protected]> or J�r�mie <[email protected]> no flags */
"SAMSUNG ELECTRONICS CO., LTD.", "SR700", "", "", 0, /* Jens Ott <[email protected]> */
"SAMSUNG ELECTRONICS CO., LTD.", "SX22S", "07AJ", "", VBE_SAVE, /* Konstantin Krasnov <[email protected]>, only with kernel 2.6.24++ */
"Samsung Electronics", "NX05S*", "", "", VBE_POST|VBE_MODE, /* Arnim Laeuger <[email protected]> */
"SAMSUNG Electronics", "SENS V25", "", "", VBE_POST|VBE_MODE, /* Stephen Denham <[email protected]> */
"Samsung Electronics", "SM40S", "", "", S3_BIOS|S3_MODE, /* Gautier Hattenberger <[email protected]> */
"Samsung Electronics", "SX20S", "", "", VBE_POST|VBE_MODE, /* https://bugzilla.novell.com/show_bug.cgi?id=290734 */
"Samsung Electronics", "SX25S", "Revision MP", "04ZA", 0, /* Mar 4, 2010 - Christoph Schäfer <cschaefer79@go...> */
"Samsung Electronics", "SX50S", "Revision MP", "", VBE_POST, /* Martin Wilck <[email protected]> */
"Samsung", "SQ10", "", "", VBE_POST|VBE_SAVE, /* */
"SHARP Corporation", "PC-MM20 Series*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"SHARP ", "PC-AR10 *", "", "", 0, /* */
"Shuttle Inc", "SD11V10", "", "", S3_BIOS|S3_MODE, /* <[email protected]> & Frederic Boiteux <[email protected]> */
"Shuttle Inc", "SD30V10", "", "", S3_BIOS|S3_MODE, /* Tejun Heo, https://bugzilla.novell.com/show_bug.cgi?id=390127 */
"Shuttle Inc", "SD32V10", " ", "6.00 PG", 0, /* Dave Buckler <[email protected]> */
"Shuttle Inc", "SG33", "V10", "6.00 PG", 0, /* Rodolfo kix Garcia <[email protected]> */
"Shuttle Inc", "SN41UV10", "", "", VBE_POST|VBE_MODE, /* [email protected] */
"Shuttle Inc", "SN85V10", "", "", 0, /* Thomas Peuss <[email protected]> */
"Sony Corporation ", "PCG-F430(UC) ", "", "", 0, /* Russ Dill <[email protected]> */
"Sony Corporation", "PCG-FR215E*", "", "", 0, /* Brice Mealier <[email protected]> */
"Sony Corporation", "PCG-FX340*", "", "", VBE_SAVE, /* Eric Wasylishen <[email protected]>, really needs VBE_SAVE */
"Sony Corporation", "PCG-FX405*", "", "", S3_BIOS, /* Sitsofe Wheeler <[email protected]> */
"Sony Corporation", "PCG-FX601*", "", "", S3_BIOS|S3_MODE, /* Stefan Nobis <[email protected]> */
"Sony Corporation", "PCG-FX802*", "", "", VBE_SAVE|VBE_MODE, /* Loki Harfagr <[email protected]> */
"Sony Corporation", "PCG-FX805*", "", "", VBE_POST|VBE_SAVE, /* Stefan Friedrich <[email protected]> */
"Sony Corporation ", "PCG-GR7_K(J) ", "", "", 0, /* Mattia Dongili <[email protected]> */
"Sony Corporation", "PCG-GRT916Z*", "", "", 0, /* Marco Nenciarini <[email protected]> */
"Sony Corporation", "PCG-GRT995MP*", "", "", 0, /* */
"Sony Corporation ", "PCG-GRX500(UC) ", "R2715195 ", "R0202B0", 0, /* Jan 17, 2010 - Killua Zaoldyeck <[email protected]> */
"Sony Corporation", "PCG-TR2A(UC)", "", "", VBE_MODE, /* Bruce Perens <[email protected]> */
"Sony Corporation", "PCG-U101*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"Sony Corporation", "PCG-Z1RMP*", "", "", VBE_POST|VBE_MODE, /* mathieu bouillaguet <[email protected]> */
"Sony Corporation", "PCG-Z505HSK(UC)", "", "", 0, /* Tom Lear <[email protected]> */
"Sony Corporation", "PCV-RX612*", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"Sony Corporation", "VGN-A115B*", "", "", 0, /* Daniel Sabanes Bove <[email protected]> */
"Sony Corporation", "VGN-AR31S", "", "", S3_BIOS|S3_MODE, /* Dean Darlison <[email protected]>, maybe only with nvidia driver */
"Sony Corporation", "VGN-B1VP(GB)", "J000L04A", "R0042G9", S3_BIOS|S3_MODE, /* Sony VGN-B1VP, M. Vefa Bicakci <[email protected]> */
"Sony Corporation", "VGN-B1XP*", "", "", S3_BIOS, /* Daniel Morris <[email protected]> */
"Sony Corporation", "VGN-B55G(I)", "", "", 0, /* Dhananjaya Rao <[email protected]> */
"Sony Corporation", "VGN-C140G", "", "", S3_BIOS|S3_MODE, /* Jorge Visca <[email protected]> */
"Sony Corporation", "VGN-C210E", "C3LNT131", "R0080J4", S3_BIOS, /* May 25, 2010 - kriZ <kriz@ar...> */
"Sony Corporation", "VGN-C240E", "", "", S3_BIOS|S3_MODE, /* Marc Collin https://bugzilla.novell.com/show_bug.cgi?id=410723 */
"Sony Corporation", "VGN-C2S_G", "", "", S3_BIOS, /* Tijn Schuurmans <[email protected]> */
"Sony Corporation", "VGN-C2S_H", "", "", 0, /* Gerhard Riener <[email protected]> */
"Sony Corporation", "VGN-CR11Z_R", "C10191M5", "R0220Q0", 0, /* May 29, 2010 - Duane Griffin <duaneg@dg...> */
"Sony Corporation", "VGN-CS290J", "A222DVFY", "R1080Q2", 0, /* Apr 2, 2010 - joshua bowles <bowlesling@gm...> */
"Sony Corporation", "VGN-FE11M", "", "", 0, /* David Durrleman <[email protected]>, only from X :-( */
"Sony Corporation", "VGN-FE21B", "", "", S3_BIOS, /* Gert Huizenga <[email protected]> */
"Sony Corporation", "VGN-FE31M", "", "", 0, /* <[email protected]>, only from X, S3_MODE hangs the machine, all other leave the screen blank */
"Sony Corporation", "VGN-FE890E", "", "", 0, /* Bernardo Freitas Paulo da Costa <[email protected]> */
"Sony Corporation", "VGN-FS115B", "", "", S3_BIOS|S3_MODE, /* */
"Sony Corporation", "VGN-FS115Z", "", "", S3_MODE, /* Olivier Saier <[email protected]>, apparently S3_BIOS locks the machine hard */
"Sony Corporation", "VGN-FS215B", "", "", 0, /* S.Çağlar Onur <[email protected]> */
"Sony Corporation", "VGN-FS215M", "", "", 0, /* Chris deLuXCios <[email protected]> */
"Sony Corporation", "VGN-FS485B", "", "", S3_BIOS|S3_MODE, /* Tim Felgentreff <[email protected]> */
"Sony Corporation", "VGN-FS660_W", "", "", 0, /* Joseph Smith <[email protected]> */
"Sony Corporation", "VGN-FS920", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"Sony Corporation", "VGN-FW11*", "", "", VBE_POST|VBE_MODE, /* Rafal Milecki <[email protected]> and Thomas Bayen <[email protected]> */
"Sony Corporation", "VGN-FW31J", "C601640W", "R2060Y0", VBE_POST|VBE_MODE, /* Jan 18, 2010 - Michael Bunk <[email protected]> */
"Sony Corporation", "VGN-FZ39VN", "", "", 0, /* Stefano Avallone <[email protected]> */
"Sony Corporation", "VGN-N21Z_W", "", "", 0, /* 03/08/2009, Sony Vaio VGN-N21Z_W, Raphael Scholer <[email protected]> */
"Sony Corporation", "VGN-N320E", "", "", 0, /* Fredrik Roubert <[email protected]> */
"Sony Corporation", "VGN-NW130D", "", "", 0, /* 26/12/2009 Adriano Vilela Barbosa <[email protected]> */
"Sony Corporation", "VGN-P11Z_Q", "J003NNCC", "R2073U3", S3_MODE, /* Martin Hamilton <[email protected]> */
"Sony Corporation", "VGN-S150(UC)", "J0007XLN", "R0041G4", 0, /* Feb 2, 2010 - Thom Siragusa <tsiragusa@gm...> */
"Sony Corporation", "VGN-SZ340P", "", "", 0, /* [email protected] */
"Sony Corporation", "VGN-SZ38GP_C", "J0022RTD", "R0091N0", 0, /* Jan 9, 2010 - neo <[email protected]> */
"Sony Corporation", "VGN-SZ5XN_C", "", "", 0, /* Pedro M. S. Oliveira <[email protected]>, machine has two gfx cards, works only well with the intel, not with the nvidia */
"Sony Corporation", "VGN-SZ61XN_C", "", "", S3_BIOS|S3_MODE, /* Michal Bozek <[email protected]> */
"Sony Corporation", "VGN-SZ770N", "J0035SEN", "R0122S5", S3_BIOS|S3_MODE, /* Apr 3, 2010 - Konstantin Starodubtsev <ks@in...> */
"Sony Corporation", "VGN-T250P", "", "", S3_BIOS|S3_MODE, /* Anton Zahlheimer <[email protected]> */
"Sony Corporation", "VGN-TX3HP", "", "", 0, /* Timo Hoenig <[email protected]> VGN-TX3HP */
"Sony Corporation", "VGN-TX3XP_L", "", "", S3_BIOS|S3_MODE, /* Stephan Martin <[email protected]> */
"Sony Corporation", "VGN-TX5MN_W", "", "", VBE_MODE, /* Danny Kukawka <[email protected]>, TX5MN from Michael Matz <[email protected]> */
"Sony Corporation", "VGN-TX670P", "", "", VBE_POST|VBE_MODE, /* [email protected] */
"Sony Corporation", "VGN-TX770P", "", "", VBE_POST|VBE_MODE, /* */
"Sony Corporation", "VGN-TZ11*", "", "", 0, /* Pier Paolo Pittavino <[email protected]>, Timo Hoenig <[email protected]> */
"Sony Corporation", "VGN-TZ170N", "", "", S3_BIOS|S3_MODE, /* Raymond Russell <[email protected]> */
"Sony Corporation", "VGN-TZ21XN_B", "", "", 0, /* Hans Gunnarsson <[email protected]> */
"Sony Corporation", "VGN-TZ37*", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"Sony Corporation", "VGN-TZ91HS", "", "", 0, /* Jan P. O. Schuemann" <[email protected]> */
"Sony Corporation", "VGN-UX50", "", "", VBE_MODE, /* Mattia Dongili <[email protected]> */
"Sony Corporation", "VGN-Z90S", "", "", 0, /* ISHIKAWA Mutsumi <[email protected]> */
"Sony Corporation", "VPCF11E4E", "C603V8KU", "R0280Y6", S3_BIOS, /* Oct 28, 2010 - Benoit Vidis <[email protected]> */
"Sony Corporation", "VPCP111KX", "C606NMD8", "R0110U5", VBE_POST|VBE_SAVE, /* Stephan Mueller <[email protected]> */
"Sony Corporation", "VPCZ128GG", "J0049W8Q", "R2074C3", S3_BIOS|S3_MODE, /* Oct, 2010 - Jason O'Neil <[email protected]> */
"System manufacturer", "P5KR", "System Version", "", 0, /* ASUS Mainboard, also broken DMI strings... Luis Valino <[email protected]> */
"System manufacturer", "P5Q DELUXE", "System Version", "", S3_BIOS|S3_MODE, /* ASUS Mainboard, Gary Andrew https://bugzilla.novell.com/show_bug.cgi?id=419813 */
"System manufacturer", "System name", "1.XX ", "ASUS A8N-SLI ACPI BIOS Revision 1001", 0, /* May 3, 2010 - <deben@al...> */
"System Manufacturer", "System Name", "System Version", "ASUS P4B266 ACPI BIOS Revision 1010", S3_BIOS|S3_MODE, /* Asus P4B266, s2ram -f -a 3 Olivier Berger <[email protected]> */
"System manufacturer", "System Product Name", "System Version", "0208 ", 0, /* June 12, 2010 - Donald Jenkins <[email protected]> */
"System manufacturer", "System Product Name", "System Version", "0705 ", 0, /* Mar 1, 2010 - ali mofasa <ali_mofasa@ho...> */
"System manufacturer", "System Product Name", "System Version", "ASUS M2A-VM HDMI ACPI BIOS Revision 0902", 0, /* Feb 28, 2010 - Christian Hammers <ch@la...> */
"To Be Filled By O.E.M.", "259IA1", "To Be Filled By O.E.M.", "080010 ", S3_MODE, /* Pavol Otcenas <[email protected]>, "Prestigio Nobile 159W" */
"To Be Filled By O.E.M.", "MS-7210", "100", "", 0, /* Petr Pudlak <[email protected]> */
"TOSHIBA", "EQUIUM A100", "", "", S3_BIOS|S3_MODE, /* Kevin Fullerton <[email protected]> */
"TOSHIBA", "Libretto L5/TNK", "", "", 0, /* */
"TOSHIBA", "Libretto L5/TNKW", "", "", 0, /* */
"TOSHIBA", "libretto U100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "P3490", "", "", VBE_SAVE, /* Pavel Borzenkov <[email protected]>, Toshiba Portege 3490CT, works correctly for me */
"TOSHIBA", "P4000*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "Portable PC", "Version 1.0", "Version 1.20", 0, /* Hans-Hermann Jopski <[email protected]> Tecra A2 PTA20E-4M301VGR */
"TOSHIBA", "Portable PC", "Version 1.0", "Version 1.60", S3_MODE, /* a PORTEGE 100 :-( [email protected] */
"TOSHIBA", "Portable PC", "Version 1.0", "Version 7.80", S3_MODE, /* this is a Toshiba Satellite 4080XCDT, believe it or not :-( */
"TOSHIBA", "PORTEGE 3500", "PP350E-002F6-EN", "Version 1.40", 0, /* Toshiba Portege 3500, James Le Cuirot <[email protected]> */
"TOSHIBA", "PORTEGE A100*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "PORTEGE A200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "PORTEGE A600", "PPA61E-01700EGR", "Version 1.50", 0, /* Toshiba Portege A600-13Y, Gregor Zattler <[email protected]> */
"TOSHIBA", "PORTEGE M200*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "PORTEGE M300", "", "", S3_MODE, /* Alan Mycroft <[email protected]> */
"TOSHIBA", "Portege M400", "000000", "Version 3.80", 0, /* Oct 26, 2010 - Alexander Gehrke <[email protected]> */
"TOSHIBA", "PORTEGE R100", "", "", 0, /* Mathieu Lacage <[email protected]> */
"TOSHIBA", "PORTEGE R200", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"TOSHIBA", "PORTEGE R500", "", "", S3_BIOS|S3_MODE, /* Bernhard Kausler <[email protected]> */
"TOSHIBA", "Qosmio G40", "PQG40E-01G019FR", "Version 2.20", 0, /* Nov 15, 2010 - Didier Marion <[email protected]> */
"TOSHIBA", "Satellite 1130", "", "", VBE_SAVE, /* Kai-Ove Pietsch <[email protected]> */
"TOSHIBA", "Satellite 1900*", "", "", VBE_POST|VBE_SAVE|UNSURE, /* imported from acpi-support 0.59 "half known". */
"TOSHIBA", "Satellite A100", "", "", S3_BIOS|S3_MODE, /* From: [email protected] */
"TOSHIBA", "Satellite A105", "", "", S3_BIOS|S3_MODE, /* Eric Siegel <[email protected]>, intel chipset, sys_version="PSAA8U-0MD02K" */
"TOSHIBA", "Satellite A10", "", "", S3_BIOS|S3_MODE, /* Fabio Olivares <[email protected]> sys_version = "PSA10E-018EZ-6A" */
"TOSHIBA", "Satellite A200", "", "", S3_BIOS|S3_MODE, /* Jan Urbanski <[email protected]>, sys_version="PSAE0E-04600TPL" */
"TOSHIBA", "Satellite A205", "", "", S3_BIOS|S3_MODE, /* Brian Conn <[email protected]> sys_version="PSAE3U-087023" Andrew Barilla <[email protected]> "PSAE3U-07R025" */
"TOSHIBA", "Satellite A210", "", "", S3_BIOS|S3_MODE, /* Gavin Kinsey <[email protected]> */
"TOSHIBA", "Satellite A215", "", "", S3_BIOS|S3_MODE|PCI_SAVE, /* David Picella <[email protected]> sys_version = "PSAFGU-048002" */
"TOSHIBA", "Satellite A300D", "", "", VBE_POST|VBE_SAVE, /* Grzegorz Konopko <[email protected]> sys_version = "PSAK0E-00600GPL" */
"TOSHIBA", "Satellite A305D", "PSAH0U-00Q009", "1.90 ", S3_MODE, /* Jan 10, 2010 - Chris Olin <[email protected]> */
"TOSHIBA", "Satellite A30", "", "", VBE_SAVE, /* */
"TOSHIBA", "Satellite A45", "PSA40U-000HNV", "Version 1.30", 0, /* TOSHIBA Satellite A45, Shawn A. Wilson <[email protected]> */
"TOSHIBA", "Satellite A80", "", "", 0, /* Diego Ocampo <[email protected]> */
"TOSHIBA", "Satellite L10", "", "", VBE_POST|VBE_MODE, /* Christian Schneeman <[email protected]> */
"TOSHIBA", "Satellite L300", "PSLB8U-0NQ069", "1.80", 0, /* Jesse Taylor <[email protected]> */
"TOSHIBA", "Satellite L305", "PSLB8U-13T038", "1.80", VBE_POST|VBE_MODE, /* Toshiba Satellite L305-S5955, Dan <[email protected]> */
"TOSHIBA", "Satellite L30", "", "", S3_BIOS|S3_MODE, /* Gijs van Gemert <[email protected]> */
"TOSHIBA", "Satellite L655D", "PSK2LU-00G001", "1.70", 0, /* Andrey Petrov <[email protected]> */
"TOSHIBA", "SATELLITE M100", "PSMA0E-030014CZ", "V1.60", 0, /* Toshiba Satellite M100, Ji.� Appl <[email protected]> */
"TOSHIBA", "Satellite M105", "", "", S3_BIOS|S3_MODE, /* Krzysztof Lubanski <[email protected]>, sys_version = "PSMA0U-0F301U" */
"TOSHIBA", "Satellite M30X", "", "", S3_BIOS, /* [email protected], need to verify if S3_MODE is needed too */
"TOSHIBA", "Satellite M35X", "", "", S3_BIOS|S3_MODE, /* Michaell Gurski */
"TOSHIBA", "Satellite M40", "PSM43U-*", "Version 1.50", 0, /* [email protected] */
"TOSHIBA", "Satellite M55", "", "", VBE_POST|VBE_MODE, /* Mike Gilliam <[email protected]> */
"TOSHIBA", "Satellite M60", "PSM60E-0C801GGR", "V1.40", VBE_POST|VBE_MODE, /* Peter Ingold <[email protected]> */
"TOSHIBA", "Satellite M645", "PSMPMU-00G001", "1.10", S3_MODE, /* Oct 29, 2010 - Ulrich Englich <[email protected]> */
"TOSHIBA", "Satellite M70", "", "", 0, /* (BAD: [email protected] S3_BIOS|S3_MODE) */
"TOSHIBA", "Satellite P100", "", "", 0, /* [email protected] sys_version = "PSPAGE-00H00RS4" */
"TOSHIBA", "Satellite P10", "", "", S3_BIOS|S3_MODE, /* Antonis Tsolomitis <[email protected]> */
"TOSHIBA", "Satellite P200", "", "", S3_BIOS|S3_MODE, /* From: mire <[email protected]> */
"TOSHIBA", "Satellite P205D", "", "", S3_BIOS|S3_MODE, /* [email protected] */
"TOSHIBA", "Satellite P300", "PSPCCE-02C006FR", "V2.40 ", VBE_POST|VBE_SAVE, /* From: deap <[email protected]> */
"TOSHIBA", "SatellitePro4600", "", "", 0, /* From: Jim <[email protected]> */
"TOSHIBA", "Satellite Pro A120", "", "", S3_BIOS|S3_MODE, /* Stephen Jarrett-Sprague <[email protected]> sys_version="PSAC1E-0J3021EN" */
"TOSHIBA", "Satellite Pro M15", "PS630U-G205HV", "Version 1.50", 0, /* Toshiba Satellite Pro M15, Mark Chace <[email protected]> */