-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules.json
22123 lines (22123 loc) · 722 KB
/
modules.json
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
{
"apollolake-4.4.180": {
"8139cp": {
"description": "RealTek RTL-8139C+ series 10/100 PCI Ethernet driver",
"depends": "mii"
},
"aacraid": {
"description": "Dell PERC2, 2/Si, 3/Si, 3/Di, Adaptec Advanced Raid Products, HP NetRAID-4M, IBM ServeRAID & ICP SCSI driver (Compiled by RR for DSM)",
"depends": ""
},
"acpi-cpufreq": {
"description": "ACPI Processor P-States Driver",
"depends": ""
},
"adm1021": {
"description": "adm1021 driver",
"depends": ""
},
"adm1031": {
"description": "ADM1031/ADM1030 driver",
"depends": ""
},
"adm9240": {
"description": "ADM9240/DS1780/LM81 driver",
"depends": "hwmon-vid"
},
"adt7470": {
"description": "ADT7470 driver (Compiled by RR for DSM)",
"depends": ""
},
"adt7475": {
"description": "adt7475 driver (Compiled by RR for DSM)",
"depends": "hwmon-vid"
},
"aic94xx": {
"description": "Adaptec aic94xx SAS/SATA driver",
"depends": "libsas,scsi_transport_sas"
},
"alx": {
"description": "Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver",
"depends": "mdio"
},
"aqc111": {
"description": "Aquantia AQtion USB to 5/2.5GbE Controllers",
"depends": "usbnet,usbcore"
},
"asix": {
"description": "ASIX AX8817X based USB 2.0 Ethernet Devices",
"depends": "mii,libphy,usbnet,usbcore"
},
"atkbd": {
"description": "AT and PS/2 keyboard driver",
"depends": ""
},
"atl1c": {
"description": "Qualcomm Atheros 100/1000M Ethernet Network Driver",
"depends": ""
},
"atl1e": {
"description": "Atheros 1000M Ethernet Network Driver",
"depends": ""
},
"atlantic": {
"description": "Marvell (Aquantia) Corporation(R) Network Driver",
"depends": "crc-itu-t"
},
"auxiliary": {
"description": "Auxiliary Bus Standalone",
"depends": ""
},
"ax88179_178a": {
"description": "ASIX AX88179/178A based USB 3.0/2.0 Gigabit Ethernet Devices",
"depends": "usbnet,usbcore,mii"
},
"b44": {
"description": "Broadcom 44xx/47xx 10/100 PCI ethernet driver",
"depends": "ssb,libphy,mii"
},
"backlight": {
"description": "Backlight Lowlevel Control Abstraction",
"depends": ""
},
"bcm-phy-lib": {
"description": "Broadcom PHY Library",
"depends": "libphy"
},
"be2net": {
"description": "Emulex OneConnect NIC Driver 10.6.0.3",
"depends": ""
},
"bitblit": {
"description": "Bit Blitting Operation",
"depends": "fb,softcursor,fbcon_rotate"
},
"bnx2": {
"description": "QLogic BCM5706/5708/5709/5716 Driver",
"depends": ""
},
"bnx2x": {
"description": "QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver",
"depends": "mdio,vxlan"
},
"bnx2x_mod": {
"description": "QLogic BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Driver",
"depends": "mdio,vxlan"
},
"bnxt_en": {
"description": "Broadcom BCM573xx network driver",
"depends": "vxlan"
},
"broadcom": {
"description": "Broadcom PHY driver",
"depends": "bcm-phy-lib,libphy"
},
"button": {
"description": "ACPI Button Driver",
"depends": ""
},
"cdc_ether": {
"description": "USB CDC Ethernet devices",
"depends": "usbnet,usbcore"
},
"cdc_ncm": {
"description": "USB CDC NCM host driver",
"depends": "usbnet,usbcore"
},
"cdrom": {
"description": "",
"depends": ""
},
"cfbcopyarea": {
"description": "Generic software accelerated copyarea",
"depends": ""
},
"cfbfillrect": {
"description": "Generic software accelerated fill rectangle",
"depends": ""
},
"cfbimgblt": {
"description": "Generic software accelerated imaging drawing",
"depends": ""
},
"ch": {
"description": "device driver for scsi media changer devices",
"depends": ""
},
"ch341": {
"description": "USB CH341 Single Port Serial Driver (Compiled by RR for DSM)",
"depends": "usbserial,usbcore"
},
"cn": {
"description": "Generic userspace <-> kernelspace connector.",
"depends": ""
},
"cp210x": {
"description": "Silicon Labs CP210x RS232 serial adaptor driver",
"depends": "usbserial,usbcore"
},
"cpufreq_conservative": {
"description": "'cpufreq_conservative' - A dynamic cpufreq governor for Low Latency Frequency Transition capable processors optimised for use in a battery environment",
"depends": ""
},
"cpufreq_governor": {
"description": "CPUfreq governors common code",
"depends": ""
},
"cpufreq_ondemand": {
"description": "'cpufreq_ondemand' - A dynamic cpufreq governor for Low Latency Frequency Transition capable processors",
"depends": ""
},
"cpufreq_performance": {
"description": "CPUfreq policy governor 'performance'",
"depends": ""
},
"crc-itu-t": {
"description": "CRC ITU-T V.41 calculations",
"depends": ""
},
"cxgb": {
"description": "Chelsio 10Gb Ethernet Driver",
"depends": "mdio"
},
"cxgb3": {
"description": "Chelsio T3 Network Driver",
"depends": "mdio"
},
"cxgb4": {
"description": "Chelsio T4/T5/T6 Network Driver",
"depends": ""
},
"cxgb4vf": {
"description": "Chelsio T4/T5/T6 Virtual Function (VF) Network Driver",
"depends": ""
},
"dm-log": {
"description": "device-mapper dirty region log",
"depends": "dm-mod"
},
"dm-mirror": {
"description": "device-mapper mirror target",
"depends": "dm-region-hash,dm-mod,dm-log"
},
"dm-mod": {
"description": "device-mapper driver",
"depends": ""
},
"dm-multipath": {
"description": "device-mapper multipath target",
"depends": "dm-mod"
},
"dm-queue-length": {
"description": "device-mapper path selector to balance the number of in-flight I/Os",
"depends": "dm-multipath"
},
"dm-region-hash": {
"description": "device-mapper region hash",
"depends": "dm-log"
},
"dm-round-robin": {
"description": "device-mapper round-robin multipath path selector",
"depends": "dm-multipath"
},
"dm-service-time": {
"description": "device-mapper throughput oriented path selector",
"depends": "dm-multipath"
},
"dm9601": {
"description": "Davicom DM96xx USB 10/100 ethernet devices",
"depends": "usbnet,usbcore,mii"
},
"dme1737": {
"description": "DME1737 sensors",
"depends": "hwmon-vid"
},
"drm": {
"description": "DRM panel infrastructure",
"depends": "drm_panel_orientation_quirks"
},
"drm_kms_helper": {
"description": "DRM KMS helper",
"depends": "drm,fb,fb_sys_fops,cfbfillrect,syscopyarea,cfbimgblt,sysfillrect,sysimgblt,cfbcopyarea"
},
"drm_panel_orientation_quirks": {
"description": "",
"depends": ""
},
"dvb-core": {
"description": "DVB Core Driver",
"depends": ""
},
"dvb-usb-dib0700": {
"description": "Driver for devices based on DiBcom DiB0700 - USB bridge",
"depends": "dib7000m,dib9000,dibx000_common,dvb-usb,dib0090,dib0070,dib3000mc,usbcore,rc-core"
},
"dvb-usb-dvbsky": {
"description": "Driver for DVBSky USB",
"depends": "dvb_usb_v2,dvb-core,usbcore,rc-core,m88ds3103"
},
"dvb-usb": {
"description": "A library module containing commonly used USB and DVB function USB DVB devices",
"depends": "rc-core,dvb-core,usbcore"
},
"dvb_usb_v2": {
"description": "DVB USB common",
"depends": "rc-core,dvb-core,usbcore"
},
"e1000": {
"description": "Intel(R) PRO/1000 Network Driver",
"depends": ""
},
"e1000e": {
"description": "Intel(R) PRO/1000 Network Driver",
"depends": ""
},
"eeprom_93cx6": {
"description": "EEPROM 93cx6 chip driver",
"depends": ""
},
"efifb": {
"description": "EFI framebuffer driver (Compiled by RR for DSM)",
"depends": "cfbimgblt,cfbcopyarea,cfbfillrect,fb"
},
"ehci-hcd": {
"description": "USB 2.0 'Enhanced' Host Controller (EHCI) Driver",
"depends": "usbcore"
},
"ehci-pci": {
"description": "EHCI PCI platform driver",
"depends": "usbcore,ehci-hcd"
},
"evbug": {
"description": "Input driver event debug module",
"depends": ""
},
"evdev": {
"description": "Input driver event char devices",
"depends": ""
},
"exfat": {
"description": "exFAT filesystem support",
"depends": ""
},
"f71882fg": {
"description": "F71882FG Hardware Monitoring Driver",
"depends": ""
},
"f75375s": {
"description": "F75373/F75375/F75387 hardware monitoring driver",
"depends": ""
},
"fb": {
"description": "",
"depends": ""
},
"fb_defio": {
"description": "Deferred IO for framebuffers",
"depends": ""
},
"fb_sys_fops": {
"description": "Generic file read (fb in system RAM)",
"depends": ""
},
"fbcon": {
"description": "Framebuffer Console support (Compiled by RR for DSM)",
"depends": "fb,font,bitblit"
},
"fbcon_ccw": {
"description": "Console Rotation (270 degrees) Support",
"depends": "fb,softcursor"
},
"fbcon_cw": {
"description": "Console Rotation (90 degrees) Support",
"depends": "fb,softcursor"
},
"fbcon_rotate": {
"description": "Console Rotation Support",
"depends": "fbcon_ud,fbcon_ccw,fbcon_cw"
},
"fbcon_ud": {
"description": "Console Rotation (180 degrees) Support",
"depends": "fb,softcursor"
},
"fbdev": {
"description": "",
"depends": ""
},
"font": {
"description": "Console Fonts",
"depends": ""
},
"ftdi_sio": {
"description": "USB FTDI Serial Converters Driver",
"depends": "usbserial,usbcore"
},
"hpsa": {
"description": "Driver for HP Smart Array Controller version 3.4.14-0",
"depends": "scsi_transport_sas"
},
"hvc_console": {
"description": "Hypervisor Virtual Console Driver (Compiled by RR for DSM)",
"depends": ""
},
"hwmon-vid": {
"description": "hwmon-vid driver",
"depends": ""
},
"i40e": {
"description": "Intel(R) 40-10 Gigabit Ethernet Connection Network Driver",
"depends": "vxlan,intel_auxiliary"
},
"i8042": {
"description": "i8042 keyboard and mouse controller driver",
"depends": ""
},
"i915": {
"description": "Intel Graphics",
"depends": "drm_kms_helper,drm,iosf_mbi,backlight,video,fb,button,i2c-algo-bit"
},
"iavf": {
"description": "Intel(R) Ethernet Adaptive Virtual Function Driver",
"depends": "auxiliary"
},
"ib_addr": {
"description": "IB Address Translation",
"depends": "ipv6"
},
"ib_cm": {
"description": "InfiniBand CM",
"depends": "ib_core,ib_mad,ib_sa"
},
"ib_core": {
"description": "core kernel InfiniBand API",
"depends": "ib_addr"
},
"ib_mad": {
"description": "kernel IB MAD API",
"depends": "ib_core"
},
"ib_sa": {
"description": "InfiniBand subnet administration query support",
"depends": "ib_core,ib_mad"
},
"ib_umad": {
"description": "InfiniBand userspace MAD packet access",
"depends": "ib_mad,ib_core"
},
"ib_uverbs": {
"description": "InfiniBand userspace verbs access",
"depends": "ib_core"
},
"ice": {
"description": "Intel(R) Ethernet Connection E800 Series Linux Driver",
"depends": "vxlan,auxiliary"
},
"igb": {
"description": "Intel(R) Gigabit Ethernet Linux Driver",
"depends": ""
},
"igbvf": {
"description": "Intel(R) Gigabit Virtual Function Network Driver",
"depends": ""
},
"igc": {
"description": "Intel(R) 2.5G Ethernet Linux Driver (Compiled by RR for DSM)",
"depends": ""
},
"intel_auxiliary": {
"description": "Auxiliary Bus Standalone",
"depends": ""
},
"iosf_mbi": {
"description": "IOSF Mailbox Interface accessor",
"depends": ""
},
"ipv6": {
"description": "IPv6 protocol stack for Linux",
"depends": ""
},
"irqbypass": {
"description": "IRQ bypass manager utility module",
"depends": ""
},
"iscsi_tcp": {
"description": "iSCSI/TCP data-path",
"depends": "libiscsi,libiscsi_tcp"
},
"it87": {
"description": "IT8705F/IT871xF/IT872xF hardware monitoring driver (Compiled by RR for DSM)",
"depends": "hwmon-vid"
},
"iw_cm": {
"description": "iWARP CM",
"depends": "ib_core"
},
"ixgb": {
"description": "Intel(R) PRO/10GbE Network Driver",
"depends": ""
},
"ixgbe": {
"description": "Intel(R) 10GbE PCI Express Linux Network Driver",
"depends": "vxlan"
},
"ixgbevf": {
"description": "Intel(R) 10 Gigabit Virtual Function Network Driver",
"depends": ""
},
"jc42": {
"description": "JC42 driver",
"depends": ""
},
"jme": {
"description": "JMicron JMC2x0 PCI Express Ethernet driver",
"depends": "mii"
},
"kvm-intel": {
"description": "",
"depends": "kvm"
},
"kvm": {
"description": "",
"depends": "irqbypass"
},
"libiscsi": {
"description": "iSCSI library functions",
"depends": ""
},
"libiscsi_tcp": {
"description": "iSCSI/TCP data-path",
"depends": "libiscsi"
},
"libphy": {
"description": "PHY library",
"depends": ""
},
"libsas": {
"description": "SAS Transport Layer",
"depends": "scsi_transport_sas"
},
"lm75": {
"description": "LM75 driver",
"depends": ""
},
"lm78": {
"description": "LM78/LM79 driver",
"depends": "hwmon-vid"
},
"lm90": {
"description": "LM90/ADM1032 driver",
"depends": ""
},
"lm95245": {
"description": "LM95235/LM95245 sensor driver",
"depends": ""
},
"m88ds3103": {
"description": "Montage Technology M88DS3103 DVB-S/S2 demodulator driver",
"depends": "regmap-i2c,dvb-core"
},
"mdio": {
"description": "Generic support for MDIO-compatible transceivers",
"depends": ""
},
"megaraid": {
"description": "LSI Logic MegaRAID legacy driver (Compiled by RR for DSM)",
"depends": ""
},
"megaraid_mbox": {
"description": "LSI Logic MegaRAID Mailbox Driver (Compiled by RR for DSM)",
"depends": "megaraid_mm"
},
"megaraid_mm": {
"description": "LSI Logic Management Module (Compiled by RR for DSM)",
"depends": ""
},
"megaraid_sas": {
"description": "Broadcom MegaRAID SAS Driver (Compiled by RR for DSM)",
"depends": ""
},
"mii": {
"description": "MII hardware support library",
"depends": ""
},
"mlx4_core": {
"description": "Mellanox ConnectX HCA low-level driver (Compiled by RR for DSM)",
"depends": ""
},
"mlx4_en": {
"description": "Mellanox ConnectX HCA Ethernet driver (Compiled by RR for DSM)",
"depends": "mlx4_core"
},
"mlx4_ib": {
"description": "Mellanox ConnectX HCA InfiniBand driver",
"depends": "mlx4_core,ib_core,ib_mad,ib_sa"
},
"mlx5_core": {
"description": "Mellanox Connect-IB, ConnectX-4 core driver",
"depends": ""
},
"mlx5_ib": {
"description": "Mellanox Connect-IB HCA IB driver",
"depends": "mlx5_core,ib_core"
},
"mlxsw_core": {
"description": "Mellanox switch device core driver",
"depends": ""
},
"mlxsw_pci": {
"description": "Mellanox switch PCI interface driver",
"depends": "mlxsw_core"
},
"mmc_block": {
"description": "Multimedia Card (MMC) block device driver",
"depends": "mmc_core"
},
"mmc_core": {
"description": "MMC/SD/SDIO core (Compiled by RR for DSM)",
"depends": ""
},
"mpt3sas": {
"description": "LSI MPT Fusion SAS 3.0 & SAS 3.5 Device Driver (Compiled by RR for DSM)",
"depends": "scsi_transport_sas,raid_class"
},
"mptbase": {
"description": "Fusion MPT base driver",
"depends": ""
},
"mptctl": {
"description": "Fusion MPT misc device (ioctl) driver",
"depends": "mptbase"
},
"mptsas": {
"description": "Fusion MPT SAS Host driver",
"depends": "mptscsih,mptbase,scsi_transport_sas"
},
"mptscsih": {
"description": "Fusion MPT SCSI Host driver",
"depends": "mptbase"
},
"mptspi": {
"description": "Fusion MPT SPI Host driver",
"depends": "mptscsih,mptbase,scsi_transport_spi"
},
"mtk-sd": {
"description": "MediaTek SD/MMC Card Driver",
"depends": "mmc_core"
},
"mvsas": {
"description": "Marvell 88SE6440 SAS/SATA controller driver (Compiled by RR for DSM)",
"depends": "libsas,scsi_transport_sas"
},
"nct6683": {
"description": "NCT6683D driver",
"depends": ""
},
"nct6775": {
"description": "Driver for NCT6775F and compatible chips (Compiled by RR for DSM)",
"depends": "hwmon-vid"
},
"netxen_nic": {
"description": "QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver",
"depends": ""
},
"phy-mt65xx-usb3": {
"description": "mt65xx USB PHY driver",
"depends": ""
},
"phy": {
"description": "USB phy handling",
"depends": ""
},
"pl2303": {
"description": "Prolific PL2303 USB to serial adaptor driver",
"depends": "usbserial,usbcore"
},
"pmbus": {
"description": "Generic PMBus driver",
"depends": "pmbus_core"
},
"pmbus_core": {
"description": "PMBus core driver",
"depends": ""
},
"processor": {
"description": "ACPI Processor Driver",
"depends": ""
},
"qcaspi": {
"description": "Qualcomm Atheros SPI Driver",
"depends": ""
},
"qed": {
"description": "QLogic FastLinQ 4xxxx Core Module",
"depends": ""
},
"qede": {
"description": "QLogic FastLinQ 4xxxx Ethernet Driver",
"depends": "vxlan,qed"
},
"qla3xxx": {
"description": "QLogic ISP3XXX Network Driver v2.03.00-k5 ",
"depends": ""
},
"qlcnic": {
"description": "QLogic 1/10 GbE Converged/Intelligent Ethernet Driver",
"depends": ""
},
"qlge": {
"description": "QLogic 10 Gigabit PCI-E Ethernet Driver ",
"depends": ""
},
"r8125": {
"description": "Realtek r8125 Ethernet controller driver (Compiled by RR for DSM)",
"depends": ""
},
"r8125_v9": {
"description": "Realtek RTL8125 2.5Gigabit Ethernet driver (Compiled by RR for DSM)",
"depends": ""
},
"r8152": {
"description": "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters (Compiled by RR for DSM)",
"depends": "usbcore"
},
"r8168": {
"description": "RealTek RTL-8168 Gigabit Ethernet driver (Compiled by RR for DSM)",
"depends": ""
},
"r8169": {
"description": "RealTek RTL-8169 Gigabit Ethernet driver (Compiled by RR for DSM)",
"depends": ""
},
"r8169_lk": {
"description": "RealTek RTL-8169 Gigabit Ethernet driver (Compiled by RR for DSM)",
"depends": "mii"
},
"raid_class": {
"description": "RAID device class",
"depends": ""
},
"rc-core": {
"description": "Linux Infrared Remote Control (Compiled by RR for DSM)",
"depends": ""
},
"realtek": {
"description": "Realtek PHY driver",
"depends": "libphy"
},
"regmap-i2c": {
"description": "I2C bus support for the regmap API (Compiled by RR for DSM)",
"depends": ""
},
"rndis_host": {
"description": "USB Host side RNDIS driver",
"depends": "usbnet,usbcore,cdc_ether"
},
"rtc-cmos": {
"description": "Driver for PC-style 'CMOS' RTCs",
"depends": ""
},
"rtsx_pci": {
"description": "Realtek PCI-E Card Reader Driver",
"depends": ""
},
"rtsx_pci_sdmmc": {
"description": "Realtek PCI-E SD/MMC Card Host Driver",
"depends": "rtsx_pci,mmc_core"
},
"rtsx_usb": {
"description": "Realtek USB Card Reader Driver",
"depends": "usbcore"
},
"rtsx_usb_sdmmc": {
"description": "Realtek USB SD/MMC Card Host Driver",
"depends": "rtsx_usb,mmc_core"
},
"scsi_transport_sas": {
"description": "SAS Transport Attributes",
"depends": ""
},
"scsi_transport_spi": {
"description": "SPI Transport Attributes",
"depends": ""
},
"sdhci-acpi": {
"description": "Secure Digital Host Controller Interface ACPI driver",
"depends": "sdhci,mmc_core,iosf_mbi"
},
"sdhci-pci-data": {
"description": "MMC/SDHCI PCI Data",
"depends": ""
},
"sdhci-pci": {
"description": "Secure Digital Host Controller Interface PCI driver",
"depends": "sdhci,mmc_core,sdhci-pci-data"
},
"sdhci-pltfm": {
"description": "SDHCI platform and OF driver helper",
"depends": "sdhci"
},
"sdhci": {
"description": "Secure Digital Host Controller Interface core driver",
"depends": "mmc_core"
},
"sdio_uart": {
"description": "SDIO UART driver (Compiled by RR for DSM)",
"depends": "mmc_core"
},
"sg": {
"description": "SCSI generic (sg) driver",
"depends": ""
},
"si2157": {
"description": "Silicon Labs Si2146/2147/2148/2157/2158 silicon tuner driver",
"depends": ""
},
"si2168": {
"description": "Silicon Labs Si2168 DVB-T/T2/C demodulator driver",
"depends": ""
},
"skge": {
"description": "SysKonnect Gigabit Ethernet driver",
"depends": ""
},
"sky2": {
"description": "Marvell Yukon 2 Gigabit Ethernet driver",
"depends": ""
},
"softcursor": {
"description": "Generic software cursor",
"depends": "fb"
},
"sp2": {
"description": "CIMaX SP2/HF CI driver",
"depends": "dvb-core"
},
"sr_mod": {
"description": "SCSI cdrom (sr) driver",
"depends": ""
},
"ssb": {
"description": "Sonics Silicon Backplane driver",
"depends": ""
},
"syscopyarea": {
"description": "Generic copyarea (sys-to-sys)",
"depends": ""
},
"sysfillrect": {
"description": "Generic fill rectangle (sys-to-sys)",
"depends": ""
},
"sysimgblt": {
"description": "1-bit/8-bit to 1-32 bit color expansion (sys-to-sys)",
"depends": ""
},
"tg3": {
"description": "Broadcom Tigon3 ethernet driver",
"depends": "libphy"
},
"thermal": {
"description": "ACPI Thermal Zone Driver",
"depends": ""
},
"tps65217": {
"description": "TPS65217 chip family multi-function driver",
"depends": "regmap-i2c"
},
"ts2020": {
"description": "Montage Technology TS2020 - Silicon tuner driver module",
"depends": "regmap-i2c"
},
"uhci-hcd": {
"description": "USB Universal Host Controller Interface driver",
"depends": "usbcore"
},
"usbnet": {
"description": "USB network driver framework",
"depends": "usbcore,mii"
},
"usbserial": {
"description": "USB Serial Driver core",
"depends": "usbcore"
},
"ushc": {
"description": "USB SD Host Controller driver",
"depends": "usbcore,mmc_core"
},
"vesafb": {
"description": "",
"depends": ""
},
"vfio": {
"description": "VFIO - User Level meta-driver",
"depends": ""
},
"vga16fb": {
"description": "Legacy VGA framebuffer device driver",
"depends": "cfbfillrect,cfbimgblt,cfbcopyarea,fb,vgastate"
},
"vgastate": {
"description": "VGA State Save/Restore",
"depends": ""
},
"via-sdmmc": {
"description": "VIA SD/MMC Card Interface driver",
"depends": "mmc_core"
},
"video": {
"description": "ACPI Video Driver",
"depends": "backlight"
},
"virtio": {
"description": "",
"depends": ""
},
"virtio_blk": {
"description": "Virtio block driver",
"depends": ""
},
"virtio_console": {
"description": "Virtio console driver",
"depends": ""
},
"virtio_input": {
"description": "Virtio input device driver",
"depends": "virtio,virtio_ring"
},
"virtio_mmio": {
"description": "Platform bus driver for memory mapped virtio devices",
"depends": ""
},
"virtio_net": {
"description": "Virtio network driver",
"depends": ""
},
"virtio_pci": {
"description": "virtio-pci",
"depends": ""
},
"virtio_ring": {
"description": "",
"depends": ""
},
"virtio_scsi": {
"description": "Virtio SCSI HBA driver",
"depends": ""
},
"vmw_pvscsi": {
"description": "VMware PVSCSI driver",
"depends": ""
},
"vmw_vmci": {
"description": "VMware Virtual Machine Communication Interface.",
"depends": ""
},
"vmxnet3": {
"description": "VMware vmxnet3 virtual NIC driver",
"depends": ""
},
"vub300": {
"description": "VUB300 USB to SD/MMC/SDIO adapter driver",
"depends": "usbcore,mmc_core"
},
"w83781d": {
"description": "W83781D driver",
"depends": "hwmon-vid"
},
"w83793": {
"description": "w83793 driver",
"depends": "hwmon-vid"
},
"wireguard": {
"description": "WireGuard secure network tunnel",
"depends": "ipv6,udp_tunnel,ip6_udp_tunnel"
},
"xz_dec": {
"description": "XZ decompressor",
"depends": ""
}
},
"apollolake-4.4.302": {
"8139cp": {
"description": "RealTek RTL-8139C+ series 10/100 PCI Ethernet driver",
"depends": "mii"
},
"9p": {
"description": "9P2000 filesystem support (Compiled by RR for DSM)",
"depends": "9pnet"
},
"9pnet": {
"description": "9P2000 filesystem support (Compiled by RR for DSM)",
"depends": ""
},
"9pnet_virtio": {
"description": "Virtio 9p Transport",
"depends": "9pnet,virtio,virtio_ring"
},
"aacraid": {
"description": "Dell PERC2, 2/Si, 3/Si, 3/Di, Adaptec Advanced Raid Products, HP NetRAID-4M, IBM ServeRAID & ICP SCSI driver (Compiled by RR for DSM)",
"depends": ""
},
"acpi-cpufreq": {
"description": "ACPI Processor P-States Driver",
"depends": ""
},
"adm1021": {
"description": "adm1021 driver",
"depends": ""
},
"adm1031": {
"description": "ADM1031/ADM1030 driver",
"depends": ""
},
"adm9240": {
"description": "ADM9240/DS1780/LM81 driver",
"depends": "hwmon-vid"
},
"adt7470": {
"description": "ADT7470 driver (Compiled by RR for DSM)",
"depends": ""
},
"adt7475": {
"description": "adt7475 driver (Compiled by RR for DSM)",
"depends": "hwmon-vid"
},
"aic94xx": {
"description": "Adaptec aic94xx SAS/SATA driver",
"depends": "libsas,scsi_transport_sas"
},
"alx": {
"description": "Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver",
"depends": "mdio"
},
"amd_nb": {
"description": "",
"depends": ""
},
"apex": {
"description": "Google Apex driver",
"depends": "gasket"
},