1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
|
#
# Vendor Name and URL
#
# Syntax:
# name <name>
# name_short <shorter name>
# url <url>
# url_support <url>
# wikipedia [language:]<article title>[#section]
# note <short note>
# ansi_color n[;n][...]
# <match_rule> <match_string>
# ...
# <match_rule> <match_string>
# <match_rule> <match_string>
#
# match rules:
# match_string - match a word, ignore case
# match_string_case - match a word, consider case
# match_string_exact - entire string must match exactly
# match_string_prefix - prefix of a word, ignore case
# match_string_prefix_case - prefix of a word, consider case
# match_string_suffix - suffix of a word, ignore case
# match_string_suffix_case - suffix of a word, consider case
# match_string_num_prefix - prefix next character must be a digit, ignore case
# match_string_num_prefix_case - prefix next character must be a digit, consider case
#
# Except for the newline, trailing whitespace is included in the string.
# Match strings should be unique.
#
name Lenovo Group
name_short Lenovo
url www.lenovo.com
url_support support.lenovo.com
wikipedia Lenovo
ansi_color 0;97;41
match_string lenovo
note EDID vendor: LEN
match_string_exact LEN
name Union Memory (Shenzhen)
name_short Union Memory
url unionmem.com
ansi_color 0;35;107
match_string Union Memory (Shenzhen)
name SSK Corporation (Shenzhen)
name_short SSK飚王
url www.ssk.cn
ansi_color 0;91;107
match_string SSK (Shenzhen)
match_string_case SSK
name ASUSTeK Computer
name_short ASUS
url www.asus.com
wikipedia Asus
ansi_color 0;30;47
match_string ASUSTek
match_string ASUS
# PCI Vendor 1022
name Advanced Micro Devices
name_short AMD
url www.amd.com
wikipedia Advanced Micro Devices
ansi_color 0;97;41
match_string Advanced Micro Devices
match_string_case AMD
# PCI Vendor 1002 (used for GPUs)
name Advanced Micro Devices (formerly ATI)
name_short AMD/ATI
url www.amd.com
wikipedia ATI Technologies
ansi_color 0;97;41
match_string ATI Technologies
match_string Advanced Micro Devices, Inc. [AMD/ATI]
match_string_case AMD/ATI
match_string_case ATI
name nVidia Corporation
name_short nVidia
url www.nvidia.com
wikipedia Nvidia
ansi_color 0;97;42
match_string nVidia
name G.Skill International Enterprise
name_short G.Skill
url www.gskill.com
wikipedia G.Skill
ansi_color 0;31;107
match_string G.Skill
match_string G-Skill
match_string G Skill
name XFX Pine Group
name_short XFX
url www.xfxforce.com
wikipedia XFX
ansi_color 0;30;42
match_string_case XFX
name 3Com
url www.3com.com
wikipedia 3Com
ansi_color 0;97;40
match_string 3Com
name Intel Corporation
name_short Intel
url www.intel.com
wikipedia Intel Corporation
ansi_color 0;97;44
match_string Intel
name Cirrus Logic
url www.cirrus.com
match_string Cirrus Logic
name VIA Technologies
name_short VIA
url www.via.com.tw
ansi_color 0;36;107
match_string_case VIA
name NEC Corporation
name_short NEC
url www.nec.com
ansi_color 0;94;107
note EDID vendor: NEC
match_string_case NEC
name Realtek Semiconductor
name_short Realtek
url www.realtek.com.tw
ansi_color 0;34;107
match_string Realtek
name Toshiba Corporation
# styled in all-caps
name_short TOSHIBA
url www.toshiba.com
ansi_color 0;91;47
match_string Toshiba
note EDID vendor: TSB
match_string_exact TSB
name Vizio
name_short VIZIO
ansi_color 0;30;107
match_string Vizio
note EDID vendor: VIZ
match_string_exact VIZ
name AOC International
name_short AOC
url www.aoc.com
wikipedia AOC International
ansi_color 0;97;44
match_string_case AOC
note formerly Admiral Overseas Corporation
match_string Admiral Overseas Corporation
match_string Admiral
name Magewell
url www.magewell.com
ansi_color 0;34;107
match_string Magewell
name Harman International
name_short Harman
url www.harman.com
ansi_color 0;34;107
match_string Harman International
match_string Harman
name Oculus VR
name_short Oculus
url www.oculus.com
ansi_color 0;97;100
wikipedia Oculus VR
match_string Oculus VR
match_string Oculus
name Yamaha Corporation
name_short Yamaha
url www.yamaha.com
wikipedia Yamaha Corporation
ansi_color 0;35;107
match_string Yamaha
name AU Optronics Corporation
name_short AUO
url www.auo.com
wikipedia AU Optronics
ansi_color 0;34;107
match_string AU Optronics
match_string_case AUO
name Planar
name_short PLANAR
url www.planar.com
ansi_color 0;91;40
match_string Planar
name Seiko Epson Corporation
name_short EPSON
url epson.com
wikipedia Seiko Epson
ansi_color 0;34;107
match_string Seiko Epson
match_string Epson
match_string Seiko
# Company defunct, now brand name of Chinese company
name Eastman Kodak Company
name_short Kodak
wikipedia Kodak
ansi_color 0;31;43
match_string Kodak
# Company defunct, now brand name of Chinese company
name Westinghouse Electronics
name_short W
wikipedia Westinghouse Electronics
ansi_color 0;97;44
match_string Westinghouse
name ViewSonic Corporation
name_short ViewSonic
url www.viewsonic.com
ansi_color 0;35;103
match_string ViewSonic
note EDID vendor: VSC
match_string_exact VSC
name LITE-ON
url www.liteonit.com
ansi_color 0;97;104
match_string_case LITE-ON
name Maxtor
url www.maxtor.com
match_string Maxtor
name Samsung
url www.samsung.com
ansi_color 0;47;30
match_string Samsung
note EDID vendor: SAM
match_string_exact SAM
name Pioneer
url www.pioneer-eur.com
match_string Pioneer
note EDID vendor: PIO
match_string_exact PIO
name Plextor
url www.plextor.be
match_string Plextor
name LG Electronics
name_short LG
url www.lge.com
ansi_color 0;97;41
match_string LG Electronics [Lucky Goldstar Co. Ltd]
match_string Lucky Goldstar
match_string Lucky-Goldstar
match_string LG Semi
match_string_case LG
name LG Electronics (formerly Goldstar)
name_short LG (Goldstar)
url www.lge.com
ansi_color 0;97;41
match_string Goldstar
name LG Display
name_short LG Display
url www.lgdisplay.com
ansi_color 0;97;41
match_string LG Display
match_string LG.Philips
note EDID vendor: LGD
match_string_exact LGD
name LIG Nex1
wikipedia LIG Nex1
match_string LIG Nex1
match_string LG Innotek
match_string NEX1 Future
name Hitachi-LG Data Storage
name_short HLDS
url http://hlds.co.kr
wikipedia Hitachi-LG Data Storage
ansi_color 0;97;105
match_string_case HL-DT-ST
match_string_case HLDS
match_string_case H-L Data Storage
match_string Hitachi-LG
match_string Hitachi LG
match_string LG (HLDS)
name Hitachi Global Storage Technologies
name_short HGST
url hgst.com
ansi_color 0;97;40
match_string HGST a Western Digital Company
match_string Hitachi Global Storage
match_string_case HGST
name Hitachi
name_short HITACHI
url www.hitachi.com
ansi_color 0;30;47
match_string Hitachi
note EDID vendor: HTC
match_string_exact HTC
name Lexmark
url www.lexmark.com
match_string Lexmark
name Creative Labs
url www.creative.com
match_string Creative Labs
name NXP Semiconductors
name_short NXP
url www.nxp.com
match_string_case NXP
name Synaptics (formerly Brooktree)
name_short Synaptics (Brooktree)
url www.synaptics.com
match_string Brooktree
name Synaptics (formerly Conexant Systems)
name_short Synaptics (Conexant)
url www.synaptics.com
match_string Conexant
name Synaptics
url www.synaptics.com
match_string Synaptics
name TDK-Micronas
url www.micronas.com
match_string Micronas
name Apacer Technology
name_short Apacer
match_string Apacer
name Bright Micron Technology
name_short BMT
match_string Bright Micron
name HT Micron
match_string HT Micron
name Intellitech
match_string Intellitech
name Harmony Semiconductor
name_short Harmony
match_string Harmony
name Qualcomm (formerly Atheros)
name_short Qualcomm (Atheros)
url www.qualcomm.com
wikipedia Qualcomm Atheros
ansi_color 0;94;47
match_string Qualcomm Atheros
match_string Atheros
name Panasonic Industry Company
# AKA: Matsushita Electric Industrial
name_short Panasonic
url www.panasonic.com
ansi_color 0;30;107
match_string Panasonic
match_string Matsushita
match_string MATSHITA
note EDID vendor: MEI
match_string_exact MEI
name Silicon Image
url www.siliconimage.com
match_string Silicon Image
match_string Silicon Integrated Image
name Broadcom Corporation
name_short Broadcom
url www.broadcom.com
ansi_color 0;30;41
match_string Broadcom
name Apple Computer
name_short Apple
url www.apple.com
ansi_color 0;97;100
match_string Apple
note EDID vendor: APP
match_string_exact APP
name International Business Machines Corporation
name_short IBM
url www.ibm.com
ansi_color 0;94;107
match_string International Business Machines
match_string_case IBM
name Dell Computer
name_short Dell
url www.dell.com
ansi_color 0;97;44
match_string Dell
# Dell PowerEdge/PowerVault controller SCSI vendor
match_string PE/PV
note EDID vendor: DEL
match_string_exact DEL
name Logitech International
name_short logitech
ansi_color 0;30;107
url www.logitech.com
match_string Logitech
name Fujitsu
name_short FUJITSU
url www.fujitsu.com
ansi_color 0;31;107
match_string FUJITSU
name_short Fujitsu/Siemens
match_string Fujitsu Siemens
name Sony
name_short SONY
url www.sony.com
ansi_color 0;30;107
match_string Sony
# match_string_case CDU
note EDID vendor: SNY
match_string_exact SNY
name Sony Mobile
name_short SONY
url www.sony.com
ansi_color 0;30;107
match_string Sony Mobile
name_short SONY/Ericsson
match_string Sony Ericsson
name SanDisk
url www.sandisk.com
ansi_color 0;31;40
match_string SanDisk
name ExcelStor Technology
url www.excelstor.com
match_string ExcelStor
name D-Link
url www.dlink.com.tw
ansi_color 0;97;44
match_string D-Link
name Gigabyte Technology
name_short Gigabyte
url www.gigabyte.com.tw
ansi_color 0;94;47
match_string Giga-byte
match_string Gigabyte
name Micro-Star International
name_short MSI
url www.msi.com
url_support www.msi.com/support
ansi_color 0;97;40
match_string Micro-Star Int'l Co.,Ltd.
match_string Micro Star
match_string_case MSI
name ZOTAC International
name_short ZOTAC
url www.zotac.com
url_support www.zotac.com/support/
ansi_color 0;90;43
match_string ZOTAC
name C-Media Electronics
name_short C-Media
url www.cmedia.com.tw
match_string C-Media
name AVerMedia Technologies
name_short AVerMedia
url www.aver.com
match_string Avermedia
name Koninklijke Philips
name_short PHILIPS
url www.philips.com
match_string Philips
ansi_color 0;30;107
match_string Philips
note EDID vendor: PHL
match_string_exact PHL
name Sharp Corporation
name_short SHARP
ansi_color 0;31;107
match_string Sharp
note EDID vendor: SHP
match_string_exact SHP
name Ralink Technology
name_short Ralink
url www.ralinktech.com
ansi_color 0;36;107
match_string RaLink
name Siemens AG
name_short Siemens
url www.siemens.com
match_string Siemens
name Hewlett-Packard
name_short HP
url www.hp.com
ansi_color 0;97;46
match_string Hewlett-Packard
match_string_case HP
note EDID vendor: HWP
match_string_exact HWP
note SCSI vendor: hp
match_string_exact hp
name TEAC Corporation
name_short TEAC
url www.teac.com
ansi_color 0;34;107
match_string_case TEAC
name Microsoft
url www.microsoft.com
ansi_color 0;97;40
match_string Microsoft
name Memorex Products
name_short Memorex
url www.memorex.com
match_string Memorex
name eMPIA Technology
url www.empiatech.com.tw
match_string_case eMPIA
name Canon
url www.canon.com
ansi_color 0;31;107
match_string Canon
name A4tech
url www.a4tech.com
wikipedia A4Tech
ansi_color 0;33;40
match_string A4Tech
name Alcor Life Extension Foundation
# Makes devices?
name_short Alcor
url www.alcor.org
match_string ALCOR
name Vimicro
url www.vimicro.com
match_string Vimicro
name Ours Technology
url www.oti.com.tw
match_string_case OTi
name BenQ
url www.benq.com
ansi_color 0;35;107
match_string BENQ
name BenQ (formerly Acer Peripherals)
name_short BenQ/acer
url www.benq.com
ansi_color 0;35;107
match_string Acer Peripherals
match_string Acer Peripherals Inc. (now BenQ Corp.)
name Holtek Semiconductor
name_short Holtek
url www.holtek.com
ansi_color 0;34;107
match_string Holtek
name Acer
name_short acer
url www.acer.com
ansi_color 0;32;107
match_string Acer
note EDID vendor: ACR
match_string_exact ACR
name Quantum
url www.quantum.com
match_string QUANTUM
name Kingston Technology
name_short Kingston
url www.kingston.com
ansi_color 0;31;40
match_string Kingston
name Chicony
url www.chicony.com.tw
match_string Chicony
name Phison Electronics Corporation
name_short Phison
url www.phison.com
wikipedia Phison
ansi_color 0;33;44
match_string Phison
name Corsair Components
name_short Corsair
url www.corsair.com
wikipedia Corsair Components
ansi_color 0;30;43
match_string Corsair
match_string_num_prefix Force MP
match_string_num_prefix Force LE
name Genius
url www.genius.ru
match_string Genius
name KYE Systems
name_short KYE
url www.genius-kye.com
match_string_case KYE
name STMicroelectronics
name_short ST
url www.st.com
ansi_color 0;97;104
match_string STMicroelectronics
match_string ST Micro
name ST-Ericsson
wikipedia ST-Ericsson
ansi_color 0;97;43
match_string ST-Ericsson
match_string ST Ericsson
match_string STEricsson
name Ericsson-LG
wikipedia Ericsson-LG
ansi_color 0;97;43
match_string Ericsson-LG
match_string LG-Ericsson
name Telefonaktiebolaget LM Ericsson
name_short Ericsson
url ericsson.com
wikipedia Ericsson
ansi_color 0;94;107
match_string Ericsson
name Socket Mobile
url www.socketmobile.com
match_string Socket Communications
match_string Socket Mobile
match_string Socket
name GCT Semiconductor
name_short GCT
url www.gctsemi.com
match_string GCT Semiconductor
match_string_case GCT
name Murata Manufacturing
name_short Murata
url www.murata.com
wikipedia Murata Manufacturing
ansi_color 0;31;107
match_string Murata
name Murata Manufacturing (formerly SyChip Electronic Technology)
name_short Murata (SyChip)
ansi_color 0;31;107
match_string SyChip
name Spectec Computer
name_short Spectec
url spectec.com.tw
match_string Spectec
name Siano Mobile Silicon
match_string Siano Mobile Silicon
# NOT Globalsat Group
name Globalsat Technology
match_string Globalsat Technology
name C-guys
url www.c-guys.net
match_string C-guys
name Ricoh
url www.ricoh.com
wikipedia Ricoh
ansi_color 0;91;107
match_string Ricoh
name Brother Industries
name_short Brother
url www.brother.com
wikipedia Brother Industries
ansi_color 0;34;107
match_string Brother
name AboCom Systems
url www.abocom.com.tw
match_string AboCom Systems
match_string AboCom
name Micron Technology
name_short Micron
url www.micron.com
ansi_color 0;34;47
match_string Micron
name Crucial (Micron)
name_short Crucial
url www.crucial.com
ansi_color 0;37;44
match_string Crucial
match_string Micron/Crucial
name Toshiba Samsung Storage Technology
name_short TSST
url www.tsst.co.kr
wikipedia Toshiba Samsung Storage Technology
ansi_color 0;34;107
match_string Toshiba Samsung Storage
match_string TSSTcorp
match_string_case TSST
name Seagate Technology
name_short SEAGATE
url www.seagate.com
ansi_color 0;92;100
match_string Seagate
match_string_num_prefix_case ST
name Silicon Integrated Systems Corporation
name_short SIS
url www.sis.com
match_string Silicon Integrated Systems
match_string_case SIS
name S3 Graphics
name_short VIA/S3
url www.s3graphics.com
url_support www.s3graphics.com/en/drivers
ansi_color 0;30;103
match_string S3 Graphics
match_string_case VIA/S3
name Fuzhou Rockchip Electronics
name_short Rockchip
url www.rock-chips.com
ansi_color 0;34;43
match_string Rockchip
name Qualcomm Incorporated
name_short Qualcomm
url www.qualcomm.com
ansi_color 0;94;47
match_string Qualcomm
name Arm Holdings
# styled lower-case "arm"
name_short arm
url arm.com
ansi_color 0;36;107
match_string ARM
name Microchip Technology (formerly Standard Microsystems)
name_short SMC
ansi_color 0;37;40
match_string Standard Microsystems
name Linux Foundation
name_short Linux
ansi_color 0;33;40
match_string Linux Foundation
match_string Linux
name ASMedia Technology
name_short ASMedia
url www.asmedia.com.tw
ansi_color 0;30;46
match_string_case ASMedia
name Sapphire Technology
name_short SAPPHIRE
url www.sapphiretech.com
ansi_color 0;30;107
match_string sapphire tech
name Synopsys
url www.synopsys.com
ansi_color 0;35;107
match_string Synopsys
name Raspberry Pi Foundation
name_short Raspberry Pi
url www.raspberrypi.org
ansi_color 0;97;42
match_string RaspberryPi
match_string Raspberry Pi
name Embest Technology
name_short Embest
url www.embest-tech.com
ansi_color 0;96;44
match_string Embest
# JEDEC mfgr [1][78]
name Transcend Information
name_short Transcend
url transcend-info.com
ansi_color 0;31;47
match_string Transcend Information
# More likely this one is T. Information than T. Technology
match_string Transcend
# JEDEC mfgr [7][105]
name Transcend Technology
name_short Transcend
match_string Transcend Technology
# JEDEC mfgr [0][64]
name Infineon Technologies
name_short infineon
url www.infineon.com
wikipedia Infineon Technologies
ansi_color 0;34;107
match_string Infineon
match_string Infineon (former Siemens)
name Cypress Semiconductor
name_short Cypress
url cypress.com
wikipedia Cypress Semiconductor
ansi_color 0;36;107
match_string Cypress
name Renesas Electronics
name_short Renesas
url www.renesas.com
wikipedia Renesas Electronics
ansi_color 0;97;44
match_string Renesas
name ADATA Technology
name_short ADATA
ansi_color 0;34;47
match_string_case ADATA
name Victor Company of Japan
name_short JVC
url www.victor.co.jp
ansi_color 0;91;107
match_string_case JVC
match_string Victor
name ASRock
url www.asrock.com
ansi_color 0;32;107
match_string ASRock
name Biostar Microtech International
name_short BIOSTAR
url www.biostar.tw
ansi_color 0;31;40
match_string Biostar
name EVGA
url www.evga.com
ansi_color 0;34;107
match_string EVGA
name Elitegroup Computer Systems
name_short ECS
ansi_color 0;36;41
match_string_case ECS
name JMicron Technology
name_short JMicron
url www.jmicron.com
wikipedia JMicron
ansi_color 0;34;107
match_string JMicron Technology
match_string JMicron USA Technology
match_string JMicron
name Sabrent
url www.sabrent.com
wikipedia Sabrent
ansi_color 0;30;44
match_string Sabrent
match_string Arkview
name Sanyo Electric
name_short SANYO
url www.sanyo.com
match_string SANYO
name Cambridge Silicon Radio
name_short CSR
url www.csr.com
wikipedia Cambridge Silicon Radio
ansi_color 0;34;107
match_string Cambridge Silicon Radio
name Suprema
url www.supremainc.com
ansi_color 0;31;107
match_string suprema
name Patriot Memory
name_short Patriot
url www.patriotmemory.com
wikipedia Patriot Memory
ansi_color 0;97;44
match_string Patriot Memory
name SK Hynix
name_short SK hynix
url www.skhynix.com
wikipedia SK Hynix
ansi_color 0;31;43
match_string Hynix
match_string Hyundai
name PNY Technologies
name_short PNY
url www.pny.com
wikipedia PNY Technologies
ansi_color 0;97;100
match_string_case PNY
name Linaro
url linaro.org
wikipedia Linaro
ansi_color 0;32;107
match_string Linaro
name Longsys
name_short longsys
url longsys.com
ansi_color 0;31;107
match_string Longsys
name Longsys (formerly Micron Lexar)
name_short longsys/Lexar
url lexar.com
wikipedia Lexar
ansi_color 0;31;40
match_string Lexar
name Angelbird Technologies
name_short Angelbird
url www.angelbird.com
ansi_color 0;97;100
match_string Angelbird
name Hoodman Corporation
name_short Hoodman
url www.hoodmanusa.com
ansi_color 0;30;43
match_string Hoodman
name Silicon Power
name_short SP
url www.silicon-power.com
wikipedia Silicon Power
ansi_color 0;97;40
match_string Silicon Power
#
# BIOS manufacturers
#
name American Megatrends
name_short AMI
url www.ami.com
ansi_color 0;31;47
match_string American Megatrends
name Award Software International
name_short Award
url www.award-bios.com
ansi_color 0;93;44
match_string Award
name Phoenix Technologies
name_short Phoenix
url www.phoenix.com
ansi_color 0;31;47
match_string Phoenix
name Insyde Software
name_short Insyde
url www.insyde.com
ansi_color 0;30;42
match_string Insyde
name Coreboot Project
name_short Coreboot
url www.coreboot.org
match_string coreboot
#
# Linux
#
name Debian
url www.debian.org
ansi_color 0;31;107
match_string debian
name Raspbian
url www.raspberrypi.org/downloads/raspbian/
ansi_color 0;97;101
match_string raspbian
name Canonical
url www.canonical.com
ansi_color 0;97;45
match_string canonical
name Ubuntu
url www.ubuntu.com
url_support www.ubuntu.com/support/community-support
ansi_color 0;97;45
match_string ubuntu
name Arch Linux
name_short Arch
url www.archlinux.org
ansi_color 0;36;107
match_string arch linux
name Red Hat
url www.redhat.com
ansi_color 0;31;40
match_string Red Hat
match_string RedHat
name Oracle Corporation
name_short Oracle
url www.oracle.com
ansi_color 0;97;41
match_string Oracle
name Oracle Corporation (formerly Sun Microsystems)
name_short Oracle (Sun)
url www.oracle.com
wikipedia Sun Microsystems
ansi_color 0;97;41
match_string Sun Microsystems
match_string Oracle Corporation (former Sun Microsystems)
name Oracle Corporation (formerly InnoTek Systemberatung)
name_short Oracle (InnoTek)
url www.virtualbox.org/wiki/innotek
url_support www.virtualbox.org
ansi_color 0;97;41
match_string InnoTek
match_string VirtualBox
match_string_case VBOX
name Slackware
url www.slackware.com
ansi_color 0;30;107
match_string Slackware
name KDE
url www.kde.org
wikipedia KDE
ansi_color 0;97;104
match_string_case KDE
name CDEmu
url cdemu.sourceforge.io
match_string CDEmu
name X.Org Foundation
name_short X.Org
url www.x.org
wikipedia X.Org Foundation
ansi_color 0;30;43
match_string X.Org
#
# x86 vendor strings
#
name Advanced Micro Devices
name_short AMD
url www.amd.com
wikipedia Advanced Micro Devices
ansi_color 0;97;41
note x86 processor vendor ID
match_string AMDisbetter!
match_string AuthenticAMD
name Intel Corporation
name_short Intel
url www.intel.com
url_support ark.intel.com
ansi_color 0;97;44
note x86 processor vendor ID
match_string GenuineIntel
name Chengdu Haiguang Integrated Circuit Design
name_short Hygon
ansi_color 0;97;104
match_string Hygon
match_string Higon
note x86 processor vendor ID
match_string HygonGenuine
name VIA Technologies
name_short VIA
url www.via.tw
ansi_color 0;36;107
note x86 processor vendor ID
match_string VIA VIA VIA
name VIA (formerly Centaur Technology)
name_short VIA (Centaur)
url www.via.tw
ansi_color 0;36;107
note x86 processor vendor ID
match_string CentaurHauls
name VIA (formerly Cyrix)
name_short VIA (Cyrix)
url www.via.tw
ansi_color 0;36;107
note x86 processor vendor ID
match_string CyrixInstead
name Transmeta Corporation
name_short Transmeta
note x86 processor vendor ID
match_string TransmetaCPU
match_string GenuineTMx86
name National Semiconductor
name_short NSC
note x86 processor vendor ID
match_string Geode by NSC
name NexGen
note x86 processor vendor ID
match_string NexGenDriven
name Rise Technology
name_short Rise
note x86 processor vendor ID
match_string RiseRiseRise
name Silicon Integrated Systems
name_short SIS
note x86 processor vendor ID
match_string SiS SiS SiS
name United Microelectronics Corporation
name_short UMC
note x86 processor vendor ID
match_string UMC UMC UMC
name DMP Electronics
note x86 processor vendor ID
match_string Vortex86 SoC
name Digital Equipment Corporation
name_short DEC
note Dead; various parts to Intel, Compaq, HP
match_string_case DEC
match_string Digital Equipment
match_string_exact Digital
name Western Digital
name_short WD
url www.westerndigital.com
wikipedia Western Digital
ansi_color 0;37;40
# ansi_color 0;97;44
match_string Western Digital
match_string_case WDC
match_string_num_prefix_case WD
name Marvell Technology Group
name_short Marvell
url www.marvell.com
wikipedia Marvell Technology Group
ansi_color 0;97;41
match_string Marvell
name Marvell (formerly Cavium)
name_short Marvell (Cavium)
url cavium.com
wikipedia Cavium
ansi_color 0;97;41
match_string Cavium
name Applied Micro Circuits
name_short APM
wikipedia Applied Micro Circuits Corporation
match_string Applied Micro Circuits
match_string AppliedMicro
match_string_case APM
match_string_case AMCC
name Faraday Technology
name_short Faraday
url www.faraday-tech.com
wikipedia Faraday Technology
match_string Faraday Technology
match_string Faraday
name Texas Instruments
name_short TI
url ti.com
wikipedia Texas Instruments
ansi_color 0;97;40
match_string Texas Instruments
match_string_case TI
name Allwinner Technology
name_short AllWinner
url www.allwinnertech.com
wikipedia Allwinner Technology
ansi_color 0;97;44
match_string AllWinner
name Amlogic
name_short AMLogic
url www.amlogic.com
wikipedia Amlogic
ansi_color 0;94;107
match_string Amlogic
name MediaTek
url www.mediatek.com
wikipedia MediaTek
ansi_color 0;97;43
match_string MediaTek
name Valve Corporation
name_short VALVE
url valvesoftware.com
wikipedia Valve Corporation
ansi_color 0;97;41
match_string Valve Corporation
match_string Valve
#
# x86 VM vendor strings
#
name VMware
url www.vmware.com
wikipedia VMware
ansi_color 0;90;47
match_string VMware
note x86 VM vendor string
match_string VMwareVMware
name KVM
url www.linux-kvm.org
match_string KVMKVMKVM
name Microsoft Hyper-V
url www.microsoft.com
match_string Microsoft Hv
name Parallels
url www.parallels.com
match_string lrpepyh vr
name Xen HVM
url www.xenproject.org
match_string XenVMMXenVMM
|