File: control

package info (click to toggle)
firmware-nonfree 0.43
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 49,736 kB
  • ctags: 42
  • sloc: python: 392; sh: 203; makefile: 43
file content (947 lines) | stat: -rw-r--r-- 41,763 bytes parent folder | download | duplicates (2)
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
Source: firmware-nonfree
Section: non-free/kernel
Priority: optional
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Uploaders: Bastian Blank <waldi@debian.org>, Frederik Schüler <fs@debian.org>, Steve Langasek <vorlon@debian.org>, dann frazier <dannf@debian.org>, maximilian attems <maks@debian.org>, Ben Hutchings <ben@decadent.org.uk>
Standards-Version: 3.9.5
Build-Depends: debhelper (>= 5)
Vcs-Svn: svn://svn.debian.org/kernel/dists/trunk/firmware-nonfree/
Vcs-Browser: http://anonscm.debian.org/viewvc/kernel/dists/trunk/firmware-nonfree/

Package: firmware-linux
Architecture: all
Section: non-free/metapackages
Depends: firmware-linux-free, firmware-linux-nonfree (= ${binary:Version}), ${misc:Depends}
Recommends: intel-microcode, amd64-microcode
Description: Binary firmware for various drivers in the Linux kernel (meta-package)
 This package depends on both free and non-free firmware which may be used
 with drivers in the Linux kernel.

Package: firmware-adi
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Analog Devices Inc. DSL modem chips
 This package contains the binary firmware for USB DSL modems with the
 Analog Devices Inc.  Eagle IV chip, supported by the ueagle-atm driver.
 .
 Contents:
  * Eagle IV ADSL configuration, generic (ueagle-atm/CMV4p.bin.v2)
  * Eagle IV ADSL DSP firmware (ueagle-atm/DSP4p.bin)
  * Eagle IV firmware (ueagle-atm/eagleIV.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-atheros
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Atheros wireless cards
 This package contains the binary firmware for USB wireless network and
 Bluetooth cards supported by the ar5523, ar9170, ath3k, ath6kl_sdio,
 ath6kl_usb or ath9k_htc drivers.
 .
 Contents:
  * Atheros AR3012 rev 01020001 patch (ar3k/AthrBT_0x01020001.dfu)
  * Atheros AR3012 rev 01020200 patch (ar3k/AthrBT_0x01020200.dfu)
  * Atheros AR3012 rev 01020201 patch (ar3k/AthrBT_0x01020201.dfu)
  * Atheros AR3012 rev 11020000 patch (ar3k/AthrBT_0x11020000.dfu)
  * Atheros AR3012 rev 31010000 patch (ar3k/AthrBT_0x31010000.dfu)
  * Atheros AR3012 rev 41020000 patch (ar3k/AthrBT_0x41020000.dfu)
  * Atheros AR3012 rev 01020001 config (ar3k/ramps_0x01020001_26.dfu)
  * Atheros AR3012 rev 01020200 26 MHz config
    (ar3k/ramps_0x01020200_26.dfu)
  * Atheros AR3012 rev 01020200 40 MHz config
    (ar3k/ramps_0x01020200_40.dfu)
  * Atheros AR3012 rev 01020201 26 MHz config
    (ar3k/ramps_0x01020201_26.dfu)
  * Atheros AR3012 rev 01020201 40 MHz config
    (ar3k/ramps_0x01020201_40.dfu)
  * Atheros AR3012 rev 11020000 config (ar3k/ramps_0x11020000_40.dfu)
  * Atheros AR3012 rev 31010000 config (ar3k/ramps_0x31010000_40.dfu)
  * Atheros AR3012 rev 41020000 config (ar3k/ramps_0x41020000_40.dfu)
  * Atheros AR5523 firmware (ar5523.bin)
  * Atheros AR7010 rev 1.0 firmware (ar7010.fw)
  * Atheros AR7010 rev 1.1 firmware (ar7010_1_1.fw)
  * Atheros AR9170 firmware (ar9170.fw)
  * Atheros AR9271 firmware (ar9271.fw)
  * Atheros AR3011 firmware (ath3k-1.fw)
  * ath6k/AR6003.1/hw2.1.1/athwlan.bin
  * ath6k/AR6003.1/hw2.1.1/bdata.SD31.bin
  * ath6k/AR6003.1/hw2.1.1/bdata.SD32.bin
  * ath6k/AR6003.1/hw2.1.1/bdata.WB31.bin
  * ath6k/AR6003.1/hw2.1.1/data.patch.bin
  * ath6k/AR6003.1/hw2.1.1/endpointping.bin
  * ath6k/AR6003.1/hw2.1.1/otp.bin
  * ath6k/AR6003/hw1.0/athwlan.bin.z77
  * ath6k/AR6003/hw1.0/bdata.SD31.bin
  * ath6k/AR6003/hw1.0/bdata.SD32.bin
  * ath6k/AR6003/hw1.0/bdata.WB31.bin
  * ath6k/AR6003/hw1.0/data.patch.bin
  * ath6k/AR6003/hw1.0/otp.bin.z77
  * ath6k/AR6003/hw2.0/athwlan.bin.z77
  * ath6k/AR6003/hw2.0/bdata.SD31.bin
  * ath6k/AR6003/hw2.0/bdata.SD32.bin
  * ath6k/AR6003/hw2.0/bdata.WB31.bin
  * ath6k/AR6003/hw2.0/data.patch.bin
  * ath6k/AR6003/hw2.0/otp.bin.z77
  * ath6k/AR6003/hw2.1.1/athwlan.bin
  * ath6k/AR6003/hw2.1.1/bdata.SD31.bin
  * ath6k/AR6003/hw2.1.1/bdata.SD32.bin
  * ath6k/AR6003/hw2.1.1/bdata.WB31.bin
  * ath6k/AR6003/hw2.1.1/data.patch.bin
  * ath6k/AR6003/hw2.1.1/endpointping.bin
  * ath6k/AR6003/hw2.1.1/fw-2.bin
  * ath6k/AR6003/hw2.1.1/fw-3.bin
  * ath6k/AR6003/hw2.1.1/otp.bin
  * ath6k/AR6004/hw1.2/bdata.bin
  * ath6k/AR6004/hw1.2/fw-2.bin
  * ath6k/AR6004/hw1.3/bdata.bin
  * ath6k/AR6004/hw1.3/fw-3.bin
  * Atheros AR7010 firmware, version 1.3 (htc_7010.fw)
  * Atheros AR9271 firmware, version 1.3 (htc_9271.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-bnx2
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Broadcom NetXtremeII
 This package contains the binary firmware for Broadcom NetXtremeII network
 adapters supported by the bnx2 driver.
 .
 Contents:
  * Broadcom NetXtremeII 5706/5708 firmware (mips), version Linux 2.6.32
    (bnx2/bnx2-mips-06-5.0.0.j3.fw)
  * Broadcom NetXtremeII 5706/5708 firmware (rv2p), version Linux 2.6.32
    (bnx2/bnx2-rv2p-06-5.0.0.j3.fw)
  * Broadcom NetXtremeII 5709/5716 firmware (mips), version Linux 2.6.32
    (bnx2/bnx2-mips-09-5.0.0.j3.fw)
  * Broadcom NetXtremeII 5709/5716 firmware (rv2p), version Linux 2.6.32
    (bnx2/bnx2-rv2p-09-5.0.0.j3.fw)
  * Broadcom NetXtremeII 5709 A0/A1 firmware (rv2p), version Linux
    2.6.32 (bnx2/bnx2-rv2p-09ax-5.0.0.j3.fw)
  * bnx2/bnx2-rv2p-06-6.0.15.fw
  * Broadcom NetXtremeII 5709/5716 firmware (rv2p), version Linux 2.6.37
    (bnx2/bnx2-rv2p-09-6.0.17.fw)
  * Broadcom NetXtremeII 5709 A0/A1 firmware (rv2p), version Linux
    2.6.37 (bnx2/bnx2-rv2p-09ax-6.0.17.fw)
  * Broadcom NetXtremeII 5706/5708 firmware (mips), version Linux 2.6.38
    (bnx2/bnx2-mips-06-6.2.1.fw)
  * Broadcom NetXtremeII 5706/5708 firmware (mips), version Linux 3.3
    (bnx2/bnx2-mips-06-6.2.3.fw)
  * Broadcom NetXtremeII 5709/5716 firmware (mips), version Linux 2.6.39
    (bnx2/bnx2-mips-09-6.2.1a.fw)
  * Broadcom NetXtremeII 5709/5716 firmware (mips), version Linux 3.3
    (bnx2/bnx2-mips-09-6.2.1b.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-bnx2x
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Broadcom NetXtreme II 10Gb
 This package contains the binary firmware for Broadcom NetXtreme II 10Gb
 network adapters supported by the bnx2x driver.
 .
 Contents:
  * Broadcom NetXtreme II 10Gb 57710, version 5.0.21.0
    (bnx2x-e1-5.0.21.0.fw)
  * Broadcom NetXtreme II 10Gb 57711, version 5.0.21.0
    (bnx2x-e1h-5.0.21.0.fw)
  * Broadcom NetXtreme II 10Gb 57710, version 7.0.29.0
    (bnx2x/bnx2x-e1-7.0.29.0.fw)
  * Broadcom NetXtreme II 10Gb 57711, version 7.0.29.0
    (bnx2x/bnx2x-e2-7.0.29.0.fw)
  * Broadcom NetXtreme II 10Gb 57712, version 7.0.29.0
    (bnx2x/bnx2x-e1h-7.0.29.0.fw)
  * Broadcom NetXtreme II 10Gb 57710, version 7.8.17.0
    (bnx2x/bnx2x-e1-7.8.17.0.fw)
  * Broadcom NetXtreme II 10Gb 57711, version 7.8.17.0
    (bnx2x/bnx2x-e2-7.8.17.0.fw)
  * Broadcom NetXtreme II 10Gb 57712, version 7.8.17.0
    (bnx2x/bnx2x-e1h-7.8.17.0.fw)
  * Broadcom NetXtreme II 10Gb 57710, version 7.8.19.0
    (bnx2x/bnx2x-e1-7.8.19.0.fw)
  * Broadcom NetXtreme II 10Gb 57711, version 7.8.19.0
    (bnx2x/bnx2x-e2-7.8.19.0.fw)
  * Broadcom NetXtreme II 10Gb 57712, version 7.8.19.0
    (bnx2x/bnx2x-e1h-7.8.19.0.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-brcm80211
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Broadcom 802.11 wireless cards
 This package contains the binary firmware for wireless network cards with
 the Broadcom BCM4313, BCM43224, BCM43225, BCM43241, BCM4329, BCM4330,
 BCM4334 or BCM4335 chips, supported by the brcmsmac or brcmfmac driver.
 .
 Contents:
  * Broadcom 802.11 firmware, version 610.812 (brcm/bcm43xx-0.fw)
  * Broadcom 802.11 firmware header, version 610.812
    (brcm/bcm43xx_hdr-0.fw)
  * Broadcom BCM43143 firmware (brcm/brcmfmac43143-sdio.bin)
  * Broadcom BCM43241 rev 0-3 firmware (brcm/brcmfmac43241b0-sdio.bin)
  * Broadcom BCM43241 rev 4+ firmware (brcm/brcmfmac43241b4-sdio.bin)
  * Broadcom BCM4329 firmware (brcm/brcmfmac4329-sdio.bin)
  * Broadcom BCM4330 firmware (brcm/brcmfmac4330-sdio.bin)
  * Broadcom BCM4334 firmware (brcm/brcmfmac4334-sdio.bin)
  * Broadcom BCM4335 firmware (brcm/brcmfmac4335-sdio.bin)
  * Broadcom BCM43362 firmware (brcm/brcmfmac43362-sdio.bin)
  * Broadcom BCM4354 firmware (brcm/brcmfmac4354-sdio.bin)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-intelwimax
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Intel WiMAX Connection
 This package contains the binary firmware for Intel WiMAX Connection
 devices supported by the i2400m-usb driver.
 .
 Contents:
  * Intel WiMAX Connection 2400 USB firmware, version 1.4
    (i2400m-fw-usb-1.4.sbcf)
  * Intel WiMAX Connection 2400 USB firmware, version 1.5
    (i2400m-fw-usb-1.5.sbcf)
  * Intel WiMAX/WiFi Link 6050 USB firmware, version 1.5
    (i6050-fw-usb-1.5.sbcf)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-ipw2x00
Architecture: all
Provides: 
Pre-Depends: debconf | debconf-2.0
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Intel Pro Wireless 2100, 2200 and 2915
 This package contains the binary firmware for Intel Pro Wireless 2100,
 2200 and 2915 cards supported by the ipw2100 and ipw2200 drivers.
 .
 Contents:
  * Intel Pro Wireless 2100 firmware (bootstrap), version 1.3
    (ipw2100-1.3.fw)
  * Intel Pro Wireless 2100 firmware (ibss mode), version 1.3
    (ipw2100-1.3-i.fw)
  * Intel Pro Wireless 2100 firmware (monitor mode), version 1.3
    (ipw2100-1.3-p.fw)
  * Intel Pro Wireless 2200/2915 firmware (bss), version 3.1
    (ipw2200-bss.fw)
  * Intel Pro Wireless 2200/2915 firmware (ibss), version 3.1
    (ipw2200-ibss.fw)
  * Intel Pro Wireless 2200/2915 firmware (snf), version 3.1
    (ipw2200-sniffer.fw)
 .
 This firmware is covered by the Intel Pro Wireless 2100 and 2200/2915
 License.  You must agree to the terms of this license before it is
 installed.
Homepage: http://ipw2100.sourceforge.net/firmware.php, http://ipw2200.sourceforge.net/firmware.php
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-ivtv
Architecture: all
Provides: 
Pre-Depends: debconf | debconf-2.0
Depends: ${misc:Depends}
Recommends: firmware-linux-nonfree (>= 0.38~)
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for iTVC15-family MPEG codecs (ivtv and pvrusb2 drivers)
 This package contains the binary firmware for TV cards with Conexant
 iTVC15-family MPEG codecs, supported by the ivtv and pvrusb2 drivers.
 .
 Contents:
  * Conexant CX23415/CX23416 MPEG codec (decoder) (v4l-cx2341x-dec.fw)
  * Conexant CX23415/CX23416 MPEG codec (encoder) (v4l-cx2341x-enc.fw)
  * Conexant CX23415/CX23416 MPEG codec (initialization)
    (v4l-cx2341x-init.mpg)
  * Hauppauge PVR USB2 24xxx models (v4l-pvrusb2-24xxx-01.fw)
  * Hauppauge PVR USB2 29xxx models (v4l-pvrusb2-29xxx-01.fw)
 .
 This firmware is covered by the Hauppauge End-User Firmware License
 Agreement.  You must agree to the terms of this license before it is
 installed.
Homepage: http://dl.ivtvdriver.org/ivtv/firmware/
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-iwlwifi
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Intel Wireless cards
 This package contains the binary firmware for Intel Wireless cards
 supported by the iwlegacy/iwl3945 and iwlwifi/iwlagn drivers.
 .
 Contents:
  * Intel Wireless 3160 rev 10 Bluetooth firmware patch
    (intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq)
  * Intel Wireless 7260 rev 10 WP2 B5 Bluetooth firmware path
    (intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq)
  * Intel Wireless 7260 rev 10 Bluetooth firmware patch
    (intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq)
  * Intel Wireless 7260 Bluetooth firmware generic patch
    (intel/ibt-hw-37.7.bseq)
  * Intel Wireless 7265 rev 10 Bluetooth firmware generic patch
    (intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq)
  * Intel Wireless 7265 Bluetooth firmware generic patch
    (intel/ibt-hw-37.8.bseq)
  * Intel Wireless 100 firmware, version 39.31.5.1 (iwlwifi-100-5.ucode)
  * Intel Wireless 105 firmware, version 18.168.6.1
    (iwlwifi-105-6.ucode)
  * Intel Wireless 135 firmware, version 18.168.6.1
    (iwlwifi-135-6.ucode)
  * Intel Wireless 1000 firmware, version 39.31.5.1
    (iwlwifi-1000-5.ucode)
  * Intel Wireless 2200 firmware, version 18.168.6.1
    (iwlwifi-2000-6.ucode)
  * Intel Wireless 2230 firmware, version 18.168.6.1
    (iwlwifi-2030-6.ucode)
  * Intel Wireless 3160 firmware, version 22.1.7.0
    (iwlwifi-3160-7.ucode)
  * Intel Wireless 3160 firmware, version 22.24.8.0
    (iwlwifi-3160-8.ucode)
  * Intel Wireless 3160 firmware, version 23.214.9.0
    (iwlwifi-3160-9.ucode)
  * Intel Wireless 3945 firmware, version 15.32.2.9
    (iwlwifi-3945-2.ucode)
  * Intel Wireless 4965 firmware, version 228.61.2.24
    (iwlwifi-4965-2.ucode)
  * Intel Wireless 5100, 5300 and 5350 firmware, version 8.24.2.12
    (iwlwifi-5000-2.ucode)
  * Intel Wireless 5100, 5300 and 5350 firmware, version 8.83.5.1
    (iwlwifi-5000-5.ucode)
  * Intel Wireless 5150 firmware, version 8.24.2.2
    (iwlwifi-5150-2.ucode)
  * Intel Wireless 6000 firmware, version 9.221.4.1
    (iwlwifi-6000-4.ucode)
  * Intel Wireless 6005/6205 firmware, version 17.168.5.3
    (iwlwifi-6000g2a-5.ucode)
  * Intel Wireless 6005/6205 firmware, version 18.168.6.1
    (iwlwifi-6000g2a-6.ucode)
  * Intel Wireless 6030 firmware, version 18.168.6.1
    (iwlwifi-6000g2b-6.ucode)
  * Intel Wireless 6250 firmware, version 9.201.4.1
    (iwlwifi-6050-4.ucode)
  * Intel Wireless 6250 firmware, version 41.28.5.1
    (iwlwifi-6050-5.ucode)
  * Intel Wireless 7260 firmware, version 22.1.7.0
    (iwlwifi-7260-7.ucode)
  * Intel Wireless 7260 firmware, version 22.24.8.0
    (iwlwifi-7260-8.ucode)
  * Intel Wireless 7260 firmware, version 23.214.9.0
    (iwlwifi-7260-9.ucode)
  * Intel Wireless 7265 firmware, version 22.24.8.0
    (iwlwifi-7265-8.ucode)
  * Intel Wireless 7265 firmware, version 23.214.9.0
    (iwlwifi-7265-9.ucode)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-libertas
Architecture: all
Provides: libertas-firmware
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: libertas-firmware
Breaks: libertas-firmware (<< 9.70.7.p0.0-2)
Conflicts: 
Description: Binary firmware for Marvell Libertas 8xxx wireless cards
 This package contains the binary firmware for wireless network cards with
 Marvell Libertas 8xxx chips supported by the libertas_cs, libertas_sdio,
 libertas_spi, libertas_tf_usb, mwifiex_sdio, mwifiex_usb, mwl8k and
 usb8xxx drivers.
 .
 Contents:
  * USB8388 'Thinfirm' firmware (lbtf_usb.bin)
  * CF8381 main code (libertas/cf8381.bin)
  * CF8381 boot code (libertas/cf8381_helper.bin)
  * CF8385 main code (libertas/cf8385.bin, libertas_cs.fw)
  * CF8385 boot code (libertas/cf8385_helper.bin, libertas_cs_helper.fw)
  * GSPI8686 main code, version 9.x (libertas/gspi8686_v9.bin,
    libertas/gspi8686.bin)
  * GSPI8686 boot code, version 9.x (libertas/gspi8686_v9_helper.bin,
    libertas/gspi8686_hlp.bin)
  * GSPI8688 main code (libertas/gspi8688.bin)
  * GSPI8688 boot code (libertas/gspi8688_helper.bin)
  * SD8385 main code (libertas/sd8385.bin, sd8385.bin)
  * SD8385 boot code (libertas/sd8385_helper.bin, sd8385_helper.bin)
  * SD8686 main code, version 8.x (libertas/sd8686_v8.bin, sd8686.bin)
  * SD8686 boot code, version 8.x (libertas/sd8686_v8_helper.bin,
    sd8686_helper.bin)
  * SD8686 main code, version 9.x (libertas/sd8686_v9.bin)
  * SD8686 boot code, version 9.x (libertas/sd8686_v9_helper.bin)
  * USB8388 OLPC firmware, version 5.110.22.p23
    (libertas/usb8388_olpc.bin)
  * USB8388 firmware, version 5.x (libertas/usb8388_v5.bin, usb8388.bin)
  * USB8388 firmware, version 9.x (libertas/usb8388_v9.bin)
  * USB8682 firmware (libertas/usb8682.bin)
  * PCIE8897 firmware, version 15.69.2.p11 (WLAN) / 15.28.2.p11 (BT)
    (mrvl/pcie8897_uapsta.bin)
  * SD8688 main code (mrvl/sd8688.bin, sd8688.bin, libertas/sd8688.bin)
  * SD8688 boot code (mrvl/sd8688_helper.bin, sd8688_helper.bin,
    libertas/sd8688_helper.bin)
  * SD8787 firmware, version 14.66.9.p96 (mrvl/sd8787_uapsta.bin)
  * SD8797 firmware, version 14.66.11.p151 (mrvl/sd8797_uapsta.bin)
  * SD8897 firmware, version 15.69.2.p11 (WLAN) / 15.28.2.p11 (BT)
    (mrvl/sd8897_uapsta.bin)
  * USB8797 firmware, version 14.69.11.p179 (mrvl/usb8797_uapsta.bin)
  * MWL8366 main code (mwl8k/fmimage_8366.fw)
  * MWL8366 AP-mode main code (mwl8k/fmimage_8366_ap-2.fw)
  * MWL8366 AP-mode main code, version 5.2.8.16
    (mwl8k/fmimage_8366_ap-3.fw)
  * MWL8687 main code (mwl8k/fmimage_8687.fw)
  * MWL8764 AP-mode firmware, version 7.4.0.9
    (mwl8k/fmimage_8764_ap-1.fw)
  * MWL8366 boot code (mwl8k/helper_8366.fw)
  * MWL8687 boot code (mwl8k/helper_8687.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-linux-nonfree
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: firmware-linux (<< 0.19), firmware-ivtv (<< 0.38~)
Breaks: firmware-linux (<< 0.19), firmware-ivtv (<< 0.38~)
Conflicts: 
Description: Binary firmware for various drivers in the Linux kernel
 This package contains the binary firmware for  various drivers in the
 Linux kernel.  This is a collection of firmware blobs which are not
 individually large enough to warrant a standalone package.
 .
 Contents:
  * 3Com Typhoon firmware, version 03.001.008 (3com/typhoon.bin)
  * AdvanSys ASC-3550 firmware (advansys/3550.bin)
  * AdvanSys ASC-38C0800 firmware (advansys/38C0800.bin)
  * AdvanSys ASC-38C1600 firmware (advansys/38C1600.bin)
  * AdvanSys SCSI controller microcode (advansys/mcode.bin)
  * Agere/Prism/Symbol Orinoco firmware (AP mode), version 9.48 Hermes I
    (agere_ap_fw.bin)
  * Agere/Prism/Symbol Orinoco firmware (STA mode), version 9.48 Hermes
    I (agere_sta_fw.bin)
  * Chelsio T3 optical EDC firmware (AEL2005 PHY)
    (cxgb3/ael2005_opt_edc.bin)
  * Chelsio T3 twinax EDC firmware (AEL2005 PHY)
    (cxgb3/ael2005_twx_edc.bin)
  * Chelsio T3 twinax EDC firmware (AEL2020 PHY)
    (cxgb3/ael2020_twx_edc.bin)
  * Chelsio T3B protocol engine firmware, version 1.1.0
    (cxgb3/t3b_psram-1.1.0.bin)
  * Chelsio T3C protocol engine firmware, version 1.1.0
    (cxgb3/t3c_psram-1.1.0.bin)
  * Chelsio T3 main firmware, version 7.4.0 (cxgb3/t3fw-7.4.0.bin)
  * Chelsio T3 main firmware, version 7.10.0 (cxgb3/t3fw-7.10.0.bin)
  * Chelsio T3 main firmware, version 7.12.0 (cxgb3/t3fw-7.12.0.bin)
  * Chelsio T4 firmware, version 1.9.23.0 (cxgb4/t4fw-1.9.23.0.bin,
    cxgb4/t4fw.bin)
  * Chelsio T5 firmware, version 1.9.23.0 (cxgb4/t5fw-1.9.23.0.bin,
    cxgb4/t5fw.bin)
  * DAB-USB FPGA bitfile (dabusb/bitstream.bin)
  * DAB-USB firmware (dabusb/firmware.fw)
  * Xceive 5000 tuner firmware, version 1.6.114
    (dvb-fe-xc5000-1.6.114.fw)
  * DiBcom dib0700 USB DVB bridge firmware, version 1.20
    (dvb-usb-dib0700-1.20.fw)
  * Intel 82559 D101M microcode (e100/d101m_ucode.bin)
  * Intel 82559 D101S microcode (e100/d101s_ucode.bin)
  * Intel 82551-F and 82551-10 microcode (e100/d102e_ucode.bin)
  * ENE UB6250 MS Pro read/write firmware (ene-ub6250/msp_rdwr.bin)
  * ENE UB6250 MS init firmware (ene-ub6250/ms_init.bin)
  * ENE UB6250 MS read/write firmware (ene-ub6250/ms_rdwr.bin)
  * ENE UB6250 SD init stage 1 firmware (ene-ub6250/sd_init1.bin)
  * ENE UB6250 SD init stage 2 firmware (ene-ub6250/sd_init2.bin)
  * ENE UB6250 SD read/write firmware (ene-ub6250/sd_rdwr.bin)
  * kaweth/new_code.bin
  * kaweth/new_code_fix.bin
  * kaweth/trigger_code.bin
  * kaweth/trigger_code_fix.bin
  * Matrox G200 WARP engine microcode (matrox/g200_warp.fw)
  * Matrox G400/G550 WARP engine microcode (matrox/g400_warp.fw)
  * Multi-Tech USB CDMA modem firmware (mts_cdma.fw)
  * Multi-Tech USB EDGE modem firmware (mts_edge.fw)
  * Multi-Tech USB GPRS modem firmware (mts_gsm.fw)
  * Rage 128 CCE microcode (r128/r128_cce.bin)
  * Radeon HD IGP 7500/7600 series ME microcode (radeon/ARUBA_me.bin)
  * Radeon HD IGP 7500/7600 series PFP microcode (radeon/ARUBA_pfp.bin)
  * Radeon HD IGP 7500/7600 series RLC microcode (radeon/ARUBA_rlc.bin)
  * Radeon HD 6800 series MC microcode (radeon/BARTS_mc.bin)
  * Radeon HD 6800 series ME microcode (radeon/BARTS_me.bin)
  * Radeon HD 6800 series PFP microcode (radeon/BARTS_pfp.bin)
  * Radeon HD 6800 series SMC microcode (radeon/BARTS_smc.bin)
  * Radeon HD 7790/8770/8950 CE microcode (radeon/BONAIRE_ce.bin)
  * Radeon HD 7790/8770/8950 MC microcode, version 1
    (radeon/BONAIRE_mc.bin)
  * Radeon HD 7790/8770/8950 MC microcode, version 2
    (radeon/BONAIRE_mc2.bin)
  * Radeon HD 7790/8770/8950 ME microcode (radeon/BONAIRE_me.bin)
  * Radeon HD 7790/8770/8950 MEC microcode (radeon/BONAIRE_mec.bin)
  * Radeon HD 7790/8770/8950 PFP microcode (radeon/BONAIRE_pfp.bin)
  * Radeon HD 7790/8770/8950 RLC microcode (radeon/BONAIRE_rlc.bin)
  * Radeon HD 7790/8770/8950 SDMA microcode (radeon/BONAIRE_sdma.bin)
  * Radeon HD 7790/8770/8950 series SMC microcode
    (radeon/BONAIRE_smc.bin)
  * Radeon HD 7790/8770/8950, 8100/8200/8300/8400 series, and
    "Mullins"/"Beema" IGP UVD microcode (radeon/BONAIRE_uvd.bin)
  * Radeon HD VCE microcode (radeon/BONAIRE_vce.bin)
  * Radeon HD 6300/6500/6800 series RLC microcode (radeon/BTC_rlc.bin)
  * Radeon HD 6300 series MC microcode (radeon/CAICOS_mc.bin)
  * Radeon HD 6300 series ME microcode (radeon/CAICOS_me.bin)
  * Radeon HD 6300 series PFP microcode (radeon/CAICOS_pfp.bin)
  * Radeon HD 6300 series SMC microcode (radeon/CAICOS_smc.bin)
  * Radeon HD 6900 series MC microcode (radeon/CAYMAN_mc.bin)
  * Radeon HD 6900 series ME microcode (radeon/CAYMAN_me.bin)
  * Radeon HD 6900 series PFP microcode (radeon/CAYMAN_pfp.bin)
  * Radeon HD 6900 series RLC microcode (radeon/CAYMAN_rlc.bin)
  * Radeon HD 6900 series SMC microcode (radeon/CAYMAN_smc.bin)
  * Radeon HD 5400 series ME microcode (radeon/CEDAR_me.bin)
  * Radeon HD 5400 series PFP microcode (radeon/CEDAR_pfp.bin)
  * Radeon HD 5400 series RLC microcode (radeon/CEDAR_rlc.bin)
  * Radeon HD 5400 series SMC microcode (radeon/CEDAR_smc.bin)
  * Radeon HD 5800/5900 series ME microcode (radeon/CYPRESS_me.bin)
  * Radeon HD 5800/5900 series PFP microcode (radeon/CYPRESS_pfp.bin)
  * Radeon HD 5800/5900 series RLC microcode (radeon/CYPRESS_rlc.bin)
  * Radeon HD 5800/5900 series SMC microcode (radeon/CYPRESS_smc.bin)
  * Radeon HD 5x00 series UVD microcode (radeon/CYPRESS_uvd.bin)
  * Radeon HD 8500M series and R5 M200 CE microcode
    (radeon/HAINAN_ce.bin)
  * Radeon HD 8500M series and R5 M200 MC microcode, version 1
    (radeon/HAINAN_mc.bin)
  * Radeon HD 8500M series and R5 M200 MC microcode, version 2
    (radeon/HAINAN_mc2.bin)
  * Radeon HD 8500M series and R5 M200 ME microcode
    (radeon/HAINAN_me.bin)
  * Radeon HD 8500M series and R5 M200 PFP microcode
    (radeon/HAINAN_pfp.bin)
  * Radeon HD 8500M series and R5 M200 RLC microcode
    (radeon/HAINAN_rlc.bin)
  * Radeon HD 8500M series and R5 M200 SMC microcode
    (radeon/HAINAN_smc.bin)
  * Radeon R9 290 series CE microcode (radeon/HAWAII_ce.bin)
  * Radeon R9 290 series MC microcode, version 1 (radeon/HAWAII_mc.bin)
  * Radeon R9 290 series MC microcode, version 2 (radeon/HAWAII_mc2.bin)
  * Radeon R9 290 series ME microcode (radeon/HAWAII_me.bin)
  * Radeon R9 290 series MEC microcode (radeon/HAWAII_mec.bin)
  * Radeon R9 290 series PFP microcode (radeon/HAWAII_pfp.bin)
  * Radeon R9 290 series RLC microcode (radeon/HAWAII_rlc.bin)
  * Radeon R9 290 series SDMA microcode (radeon/HAWAII_sdma.bin)
  * Radeon R9 290 series SMC microcode (radeon/HAWAII_smc.bin)
  * Radeon HD 5700 series ME microcode (radeon/JUNIPER_me.bin)
  * Radeon HD 5700 series PFP microcode (radeon/JUNIPER_pfp.bin)
  * Radeon HD 5700 series RLC microcode (radeon/JUNIPER_rlc.bin)
  * Radeon HD 5700 series SMC microcode (radeon/JUNIPER_smc.bin)
  * Radeon HD 8100/8200/8300/8400 series CE microcode
    (radeon/KABINI_ce.bin)
  * Radeon HD 8100/8200/8300/8400 series ME microcode
    (radeon/KABINI_me.bin)
  * Radeon HD 8100/8200/8300/8400 series MEC microcode
    (radeon/KABINI_mec.bin)
  * Radeon HD 8100/8200/8300/8400 series PFP microcode
    (radeon/KABINI_pfp.bin)
  * Radeon HD 8100/8200/8300/8400 series RLC microcode
    (radeon/KABINI_rlc.bin)
  * Radeon HD 8100/8200/8300/8400 series SDMA microcode
    (radeon/KABINI_sdma.bin)
  * Radeon R5/R7 IGP 200 series CE microcode (radeon/KAVERI_ce.bin)
  * Radeon R5/R7 IGP 200 series ME microcode (radeon/KAVERI_me.bin)
  * Radeon R5/R7 IGP 200 series MEC microcode (radeon/KAVERI_mec.bin)
  * Radeon R5/R7 IGP 200 series PFP microcode (radeon/KAVERI_pfp.bin)
  * Radeon R5/R7 IGP 200 series RLC microcode (radeon/KAVERI_rlc.bin)
  * Radeon R5/R7 IGP 200 series SDMA microcode (radeon/KAVERI_sdma.bin)
  * Radeon "Mullins"/"Beema" IGP CE microcode (radeon/MULLINS_ce.bin)
  * Radeon "Mullins"/"Beema" IGP ME microcode (radeon/MULLINS_me.bin)
  * Radeon "Mullins"/"Beema" IGP MEC microcode (radeon/MULLINS_mec.bin)
  * Radeon "Mullins"/"Beema" IGP PFP microcode (radeon/MULLINS_pfp.bin)
  * Radeon "Mullins"/"Beema" IGP RLC microcode (radeon/MULLINS_rlc.bin)
  * Radeon "Mullins"/"Beema" IGP SDMA microcode
    (radeon/MULLINS_sdma.bin)
  * Radeon HD 8500/8600/8700 series CE microcode (radeon/OLAND_ce.bin)
  * Radeon HD 8500/8600/8700 series MC microcode, version 1
    (radeon/OLAND_mc.bin)
  * Radeon HD 8500/8600/8700 series MC microcode, version 2
    (radeon/OLAND_mc2.bin)
  * Radeon HD 8500/8600/8700 series ME microcode (radeon/OLAND_me.bin)
  * Radeon HD 8500/8600/8700 series PFP microcode (radeon/OLAND_pfp.bin)
  * Radeon HD 8500/8600/8700 series RLC microcode (radeon/OLAND_rlc.bin)
  * Radeon HD 8500/8600/8700 series SMC microcode (radeon/OLAND_smc.bin)
  * Radeon HD IGP 6200/6300/7300 series ME microcode
    (radeon/PALM_me.bin)
  * Radeon HD IGP 6200/6300/7300 series PFP microcode
    (radeon/PALM_pfp.bin)
  * Radeon HD 7800 series CE microcode (radeon/PITCAIRN_ce.bin)
  * Radeon HD 7800 series MC microcode, version 1
    (radeon/PITCAIRN_mc.bin)
  * Radeon HD 7800 series MC microcode, version 2
    (radeon/PITCAIRN_mc2.bin)
  * Radeon HD 7800 series ME microcode (radeon/PITCAIRN_me.bin)
  * Radeon HD 7800 series PFP microcode (radeon/PITCAIRN_pfp.bin)
  * Radeon HD 7800 series RLC microcode (radeon/PITCAIRN_rlc.bin)
  * Radeon HD 7800 series SMC microcode (radeon/PITCAIRN_smc.bin)
  * Radeon R100-family CP microcode (radeon/R100_cp.bin)
  * Radeon R200-family CP microcode (radeon/R200_cp.bin)
  * Radeon R300-family CP microcode (radeon/R300_cp.bin)
  * Radeon R400-family CP microcode (radeon/R420_cp.bin)
  * Radeon R500-family CP microcode (radeon/R520_cp.bin)
  * Radeon R600 ME microcode (radeon/R600_me.bin)
  * Radeon R600 PFP microcode (radeon/R600_pfp.bin)
  * Radeon R600-family RLC microcode (radeon/R600_rlc.bin)
  * Radeon R700-family RLC microcode (radeon/R700_rlc.bin)
  * Radeon HD 5500/5600 series ME microcode (radeon/REDWOOD_me.bin)
  * Radeon HD 5500/5600 series PFP microcode (radeon/REDWOOD_pfp.bin)
  * Radeon HD 5500/5600 series RLC microcode (radeon/REDWOOD_rlc.bin)
  * Radeon HD 5500/5600 series SMC microcode (radeon/REDWOOD_smc.bin)
  * Radeon RS600 CP microcode (radeon/RS600_cp.bin)
  * Radeon RS690 CP microcode (radeon/RS690_cp.bin)
  * Radeon RS780 ME microcode (radeon/RS780_me.bin)
  * Radeon RS780 PFP microcode (radeon/RS780_pfp.bin)
  * Radeon RV610 ME microcode (radeon/RV610_me.bin)
  * Radeon RV610 PFP microcode (radeon/RV610_pfp.bin)
  * Radeon RV620 ME microcode (radeon/RV620_me.bin)
  * Radeon RV620 PFP microcode (radeon/RV620_pfp.bin)
  * Radeon RV630 ME microcode (radeon/RV630_me.bin)
  * Radeon RV630 PFP microcode (radeon/RV630_pfp.bin)
  * Radeon RV635 ME microcode (radeon/RV635_me.bin)
  * Radeon RV635 PFP microcode (radeon/RV635_pfp.bin)
  * Radeon RV670 ME microcode (radeon/RV670_me.bin)
  * Radeon RV670 PFP microcode (radeon/RV670_pfp.bin)
  * Radeon RV710 ME microcode (radeon/RV710_me.bin)
  * Radeon RV710 PFP microcode (radeon/RV710_pfp.bin)
  * Radeon RV710 SMC microcode (radeon/RV710_smc.bin)
  * Radeon RV710/RV730/RV740 UVD microcode (radeon/RV710_uvd.bin)
  * Radeon RV730/RV740 ME microcode (radeon/RV730_me.bin)
  * Radeon RV730/RV740 PFP microcode (radeon/RV730_pfp.bin)
  * Radeon RV730 SMC microcode (radeon/RV730_smc.bin)
  * Radeon RV740 SMC microcode (radeon/RV740_smc.bin)
  * Radeon RV770 ME microcode (radeon/RV770_me.bin)
  * Radeon RV770 PFP microcode (radeon/RV770_pfp.bin)
  * Radeon RV770 SMC microcode (radeon/RV770_smc.bin)
  * Radeon HD IGP 6400/6500/6600 series ME microcode
    (radeon/SUMO_me.bin)
  * Radeon HD IGP 6400/6500/6600 series PFP microcode
    (radeon/SUMO_pfp.bin)
  * Radeon HD IGP 6200/6300/6400/6500/6600/7300 series RLC microcode
    (radeon/SUMO_rlc.bin)
  * Radeon HD 6x00/7500 series and IGP 6x00/7300 series UVD microcode
    (radeon/SUMO_uvd.bin)
  * Radeon HD 6370D/6380G/6410D ME microcode (radeon/SUMO2_me.bin)
  * Radeon HD 6370D/6380G/6410D PFP microcode (radeon/SUMO2_pfp.bin)
  * Radeon HD 7900 series CE microcode (radeon/TAHITI_ce.bin)
  * Radeon HD 7900 series MC microcode, version 1 (radeon/TAHITI_mc.bin)
  * Radeon HD 7900 series MC microcode, version 2
    (radeon/TAHITI_mc2.bin)
  * Radeon HD 7900 series ME microcode (radeon/TAHITI_me.bin)
  * Radeon HD 7900 series PFP microcode (radeon/TAHITI_pfp.bin)
  * Radeon HD 7900 series RLC microcode (radeon/TAHITI_rlc.bin)
  * Radeon HD 7900 series SMC microcode (radeon/TAHITI_smc.bin)
  * Radeon HD 7900 series UVD microcode (radeon/TAHITI_uvd.bin)
  * Radeon HD 6500/6600/7500 series MC microcode (radeon/TURKS_mc.bin)
  * Radeon HD 6500/6600/7500 series ME microcode (radeon/TURKS_me.bin)
  * Radeon HD 6500/6600/7500 series PFP microcode (radeon/TURKS_pfp.bin)
  * Radeon HD 6500/6600/7500 series SMC microcode (radeon/TURKS_smc.bin)
  * Radeon HD 7700 series CE microcode (radeon/VERDE_ce.bin)
  * Radeon HD 7700 series MC microcode, version 1 (radeon/VERDE_mc.bin)
  * Radeon HD 7700 series MC microcode, version 2 (radeon/VERDE_mc2.bin)
  * Radeon HD 7700 series ME microcode (radeon/VERDE_me.bin)
  * Radeon HD 7700 series PFP microcode (radeon/VERDE_pfp.bin)
  * Radeon HD 7700 series RLC microcode (radeon/VERDE_rlc.bin)
  * Radeon HD 7700 series SMC microcode (radeon/VERDE_smc.bin)
  * Tehuti network card firmware (tehuti/bdx.bin)
  * Broadcom BCM5703/BCM5704 TSO firmware (tigon/tg3_tso.bin)
  * Broadcom BCM5701A0 firmware (tigon/tg3.bin)
  * Broadcom BCM5705 TSO firmware (tigon/tg3_tso5.bin)
  * Broadcom BCM57766 firmware (tigon/tg357766.bin)
  * Conexant CX231xx core firmware (v4l-cx231xx-avcore-01.fw)
  * Conexant CX23418 APU firmware (v4l-cx23418-apu.fw)
  * Conexant CX23418 CPU firmware (v4l-cx23418-cpu.fw)
  * Conexant CX23418 ADEC firmware (v4l-cx23418-dig.fw)
  * Conexant CX25840 firmware (v4l-cx25840.fw)
  * Conexant CX23885 core firmware (v4l-cx23885-avcore-01.fw)
  * VIA VT6656 firmware (vntwusb.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-myricom
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Myri-10G Ethernet adapters
 This package contains the binary firmware for Myricom Myri-10G Ethernet
 adapters supported by the myri10ge driver.
 .
 Contents:
  * Myri-10G firmware (unaligned), version 1.4.57
    (myri10ge_ethp_z8e.dat)
  * Myri-10G firmware (aligned), version 1.4.57 (myri10ge_eth_z8e.dat)
  * Myri-10G firmware (unaligned, RSS), version 1.4.57
    (myri10ge_rss_ethp_z8e.dat)
  * Myri-10G firmware (aligned, RSS), version 1.4.57
    (myri10ge_rss_eth_z8e.dat)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-netxen
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for QLogic Intelligent Ethernet (3000 and 3100 Series)
 This package contains the binary firmware for QLogic (formerly NetXen)
 Intelligent network adapters supported by the netxen_nic and qlcnic
 drivers.
 .
 Contents:
  * phanfw.bin
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-qlogic
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for QLogic IBA7220, QLA1xxx, ISP2xxx and SP2x2
 This package contains the binary firmware for QLogic IBA7220 (Infiniband),
 QLA1xxx (SCSI), ISP2xxx- and SP2x2-based (Fibre Channel/FCoE) host
 adapters supported by the ip_iband, qla1280 and qla2xxx drivers.
 .
 Contents:
  * QLogic QLA1040 firmware, version 7.65.06 (qlogic/1040.bin)
  * QLogic QLA1080, 1240, 1280 firmware, version 8.15.11
    (qlogic/1280.bin)
  * QLogic QLA10160, 12160 firmware, version 10.04.42 (qlogic/12160.bin)
  * QLogic IBA7220 serdes firmware (qlogic/sd7220.fw)
  * QLogic QLA2100 firmware, version 1.19.38 (ql2100_fw.bin)
  * QLogic QLA2200 firmware, version 2.02.08 (ql2200_fw.bin)
  * QLogic QLA2300, ISP2312, SP202 firmware, version 3.03.28
    (ql2300_fw.bin)
  * QLogic ISP2322, SP212 firmware, version 3.03.28 (ql2322_fw.bin)
  * QLogic ISP2422, ISP2432[M], SP222, SP232 firmware, version 7.01.00
    (ql2400_fw.bin)
  * QLogic ISP2532 firmware, version 7.01.00 (ql2500_fw.bin)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-ralink
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Ralink wireless cards
 This package contains the binary firmware for wireless network cards with
 the Ralink RT2501 [Turbo], RT2600, RT5201 [Turbo], RT5600, RT5201USB,
 RT2800P[D], RT2700P[D], RT2700E[D], RT2800E[D], RT2800U[D] or RT3000E[D]
 chipsets or RT3070/RT3071/RT3072 chips, supported by the rt61/rt61pci,
 rt73/rt73usb, rt2860sta, rt2870sta/rt2870, rt3070sta or rt3090sta drivers.
 .
 Contents:
  * Ralink RT2561 (RT2501/RT5201 chipset) firmware, version 1.2
    (rt2561.bin)
  * Ralink RT2561S (RT2501 Turbo/RT5201 Turbo chipset) firmware, version
    1.2 (rt2561s.bin)
  * Ralink RT2661 (RT2600/RT5600 chipset) firmware, version 1.2
    (rt2661.bin)
  * Ralink RT2760/RT2790/RT2860/RT2890/RT3090
    (RT2700P[D]/RT2700E[D]/RT2800P[D]/RT2800E[D]/RT3000E[D] chipset)
    firmware, version 34 (rt2860.bin, rt3090.bin)
  * Ralink RT2870/RT3070/RT3071/RT3072 (RT2800U[D] chipset) firmware,
    version 29 (rt2870.bin, rt3070.bin)
  * Ralink RT3071/RT3072 firmware, version 29 (rt3071.bin)
  * Ralink RT3290 firmware, version 1 (rt3290.bin)
  * Ralink RT2571W/RT2671 (RT2501USB/RT5201USB chipset) firmware,
    version 1.8 (rt73.bin)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-realtek
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Realtek wired and wireless network adapters
 This package contains the binary firmware for some Ethernet adapters with
 the RTL8111/RTL8168 chips supported by the r8169 driver; and wireless
 network cards with the RTL8188, RTL8192, RTL8712, RTL8723 and RTL8821
 chips supported by the r8192_pci, r8192s_usb, r8712u, rtl8188eu,
 rtl8192ce, rtl8192cu, rtl8192de, rtl8192se, rtl8723ae, rtl8723au,
 rtl8723be and rtl8821ae drivers.
 .
 Contents:
  * Realtek RTL8192E boot code (RTL8192E/boot.img)
  * Realtek RTL8192E init data (RTL8192E/data.img)
  * Realtek RTL8192E main code (RTL8192E/main.img)
  * Realtek RTL8192SU firmware, version 902B (RTL8192SU/rtl8192sfw.bin)
  * Realtek RTL8105E-1 firmware (rtl_nic/rtl8105e-1.fw)
  * Realtek RTL8106E-1 firmware, version 0.0.1 (rtl_nic/rtl8106e-1.fw)
  * Realtek RTL8106E-2 firmware, version 0.0.1 (rtl_nic/rtl8106e-2.fw)
  * Realtek RTL8111D-1/RTL8168D-1 firmware (rtl_nic/rtl8168d-1.fw)
  * Realtek RTL8111D-2/RTL8168D-2 firmware (rtl_nic/rtl8168d-2.fw)
  * Realtek RTL8168E-1 firmware (rtl_nic/rtl8168e-1.fw)
  * Realtek RTL8168E-2 firmware (rtl_nic/rtl8168e-2.fw)
  * Realtek RTL8168E-3 firmware, version 0.0.4 (rtl_nic/rtl8168e-3.fw)
  * Realtek RTL8168F-1 firmware, version 0.0.5 (rtl_nic/rtl8168f-1.fw)
  * Realtek RTL8168F-2 firmware, version 0.0.4 (rtl_nic/rtl8168f-2.fw)
  * Realtek RTL8168G-1 firmware, version 0.0.3 (rtl_nic/rtl8168g-1.fw)
  * Realtek RTL8168G-2 firmware, version 0.0.1 (rtl_nic/rtl8168g-2.fw)
  * Realtek RTL8168G-3 firmware, version 0.0.1 (rtl_nic/rtl8168g-3.fw)
  * Realtek RTL8402-1 firmware, version 0.0.1 (rtl_nic/rtl8402-1.fw)
  * Realtek RTL8411-1 firmware, version 0.0.3 (rtl_nic/rtl8411-1.fw)
  * Realtek RTL8411-2 firmware, version 0.0.1 (rtl_nic/rtl8411-2.fw)
  * Realtek RTL8188EE firmware (rtlwifi/rtl8188efw.bin)
  * Realtek RTL8188EU firmware (rtlwifi/rtl8188eufw.bin)
  * Realtek RTL8192CE/RTL8188CE firmware, version 4.816.2011
    (rtlwifi/rtl8192cfw.bin)
  * Realtek RTL8192CE/RTL8188CE B-cut firmware, version 4.816.2011
    (rtlwifi/rtl8192cfwU_B.bin)
  * Realtek RTL8188CE A-cut firmware, version 4.816.2011
    (rtlwifi/rtl8192cfwU.bin)
  * Realtek RTL8192CU/RTL8188CU UMC A-cut firmware
    (rtlwifi/rtl8192cufw_A.bin)
  * Realtek RTL8192CU/RTL8188CU UMC B-cut firmware
    (rtlwifi/rtl8192cufw_B.bin)
  * Realtek RTL8192CU/RTL8188CU TMSC firmware
    (rtlwifi/rtl8192cufw_TMSC.bin)
  * Realtek RTL8192CU/RTL8188CU fallback firmware
    (rtlwifi/rtl8192cufw.bin)
  * Realtek RTL8192DE firmware, version 4.816.2011
    (rtlwifi/rtl8192defw.bin)
  * Realtek RTL8192SE/RTL8191SE firmware, version 4.816.2011
    (rtlwifi/rtl8192sefw.bin)
  * Realtek RTL8192SU/RTL8712U firmware (rtlwifi/rtl8712u.bin)
  * Realtek RTL8723AU rev B with-Bluetooth firmware
    (rtlwifi/rtl8723aufw_B.bin)
  * Realtek RTL8723AU rev B no-Bluetooth firmware
    (rtlwifi/rtl8723aufw_B_NoBT.bin)
  * Realtek RTL8723BE firmware (rtlwifi/rtl8723befw.bin)
  * Realtek RTL8723AE rev B firmware (rtlwifi/rtl8723fw_B.bin)
  * Realtek RTL8723AE rev A firmware (rtlwifi/rtl8723fw.bin)
  * Realtek RTL8821AE firmware (rtlwifi/rtl8821aefw.bin)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-samsung
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for Samsung MFC video codecs
 This package contains the binary firmware for Samsung MFC video codecs
 used in Exynos SoCs and supported by the s5p-mfc driver.
 .
 Contents:
  * MFCv5 firmware (s5p-mfc.fw)
  * MFCv6 firmware, version 1 (s5p-mfc-v6.fw)
  * MFCv6 firmware, version 2 (s5p-mfc-v6-v2.fw)
  * MFCv7 firmware (s5p-mfc-v7.fw)
  * MFCv8 firmware (s5p-mfc-v8.fw)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}

Package: firmware-ti-connectivity
Architecture: all
Provides: 
Depends: ${misc:Depends}
Recommends: 
Suggests: initramfs-tools
Replaces: 
Breaks: 
Conflicts: 
Description: Binary firmware for TI Connectivity wireless network adapters
 This package contains the binary firmware for Texas Instruments WL1251,
 WL127x, WL128x and WL18xx wireless network chips supported by the wl1251,
 wl12xx and wl18xx drivers.
 .
 Contents:
  * TI WL1251 firmware (ti-connectivity/wl1251-fw.bin)
  * TI WL1251 reference NVS (ti-connectivity/wl1251-nvs.bin)
  * TI WL127x multi-role firmware (ti-connectivity/wl127x-fw-5-mr.bin)
  * TI WL127x PLT (calibration) firmware
    (ti-connectivity/wl127x-fw-5-plt.bin)
  * TI WL127x single-role firmware (ti-connectivity/wl127x-fw-5-sr.bin)
  * TI WL127x reference NVS (ti-connectivity/wl127x-nvs.bin,
    ti-connectivity/wl1271-nvs.bin, ti-connectivity/wl12xx-nvs.bin)
  * TI WL128x multi-role firmware (ti-connectivity/wl128x-fw-5-mr.bin)
  * TI WL128x PLT (calibration) firmware
    (ti-connectivity/wl128x-fw-5-plt.bin)
  * TI WL128x single-role firmware (ti-connectivity/wl128x-fw-5-sr.bin)
  * TI WL128x reference NVS (ti-connectivity/wl128x-nvs.bin)
  * TI WL18xx default configuration (ti-connectivity/wl18xx-conf.bin)
  * TI WL18xx firmware, ABI 2 (ti-connectivity/wl18xx-fw-2.bin)
  * TI WL18xx firmware, ABI 3 (ti-connectivity/wl18xx-fw-3.bin)
Homepage: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Multi-Arch: ${firmware:Multi-Arch}