-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathchangelog
2510 lines (2134 loc) · 112 KB
/
changelog
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
firmware-nonfree (1:20230210-5~bpo11+1+rpt2) bullseye; urgency=medium
[ Phil Elwell ]
* Add Pi 5-specific links to the 43455 firmware
* Update Synaptics licence
[ Serge Schneider ]
* Update to linux-support 5.10.0-26
* Update packaging for new symlinks
-- Serge Schneider <serge@raspberrypi.com> Wed, 15 Nov 2023 13:52:22 +0000
firmware-nonfree (1:20230210-5~bpo11+1+rpt1) bookworm; urgency=medium
[ Phil Elwell ]
* Add CYW43455 firmware (cyfmac43455-sdio-standard):
- Version: 7.45.241 (1a2f2fa CY) CRC: 959ad1c7 Date: Mon 2021-11-01 00:40:29 PDT Ucode Ver: 1043.2164 FWID 01-703fd60
* Add "minimal" 43455 firmware for AP+STA mode (cyfmac43455-sdio-minimal):
- Version: 7.45.241 (1a2f2fa CY) CRC: 349757d5 Date: Mon 2021-11-01 00:40:07 PDT Ucode Ver: 1043.2164 FWID 01-5209c09
* Add CYW43430 firmware (cyfmac43430-sdio):
- Version: 7.45.98 (TOB) (56df937 CY) CRC: 442f3e3 Date: Mon 2021-07-19 03:25:10 CDT Ucode Ver: 1043.213703 FWID 01-8e14b897
* Add SYN43436P firmware for Zero 2 W (brcmfmac43436-sdio):
- Version: 9.88.4.77 CRC: 143f9f15 Date: Thu 2022-03-31 17:25:16 CST Ucode Ver: 1043.20743 FWID: 01-3b307371
* Add SYN43436S firmware for future Zero 2 W boards (brcmfmac43436s-sdio):
- Version: 7.45.96.s1 (gf031a129) CRC: 6670a1e Date: Wed 2023-06-14 07:28:04 CST Ucode Ver: 1043.20744 FWID: 01-70bd2af7
* Add CYW43456 firmware and (brcmfmac43456-sdio):
- Version: 7.84.17.1 (r871554) CRC: 72494685 Date: Thu 2020-05-14 17:41:11 KST Ucode Ver: 1043.20424 FWID: 01-3d9e1d87
* Add CYW43439 firmware for Pico W (43439A0-7.95.49.00.combined):
- Version: 7.95.49 (2271bb6 CY) CRC: b7a28ef3 Date: Mon 2021-11-29 22:50:27 PST Ucode Ver: 1043.2162 FWID 01-c51d9400
* Add license from Synaptics
[ Serge Schneider ]
* Add update-alternatives for standard and minimal versions of
cyfmac43455-sdio.bin
- See debian/config/brcm80211/cypress/README.txt
* Update debian/copyright
* Use linux-support-5.10.0-20
-- Serge Schneider <serge@raspberrypi.com> Wed, 02 Aug 2023 15:19:41 +0100
firmware-nonfree (20230210-5~bpo11+1) bullseye-backports; urgency=medium
* Rebuild for bullseye-backports
* Update to linux-support 5.10.0-23
-- Ben Hutchings <benh@debian.org> Wed, 21 Jun 2023 00:17:14 +0200
firmware-nonfree (20230210-5) unstable; urgency=medium
* brcm80211: brcm: rename Rock960 NVRAM to AP6356S and link devices to it
(Closes: #1035282)
* Update to linux-support 6.1.0-8
-- Salvatore Bonaccorso <carnil@debian.org> Mon, 01 May 2023 21:30:16 +0200
firmware-nonfree (20230210-4~bpo11+1) bullseye-backports; urgency=medium
[ Didier Raboud ]
* Rebuild for bullseye-backports
* d/salsa-ci.yml: Set RELEASE to bullseye-backports
* d/b/gencontrol.py: Revert bookworm changes
[ Ben Hutchings ]
* Update to linux-support 5.10.0-21
* d/b/gencontrol.py, d/salsa-ci.yml, d/templates: Revert further bookworm
changes
-- Ben Hutchings <benh@debian.org> Sat, 22 Apr 2023 16:06:29 +0200
firmware-nonfree (20230210-4) unstable; urgency=medium
* iwlwifi: Add missing files entry for iwlwifi-so-a0-hr-b0-72.ucode.
Thanks to Jonathan Klabunde Tomer (Closes: #1032608)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 11 Mar 2023 15:15:03 +0100
firmware-nonfree (20230210-3) unstable; urgency=medium
[ Bastian Germann ]
* firmware-atheros: Remove ath9k_htc from description
[ Diederik de Haas ]
* Update to linux-support 6.1.0-6
* brcm80211: brcm: Restore symlinks from cypress to brcm directory
(Closes: #1032367)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 11 Mar 2023 14:29:56 +0100
firmware-nonfree (20230210-2) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* brcm80211: Correct section for brcmfmac43430-sdio.AP6212.txt config
* Update to linux-support 6.1.0-5
[ Diederik de Haas ]
* brcm80211: brcm: Add AzureWave AW-CM256SM NVRAM file
* brcm80211: brcm: Add symlinks to AW-CM256SM NVRAM file
[ Bastian Germann ]
* firmware-atheros: Remove ath9k_htc firmware (Closes: #837385)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 25 Feb 2023 18:02:15 +0100
firmware-nonfree (20230210-1) unstable; urgency=medium
* New upstream version:
- amdgpu: update vangogh firmware
- rtw88: 8822c: Update normal firmware to v9.9.14
- brcm: restore previous firmware file for BCM4329 device
[ Salvatore Bonaccorso ]
* Update to linux-support 6.1.0-4
* debian/copyright: Drop exclude-patters for files not anymore included
upstream
* misc-nonfree: linux-firmware: update firmware for mediatek bluetooth chip
(MT7921)
* misc-nonfree: linux-firmware: update firmware for MT7921 WiFi device
* iwlwifi: remove old unsupported older than 4.14 LTS
* iwlwifi: remove 4.19 and 5.4 intermediate old firmwares
* iwlwifi: remove 5.4 and 5.10 intermediate old firmwares
* iwlwifi: remove 5.10 and 5.15 intermediate old firmwares
* iwlwifi: remove old intermediate 5.15+ firmwares
* amd-graphics: amdgpu: Add DCN 3.1.4 firmware
* amd-graphics: amdgpu: Add GC 11.0.1 firmware
* amd-graphics: amdgpu: Add SDMA 6.0.1 fimware
* amd-graphics: amdgpu: Add PSP 13.0.4 firmware
* amd-graphics: amdgpu: Add VCN 4.0.2 firmware
* brcm80211: brcm: revert firmware files for Cypress devices
* misc-nonfree: i915: Add DMC v2.18 for ADLP
* misc-nonfree: i915: Add DMC v2.11 for MTL
* Update module info from linux 6.1.0-4 on amd64
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 11 Feb 2023 21:28:33 +0100
firmware-nonfree (20230117-2) unstable; urgency=medium
[ Dmitry Baryshkov ]
* qcom-soc: correct the description of qcom/leia*.fw
* qcom-soc: add firmware for Adreno 200 family of GPU
[ Salvatore Bonaccorso ]
* debian/copyright: Add stanza for qcom/yamato* files
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 05 Feb 2023 15:13:43 +0100
firmware-nonfree (20230117-1) unstable; urgency=medium
* New upstream version:
- atheros: qca: Update firmware files for BT chip WCN6750
- amd-graphics: Update renoir PSP firmware
- amd-graphics: update renoir DMCUB firmware
[ Didier Raboud ]
* misc-nonfree: Update firmware for mediatek bluetooth chip (MT7922)
* misc-nonfree: Update firmware for mediatek bluetooth chip (MT7921)
* misc-nonfree: Update firmware for MT7922 WiFi device
* misc-nonfree: Update firmware for MT7921 WiFi device
* misc-nonfree: Update firmware cxgb4 to revision 1.27.1.0
* amd-graphics: Update copyright date
* iwlwifi: update 9000-family firmwares to core75-47
* iwlwifi: update PNVM firmwares from core76-35 release
* amd-graphics: update GC11.0.0 firmware from amd-5.4
* amd-graphics: update PSP13.0.0 firmware from amd-5.4
* amd-graphics: update SDMA6.0.0 firmware from amd-5.4
* amd-graphics: update SMU13.0.0 firmware from amd-5.4
* amd-graphics: update VCN4.0.0 firmware from amd-5.4
* amd-graphics: add DCN3.2.1 firmware from amd-5.4
* amd-graphics: add GC11.0.2 firmware from amd-5.4
* amd-graphics: add PSP13.0.7 firmware from amd-5.4
* amd-graphics: add SDMA6.0.2 firmware from amd-5.4
* amd-graphics: add SMU13.0.7 firmware from amd-5.4
* amd-graphics: add VCN4.0.4 firmware from amd-5.4
* iwlwifi: Update firmware file for Intel Bluetooth 9260
* iwlwifi: Update firmware file for Intel Bluetooth 9560
* iwlwifi: Update firmware file for Intel Bluetooth AX200
* iwlwifi: Update firmware file for Intel Bluetooth AX210
* iwlwifi: Update firmware file for Intel Bluetooth AX211
* iwlwifi: Update firmware file for Intel Bluetooth AX201
* realtek: rtw89: 8852c: update fw to v0.27.56.10
* Update modinfo from linux 6.1.0-3 on amd64
[ Salvatore Bonaccorso ]
* realtek: rtw89: 8852b: Add firmware to support RTL8852B chip
(Closes: #1029708)
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 31 Jan 2023 21:35:58 +0100
firmware-nonfree (20221214-5) unstable; urgency=medium
* Add lintian overrides to appease bullseye's lintian:
- license-problem-non-free-RFC (source): not needed for non-free
packages, but needed since the move to non-free-firmware (which
lintian 2.104.0 doesn't know about).
- binary-with-bad-dynamic-table (firmware-qcom-soc): duplicate the
existing override, without square brackets (since override formats
changed across lintian versions).
-- Cyril Brulebois <kibi@debian.org> Fri, 27 Jan 2023 19:47:36 +0100
firmware-nonfree (20221214-4) unstable; urgency=medium
[ Cyril Brulebois ]
* Update to linux-support 6.1.0-1
* Update to the new linux-support API:
- Replace self.templates[foo] with self.templates.get*(foo),
merging the self.process_package() substitution in passing.
- Replace makefile.add() with makefile.add_cmds().
- Make Template inherit from _ControlFileDict, and use OrderedDict to
define its fields. Use PackageDescriptionBase directly for the
Description.
- Simplify Templates, only adding a get_templates_control() method to
the base class.
- Use get_templates_control() and an append() to include the license
in the templates.
- Avoid KeyError during substitutions by renaming @?variable@ into
@variable@, listing each such variable as optional (so that the
placeholder gets replaced with an empty string if that variable is
not set in the config).
- salsa-ci: install python3-jinja2
* Move source and binaries from non-free/* to non-free-firmware/*
following the 2022 General Resolution about non-free firmware.
[ Bastian Blank ]
* Update to linux-support 6.1.0-2
-- Bastian Blank <waldi@debian.org> Tue, 24 Jan 2023 12:19:29 +0100
firmware-nonfree (20221214-3) unstable; urgency=medium
* iwlwifi: linux-firmware: Update firmware file for Intel Bluetooth AX211
* iwlwifi: Add version information for ibt-0041-0041.ddc (Intel Wireless
AX2100 Bluethooth configuration)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 25 Dec 2022 17:32:01 +0100
firmware-nonfree (20221214-2) unstable; urgency=medium
[ Ben Hutchings ]
* d/salsa-ci.yml: Set changelog suite to UNRELEASED to avoid lintian error
* d/salsa-ci.yml: Run extract-source job in target release, not unstable
[ Salvatore Bonaccorso ]
* amd-graphics: amdgpu: add SMU 13.0.0 firmware for amd-5.4 (Closes: #1026391)
-- Salvatore Bonaccorso <carnil@debian.org> Mon, 19 Dec 2022 21:36:20 +0100
firmware-nonfree (20221214-1) unstable; urgency=medium
* New upstream version:
- amdgpu: update green sardine DMCUB firmware
- amdgpu: update sdma_5.2.7 firmware
- rtl_bt: Update RTL8821C BT(USB I/F) FW to 0x75b8_f098
- brcm: add/update firmware files for brcmfmac driver
- amdgpu: updated navi12 firmware for amd-5.4
- amdgpu: updated renoir firmware for amd-5.4
- amdgpu: updated navi14 firmware for amd-5.4
- amdgpu: updated arcture firmware for amd-5.4
- amdgpu: updated sienna cichlid firmware for amd-5.4
- amdgpu: updated green sardine firmware for amd-5.4
- amdgpu: updated navy flounder firmware for amd-5.4
- amdgpu: updated picasso firmware for amd-5.4
- amdgpu: updated vangogh firmware for amd-5.4
- amdgpu: updated dimgrey cavefish firmware for amd-5.4
- amdgpu: updated beige goby firmware for amd-5.4
- amdgpu: updated vega10 firmware for amd-5.4
- amdgpu: add SMU 13.0.0 firmware for amd-5.4
- amdgpu: updated PSP 13.0.5 firmware for amd-5.4
- amdgpu: updated vega20 firmware for amd-5.4
- amdgpu: updated GC 10.3.7 RLC firmware for amd-5.4
- amdgpu: updated PSP 13.0.8 firmware for amd-5.4
- amdgpu: updated raven firmware for amd-5.4
- amdgpu: updated raven2 firmware for amd-5.4
- amdgpu: updated yellow carp firmware for amd-5.4
- amdgpu: updated navi10 firmware for amd-5.4
[ Salvatore Bonaccorso ]
* Update to linux-support 6.0.0-6
* misc-nonfree: linux-firmware: update firmware for MT7921 WiFi device
* misc-nonfree: linux-firmware: update firmware for mediatek bluetooth chip
(MT7921)
* misc-nonfree: i915: Add DMC v2.08 for DG2
* atheros: QCA: Add Bluetooth firmware for WCN785x
* amd-graphics: amdgpu: updated aldebaran firmware for amd-5.4
* amd-graphics: amdgpu: add DCN 3.2.0 firmware for amd-5.4
* amd-graphics: amdgpu: add GC 11.0.0 firmware for amd-5.4
* amd-graphics: amdgpu: add PSP 13.0.0 firmware for amd-5.4
* amd-graphics: amdgpu: Add SDMA 6.0.0 firmware for amd-5.4
* amd-graphics: amdgpu: add VCN 4.0.0 firmware for amd-5.4
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 16 Dec 2022 17:54:21 +0100
firmware-nonfree (20221109-4) unstable; urgency=medium
* Update to linux-support 6.0.0-5
* iwlwifi: Add Intel Wireless Bluethooth AX201 firmware and configuration
(Closes: #1025132)
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 02 Dec 2022 13:28:27 +0100
firmware-nonfree (20221109-3) unstable; urgency=medium
* misc-nonfree: i915: Add versionless HuC files for current platforms
(Closes: #1024881)
* misc-nonfree: i915: Add GuC v70.5.1 for DG1, DG2, TGL and ADL-P
(Closes: #1024881)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 27 Nov 2022 21:09:34 +0100
firmware-nonfree (20221109-2) unstable; urgency=medium
* qlogic: Add QLogic QL45000 series firmware version 8.59.1.0
(Closes: #1016945)
* misc-nonfree: Add MediaTek MT7922 bluetooth firmware (Closes: #1023289)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 19 Nov 2022 09:51:39 +0100
firmware-nonfree (20221109-1) unstable; urgency=medium
* New upstream version
[ Didier Raboud ]
* Update dependency to linux 6.0.0-4
* iwlwifi: update 9000-family firmwares to core72-129
* iwlwifi: add new FWs from core69-81 release (Closes: #1023240)
* iwlwifi: update firmware files for Intel Bluetooth AX2*
* iwlwifi: Add Intel Wireless AX211 Bluethooth firmware and
configuration (Closes: #1023245)
* qcom-soc: venus: replace split firmware with mbn files
[ Salvatore Bonaccorso ]
* Add myself to Uploaders
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 18 Nov 2022 11:18:32 +0100
firmware-nonfree (20221012-1) unstable; urgency=medium
* New upstream version
[ Didier Raboud ]
* Update dependency and modinfo from linux 6.0.0-2 on amd64
* 20221012:
- misc-nonfree: update cxgb4 firmware to 1.27.0.0
- misc-nonfree: update firmware versions for MT7921 and MT7922 devices
- misc-nonfree: add MediaTek mt8186 and mt8195 scp firmware
- realtek: add Realtek RTL8852C, RTL8852BU and RTL8852CU config and firmware
[ Dmitry Baryshkov ]
* atheros: ath11k: WCN3990 hw1.0: add board-2.bin, board data file
* atheros: ath11k: Add firmware for QCN9074 (hw1.0), WCN6750 (hw1.0) and
WCN6855 (hw2.0, hw2.1) (Closes: #1021157)
* atheros: qca: Add WCN685x 0109 NVM bluetooth firmware
* atheros: qca: Add bluetooth firmware for WCN685x ROM 13.2.1
* qcom-soc: Fix paths for Lenovo ThinkPas X13s firmware
* qcom-soc: Add new Adreno firmware (a200, a330, a420)
* qcom-soc: Add firmware for APQ8096 (including lintian overrides for
reported issues with apq8096/modem.mbn)
[ Ben Hutchings ]
* atheros: Fix capitalisation in some file descriptions
-- Ben Hutchings <benh@debian.org> Mon, 31 Oct 2022 01:18:11 +0100
firmware-nonfree (20220913-1) unstable; urgency=medium
* New upstream version (Closes: #1009316, #1015728)
* Various new firmware for Intel hardware closes: #1014651, #1020962
* amd-graphics: Various new firmware closes: #999825, #1019847
* iwlwifi: Various new firmware closes: #1016058
[ Philippe Ombredanne ]
* Update copyright with correct continuations
[ Ben Hutchings ]
* lintian: Move source overrides to preferred path
* lintian: Refresh lintian-overrides
* d/control: Use my debian.org email in Uploaders field
* debian/upstream/: Add upstream signing key
* copyright: Fold debian/config/*/copyright into debian/copyright
* d/copyright: Fix remaining incorrect continuations
* d/copyright: Add Copyright field for Conexant firmware
* d/copyright: Fix Files field syntax
* d/copyright: Replace tabs with spaces
* d/copyright: Fix paragraph order for files in go7007/ and radeon/
* copyright: Replace debian/config/*/LICENSE with paragraphs in
debian/copyright
* d/copyright: Fix incorrect and obsolete file patterns
* copyright: Replace debian/copyright.debian with paragraph in
debian/copyright
* copyright: Remove support for per-binary-package copyright files
* Move file exclusions to debian/copyright; replace genorig.py with uscan
* d/copyright: Update copyright holders and dates for debian/*
* d/copyright: Add paragraph for metadata that should be CC0
* d/copyright: Drop non-matching file exclusions
* ipw2x00, ivtv: Add environment variable to skip EULA on installation:
FIRMWARE_{IPW2X00,IVTV}_LICENSE_READ_AND_ACCEPTED must be set to 'yes'
* d/salsa-ci.yml: Add CI configuration for salsa.debian.org
- d/rules: Add linux-support-name target to show the name of the
linux-support dependency
* Update to linux-support 5.19.0-1
* d/bin/gencontrol.py: Make debian/rules.gen reproducible
* misc-nonfree: Add Intel ADL-P DMC firmware version 2.16
* misc-nonfree: Add Intel DG2 firmware
* misc-nonfree: Add Nvidia Ampere GA102/GA103/GA104/GA106/GA107 firmware
* amd-graphics: Correct descriptions of files with IP version in filename
* amd-graphics: Fix some inconsistent file descriptions
* amd-graphics: Add "Aldebaran" MEC firmware
* amd-graphics: Add more versions of DCN, GC, PSP, SDMA, VCN firmware
* d/copyright: Delete obsolete filename patterns from Files-Excluded
* bnx2x: Add firmware version 7.13.21.0 (Closes: #1006500)
* iwlwifi: Add firmware version 71.058653f6.0 for various models
[ Didier Raboud ]
* lintian: fix file-matching in source override
* lintian: fix elf-error override syntax
* 20220815:
- atheros: ath10k QCA99X0 board updated to v2
- bnx2, bnx2x: Drop obsolete firmware files
- intelwimax: Drop Intel WiMax package (unsupported since 5.10+)
- iwlwifi: remove old unsupported 3160/7260/7265/8000/8265 firmware
(unsupported since 4.8.0)
- misc-nonfree: Update cxgb4 firmware to revision 1.26.6.0
- misc-nonfree: Update ice package to 1.3.30.0, and DDP comms to 1.3.31.0
- misc-nonfree: rename silabs/ to wfx/
* Update dependency and modinfo from linux 5.19.0-2 on amd64
* 20220913:
- qlogic: drop old obsolete brocade firmware revs
- misc-nonfree: Add lintian override for unstripped-binary-or-object
- source: Add lintian override for unstripped-binary-or-object
- misc-nonfree: i915: Add ADL-P DMC firmware v2.12 (Closes: #1006638)
- misc-nonfree: i915: ADL-P DMC files are firmware not support files
- misc-nonfree: i915: Add ADL-P DMC firmware v2.14
- misc-nonfree: i915: Add GuC firmware 69.0.3 for all platforms
- misc-nonfree: i915: Add GuC firmware 70.1.1 for all platforms
- iwlwifi: Add FWs for new SO device types with multiple RF modules
- amd-graphics: Add latest binary firmwares (Aldebaran, Beige Goby, Cyan
Sillfish2, GC, PSP, SDMA, Yellow Carp) (Closes: #1009618)
- qcom-soc: Add firmware for Lenovo ThinkPad X13s (21BX)
* CI: Build 'all' only, drop autopkgtest job and artifact the source package
separately
* Update to debhelper-compat to 13
-- Bastian Blank <waldi@debian.org> Fri, 28 Oct 2022 20:48:14 +0200
firmware-nonfree (20210818-1~bpo11+1) bullseye-backports; urgency=medium
* Rebuild for bullseye-backports:
- Use linux-support-5.10.0-18
-- Ben Hutchings <benh@debian.org> Sat, 08 Oct 2022 21:50:37 +0200
firmware-nonfree (20210818-1) unstable; urgency=medium
* New upstream version:
- iwlwifi: add ty firmware from Core63-43
- qca: Add firmware files for BT chip WCN6750.
- i915: Add v2.12 DMC for TGL
- i915: Add v2.03 DMC for RKL
- QCA : Updated firmware files for WCN3991
- linux-firmware: add firmware for MT7922
- linux-firmware: update frimware for mediatek bluetooth chip (MT7921)
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- amdgpu: update arcturus firmware from 21.30
- amdgpu: update green sardine firmware from 21.30
- amdgpu: update navi10 firmware from 21.30
- amdgpu: update navi12 firmware from 21.30
- amdgpu: update navi14 firmware from 21.30
- amdgpu: update sienna cichlid firmware from 21.30
- amdgpu: update navy flounder firmware from 21.30
- amdgpu: update dimgrey cavefish firmware from 21.30
- amdgpu: update picasso firmware from 21.30
- amdgpu: update polaris12 firmware from 21.30
- amdgpu: update raven firmware from 21.30
- amdgpu: update raven2 firmware from 21.30
- amdgpu: update renoir firmware from 21.30
- amdgpu: update vega10 firmware from 21.30
- amdgpu: update vega12 firmware from 21.30
- amdgpu: update vega20 firmware from 21.30
- amdgpu: add initial vangogh support
- amdgpu: revert back to older picasso sdma firmware
- amdgpu: revert back to older raven sdma firmware (closes: #992551)
- amdgpu: revert back to older raven2 sdma firmware
- ice: update package file to 1.3.26.0
-- maximilian attems <maks@debian.org> Tue, 24 Aug 2021 17:46:21 +0200
firmware-nonfree (20210716-1~exp1) experimental; urgency=medium
* New upstream version:
- iwlwifi: add new FWs from core60-51 release
- iwlwifi: update 9000-family firmwares to core60-51
- iwlwifi: update 8000 family firmwares
- rtw88: 8822c: Update normal firmware to v9.9.10
- nvidia: fix symlinks for tu104/tu106 acr unload firmware
- cxgb4: Update firmware to revision 1.25.6.0
- QCA: Update Bluetooth firmware for QCA6390
- QCA: Update Bluetooth firmware for QCA6174
- QCA: Add Bluetooth firmware for WCN685x
- linux-firmware: update firmware for MT7921 WiFi device
- rtl_bt: Update RTL8822C BT(USB I/F) FW to 0x09A8_A0CB
- rtl_bt: Update RTL8822C BT(UART I/F) FW to 0x05A8_A0CB
- mediatek: update MT7915 firmware to 20201105
- rtl_bt: Add rtl8761b firmware
- rtl_bt: Add rtl8761bu firmware
- cypress: update firmware for cyw43012 sdio
- cypress: update firmware for cyw43340 sdio
- cypress: update firmware for cyw43430 sdio
- cypress: update firmware for cyw43455 sdio
- cypress: update firmware for cyw4354 sdio
- cypress: update firmware for cyw4356 sdio
- cypress: update firmware for cyw43570 pcie
- cypress: update firmware for cyw4373 sdio
- cypress: update firmware for cyw54591 pcie
- QCA: Update Bluetooth firmware for QCA6174
- rtl_bt: Update RTL8822C BT(UART I/F) FW to 0x05A8_C6B4
- linux-firmware: update firmware for MT7921 WiFi device to 20210612122753
- rtl_bt: Update RTL8852A BT USB firmware to 0xD9A8_A0CD
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- amdgpu: update navy flounder firmware from 21.20
- amdgpu: update raven firmware from 21.20
- amdgpu: update arcturus firmware from 21.20
- amdgpu: update raven2 firmware from 21.20
- amdgpu: update navi10 firmware from 21.20
- amdgpu: update renoir firmware from 21.20
- amdgpu: update vega10 firmware from 21.20
- amdgpu: update navi12 firmware from 21.20
- amdgpu: update vega12 firmware from 21.20
- amdgpu: update green sardine firmware from 21.20
- amdgpu: update navi14 firmware from 21.20
- amdgpu: update Picasso firmware from 21.20
- amdgpu: update vega20 firmware from 21.20
- amdgpu: update sienna cichlid firmware from 21.20
- amdgpu: add initial dimgrey cavefish firmware from 21.20
- amdgpu: update vcn firmware for navi10 for 21.20
- amdgpu: update vcn firmware for navi12 for 21.20
- amdgpu: update vcn firmware for navi14 for 21.20
- amdgpu: update vcn firmware for renoir for 21.20
- amdgpu: update vcn firmware for green sardine for 21.20
- firmware/i915/guc: Add GuC v62.0.0 for all platforms
- firmware/i915/guc: Add GuC v62.0.3 for ADL-P
- firmware/i915/guc: Add HuC v7.9.3 for TGL & DG1
- cxgb4: Update firmware to revision 1.26.0.0
- linux-firmware: update frimware for mediatek bluetooth chip (MT7921)
- rtlwifi: de-dupe rtl8192e WiFi firmware
- rtlwifi: de-dupe rtl8723b WiFi firmware
- linux-firmware: update NXP 8897/8997 firmware images
-- maximilian attems <maks@debian.org> Fri, 20 Aug 2021 19:07:10 +0200
firmware-nonfree (20210511-1) unstable; urgency=medium
* Unstable upload.
-- maximilian attems <maks@debian.org> Fri, 20 Aug 2021 19:00:37 +0200
firmware-nonfree (20210511-1~exp1) experimental; urgency=medium
* New upstream version:
- qcom: update venus firmware files for v5.4
- rtw89: 8852a: update fw to v0.13.8.0
- qcom: Add venus firmware files for VPU-2.0
- rtl_bt: Update RTL8852A BT USB firmware to 0xD9A8_7893
- rtw89: 8852a: update fw to v0.13.8.0
- brcm: Add a link to enable khadas VIM2's WiFi
- qcom: add gpu firmwares for sc7280
- firmware: nvidia: Add VIC firmware for Tegra194
- amdgpu: add new polaris 12 MC firmware
- i915: Add ADL-P DMC Support
- linux-firmware: update firmware for mhdp8546
- nvidia: Update Tegra210 XUSB firmware to v50.26
- nvidia: Update Tegra186 XUSB firmware to v55.18
- nvidia: Update Tegra194 XUSB firmware to v60.09
-- maximilian attems <maks@debian.org> Wed, 18 Aug 2021 07:00:34 +0200
firmware-nonfree (20210427-1) unstable; urgency=medium
* New upstream version:
- amdgpu: add initial support for navy flounder
- amdgpu: update raven firmware for 20.50
- amdgpu: update raven2 firmware for 20.50
- amdgpu: update navi10 firmware for 20.50
- amdgpu: update renoir firmware for 20.50
- amdgpu: update vega10 firmware for 20.50
- amdgpu: update navi12 firmware for 20.50
- amdgpu: update vega12 firmware for 20.50
- amdgpu: update navi14 firmware for 20.50
- amdgpu: update picasso firmware for 20.50
- amdgpu: update vega20 firmware for 20.50
- amdgpu: update sienna cichlid firmware for 20.50
- rtl_bt: Update RTL8822C BT(UART I/F) FW to 0x59A_76A3
- qcom: update a650 firmware files
- qcom: sm8250: update remoteproc firmware
- brcm: Add nvram for the Predia Basic tablet
- brcm: Add nvram for the Chuwi Hi8 (CWI509) tablet
- rtl_bt: Add rtl8723bs_config-OBDA0623.bin symlink
- amdgpu: add arcturus firmware
- nfp: update Agilio SmartNIC flower firmware to rev AOTC-2.14.A.6
- WHENCE: link to similar config file for rtl8821a support
- QCA: Update Bluetooth firmware for QCA6174
- amdgpu: update navi10 SMC firmware
- amdgpu: update navi14 smc firmware
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- brcm: Link CM4's WiFi firmware with DMI machine name.
- cxgb4: Update firmware to revision 1.25.4.0
- rtl_nic: add new firmware for RTL8153 and RTL8156 series
- amdgpu: update raven firmware from 21.10
- amdgpu: update raven2 firmware from 21.10
- amdgpu: update navi10 firmware from 21.10
- amdgpu: update renoir firmware from 21.10
- amdgpu: update vega10 firmware from 21.10
- amdgpu: update navi12 firmware from 21.10
- amdgpu: update vega12 firmware from 21.10
- amdgpu: update green sardine firmware from 21.10
- amdgpu: update navi14 firmware from 21.10
- amdgpu: update picasso firmware from 21.10
- amdgpu: update vega20 firmware from 21.10
- amdgpu: update sienna cichlid firmware from 21.10
- amdgpu: update navy flounder firmware from 21.10
- amdgpu: update arcturus firmware from 21.10
- brcm: add missing symlink for Pi Zero W NVRAM file
- rtw88: 8822c: Update normal firmware to v9.9.9
- mrvl: prestera: Add Marvell Prestera Switchdev firmware 3.0 version
- linux-firmware: Update firmware file for Intel Bluetooth 8265
- linux-firmware: Intel BT 7265: Fix Security Issues
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth 9260
- linux-firmware: Update firmware file for Intel Bluetooth 9560
- linux-firmware: Update firmware file for Intel Bluetooth AX210
-- maximilian attems <maks@debian.org> Tue, 17 Aug 2021 08:45:02 +0200
firmware-nonfree (20210315-3) unstable; urgency=medium
* Update to linux-support 5.10.0-8
* debian/bin: Add update-modinfo script to maintain cache of module info
* Add module info from linux 5.10.46-2 on amd64
* debian/bin/gencontrol.py: Include modaliases in AppStream metadata
(Closes: #991500)
-- Ben Hutchings <benh@debian.org> Sun, 25 Jul 2021 23:19:34 +0200
firmware-nonfree (20210315-2) unstable; urgency=medium
* Support Cubietech Cubietruck and Jumper EZpad mini 3 tablet
(closes: #985740, #844056)
* Add firmware-atheros recommends to firmware-qcom-soc (closes: #985743)
Thanks to Andreas Beckmann <anbe@debian.org>
* Add missing brcmfmac4366c firmware.
* Add more missing BCM4334, BCM43340 and BCM43430 NVRAMS.
-- maximilian attems <maks@debian.org> Sat, 27 Mar 2021 13:03:31 +0100
firmware-nonfree (20210315-1) unstable; urgency=medium
* Unstable upload of green sardine support (closes: #984874)
-- maximilian attems <maks@debian.org> Sat, 20 Mar 2021 19:14:23 +0100
firmware-nonfree (20210315-1~exp1) experimental; urgency=medium
* New upstream version:
- rtw88: RTL8822C: Update normal firmware to v9.9.5 (closes: #983255)
- amdgpu: add initial firmware for green sardine (closes: #984852)
- silabs: add new firmware for WF200
- brcm: Fix Raspberry Pi 4B NVRAM file
- Add symlink for BananaPi M2 to brcmfmac43430-sdio config
- WHENCE: add missing symlink for BananaPi M3
- rtw89: 8852a: add firmware v0.9.12.2
- linux-firmware: add frimware for mediatek bluetooth chip (MT7921)
- iwlwifi: update 7265D firmware
- iwlwifi: update 9000-family firmwares (closes: #963025)
- iwlwifi: add new FWs from core59-66 release
- rtw88: 8822c: Update normal firmware to v9.9.6
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth AX210
-- maximilian attems <maks@debian.org> Tue, 16 Mar 2021 16:56:56 +0100
firmware-nonfree (20210208-4) unstable; urgency=medium
* List MediaTek mt8183 firmware.
* Update to linux-support 5.10.0-4.
* Add upstream fix for Raspberry Pi 4B. (closes: #984489)
* Support BananaPi M2 ultra and BananaPi M3. (closes: #982579)
Thanks to Ben Hutchings <ben@decadent.org.uk>,
Bernhard <bewoern1@gmail.com>
-- maximilian attems <maks@debian.org> Sat, 13 Mar 2021 13:23:22 +0100
firmware-nonfree (20210208-3) unstable; urgency=medium
* misc-nonfree: Add missing config files for cxgb4 (closes: #983561)
* Add missing intel firmwares in iwlwifi, intel-sound, misc-nonfree.
* Ship all Qualcomm Atheros Bluetooth firmwares.
* Complete all MediaTek firmwares.
Thanks to Cyril Brulebois <kibi@debian.org>.
-- maximilian attems <maks@debian.org> Fri, 26 Feb 2021 14:31:24 +0100
firmware-nonfree (20210208-2) unstable; urgency=medium
* Add missing brcmfmac43430-sdio.AP6212.txt config. (#982579)
* brcm80211, msc: add various missing symlinks (closes: #982757)
-- maximilian attems <maks@debian.org> Wed, 24 Feb 2021 13:07:14 +0100
firmware-nonfree (20210208-1) unstable; urgency=medium
* New upstream version:
- rtl_bt: Update RTL8821C BT(USB I/F) FW to 0x829a_7644
- rtl_bt: Add firmware and config files for RTL8852A BT USB chip
- rtl_bt: Update RTL8822C BT(USB I/F) FW to 0x099a_7253
- rtl_bt: Update RTL8822C BT(UART I/F) FW to 0x059A_25CB
- brcm: remove old brcm firmwares that have newer cypress variants
- cypress: Link the new cypress firmware to the old brcm files
- cypress: Fix link direction
- brcm: Update Raspberry Pi 3B+/4B NVRAM for downstream changes
- brcm: Add NVRAM for Vamrs 96boards Rock960
- brcm: Link RPi4's WiFi firmware with DMI machine name.
- qcom: add firmware files for Adreno a650
- qcom: Add SM8250 Audio DSP firmware
- qcom: Add SM8250 Compute DSP firmware
- qcom: Add venus firmware files for VPU-1.0
- i915: Add GuC v49.0.1 for DG1
- i915: Add HuC v7.7.1 for DG1
- i915: Add DMC v2.01 for ADL-S
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- rtw88: RTL8821C: Update firmware to v24.8
- linux-firmware: add firmware for MT7921
* add rtl_bt/rtl8852au firmware and config.
* add rtl_bt/rtl8723bs firmware and config.
* Update to linux-support 5.10.0-3.
-- maximilian attems <maks@debian.org> Tue, 09 Feb 2021 11:15:52 +0100
firmware-nonfree (20201218-3) unstable; urgency=medium
* Add Realtek rtl8822cu config (closes: #971791)
* Add Realtek RTL8812 firmwares (closes: #877667)
* Add Realtek rtl8822cs config
-- maximilian attems <maks@debian.org> Mon, 25 Jan 2021 08:49:45 +0100
firmware-nonfree (20201218-2) unstable; urgency=medium
* Add RTW8723D firmware (closes: #980101)
-- maximilian attems <maks@debian.org> Tue, 19 Jan 2021 15:52:36 +0100
firmware-nonfree (20201218-1) unstable; urgency=medium
* New upstream version:
- amdgpu: update raven firmware for 20.45
- amdgpu: update raven2 firmware for 20.45
- amdgpu: update navi10 firmware for 20.45
- amdgpu: update navi12 firmware for 20.45
- amdgpu: update navi14 firmware for 20.45
- amdgpu: update renoir firmware for 20.45
- amdgpu: update vega10 firmware for 20.45
- amdgpu: update vega12 firmware for 20.45
- amdgpu: update vega20 firmware for 20.45
- amdgpu: add sienna cichlid firmware for 20.45
- i915: Remove duplicate KBL DMC entry
- i915: Add GuC firmware v49.0.1 for all platforms
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- QCA : Updated firmware files for WCN3991
- mediatek: update MT8173 VPU firmware to v1.1.6
- linux-firmware: add firmware for Lontium LT9611UXC DSI to HDMI bridge
- linux-firmware: Update firmware file for Intel Bluetooth 9260
- linux-firmware: Update firmware file for Intel Bluetooth 9560
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth AX210
- make AP6212 in bananpi m2 plus/zero work
* Update to linux-support 5.10.0-1.
-- maximilian attems <maks@debian.org> Thu, 14 Jan 2021 10:33:27 +0100
firmware-nonfree (20201118-1) unstable; urgency=medium
* New upstream version:
- ath10k: QCA6174 hw3.0: update firmware-6.bin to WLAN.RM.4.4.1-00157-QCARMSWPZ-1
- ath10k: QCA6174 hw3.0: update board-2.bin
- ath10k: QCA9888 hw2.0: update firmware-5.bin to 10.4-3.9.0.2-00131
- ath10k: QCA9984 hw1.0: update firmware-5.bin to 10.4-3.9.0.2-00131
- ath10k: QCA6174 hw3.0: add firmware-sdio-6.bin version WLAN.RMH.4.4.1-00077
- ath11k: IPQ6018 hw1.0: add board-2.bin
- ath11k: IPQ6018 hw1.0: add to WLAN.HK.2.1.0.1-01238-QCAHKSWPL_SILICONZ-2
- ath11k: IPQ8074 hw2.0: add board-2.bin
- ath11k: IPQ8074 hw2.0: add to WLAN.HK.2.1.0.1-01238-QCAHKSWPL_SILICONZ-2
- ath11k: QCA6390 hw2.0: add board-2.bin
- ath11k: QCA6390 hw2.0: add to WLAN.HST.1.0.1-01740-QCAHSTSWPLZ_V2_TO_X86-1
(closes: #977042)
- QCA : Fixed BT SSR due to command timeout / IO fatal error
- qcom : updated venus firmware files for v5.4
- QCA: Update Bluetooth firmware for QCA6390
- rtl_bt: Update RTL8822C BT(USB I/F) FW to 0x099A_281A
- rtw88: RTL8822C: Update firmware to v9.9.4
- amdgpu: update raven VCN firmware
- amdgpu: update raven2 VCN firmware
- amdgpu: update picasso VCN firmware
- vpdma: Move firmware to ti directory
- Revert "rtw88: RTL8822C: Update firmware to v9.9.4"
- rtw88: RTL8822C: Update firmware to v9.9.4
- rtlwifi: v88.2 firmware files for RTL8192CU
-- maximilian attems <maks@debian.org> Fri, 08 Jan 2021 10:05:27 +0100
firmware-nonfree (20201022-1) unstable; urgency=medium
* New upstream version:
- linux-firmware: Update Marvell Switchdev firmware with ABI changes
- linux-firmware: move i915 firmware symlinks to WHENCE
- linux-firmware: Update firmware patch for Intel Bluetooth 7265 (D1)
- QCA : Updated firmware files for WCN3991
- linux-firmware: Add new VPDMA firmware 1b8.bin
- amdgpu: update navi10 firmware for 20.40
- amdgpu: update navi12 firmware for 20.40
- amdgpu: update navi14 firmware for 20.40
- amdgpu: update picasso firmware for 20.40
- amdgpu: update raven firmware for 20.40
- amdgpu: update raven2 firmware for 20.40
- amdgpu: update renoir firmware for 20.40
- amdgpu: update vega10 firmware for 20.40
- amdgpu: update vega12 firmware for 20.40
- amdgpu: update vega20 firmware for 20.40
- copy-firmware: Always write Link: entries
- ice: Add comms package file for Intel E800 series driver
- qcom : updated venus firmware files for v5.4
- i915: Add DG1 DMC v2.02
- iwlwifi: update 3168, 7265D, 8000C and 8265 firmwares
- iwlwifi: update and add new FWs from core56-54 release
- QCA : Updated firmware file for WCN3991
- mediatek: separate venc service thread
- ice: update package file to 1.3.16.0
- ath10k: add SDIO firmware for QCA9377 WiFi
- rtl_bt: Update RTL8821C BT FW to 0xAA6C_A99E
- cypress: add Cypress firmware and clm_blob files
* Update to linux-support 5.9.0-5.
* iwlwifi: add Intel Bluetooth AX201 (var 32 rev 0) (closes: 975726)
-- maximilian attems <maks@debian.org> Mon, 04 Jan 2021 11:21:55 +0100
firmware-nonfree (20200918-1) unstable; urgency=medium
* New upstream version:
- amdgpu: update navi10 firmware for 20.30
- amdgpu: add navi12 firmware from 20.30
- linux-firmware: mt7615: update firmware to 20200814 version
- wl18xx: update firmware file 8.9.0.0.83
- qcom: Add updated a5xx and a6xx microcode
- brcm: Fix a stale symlink for RPi3 model b+
- mediatek: update MT7915 firmware to 20200819
- linux-firmware: Update firmware file for Intel Bluetooth 9260
- linux-firmware: Update firmware file for Intel Bluetooth 9560
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
* Update to linux-support 5.8.0-1.
-- maximilian attems <maks@debian.org> Wed, 23 Sep 2020 10:11:09 +0200
firmware-nonfree (20200817-1) unstable; urgency=medium
[maximilian attems]
* New upstream version:
- linux-firmware: update NXP SDSD-8997 firmware image
- amdgpu: update navi10 firmware for 20.30
- amdgpu: update navi14 firmware for 20.30
- amdgpu: update picasso firmware for 20.30
- amdgpu: update raven firmware for 20.30
- amdgpu: update raven2 firmware for 20.30
- amdgpu: update renoir firmware for 20.30
- amdgpu: update vega10 firmware for 20.30
- amdgpu: update vega12 firmware for 20.30
- amdgpu: update vega20 firmware for 20.30
- i915: Add HuC firwmare v7.5.0 for TGL
- i915: Add DMC firmware 2.08 for TGL
- i915: Add DMC firmware 2.02 for RKL
- rtl_bt: Update RTL8822C BT UART firmware to 0x0599_8A4F
- brcm: Add brcmfmac43455-sdio.raspberrypi,3-model-a-plus.txt symlink
* add rtw88 RTL8821C firmware (closes: #969000)
* Update to linux-support 5.7.0-3.
[ Aníbal Limón ]
* qcom-soc: Add venus 5.2/5.4 firmware
-- maximilian attems <maks@debian.org> Thu, 03 Sep 2020 10:52:04 +0200
firmware-nonfree (20200721-1) unstable; urgency=medium
* New upstream version:
- QCA: Update WCN3991 FW files
- amdgpu: add UVD firmware for SI asics
- QCA: Update Bluetooth firmware for QCA6390
- linux-firmware: Update firmware file for Intel Bluetooth 9260
- linux-firmware: Update firmware file for Intel Bluetooth 9560
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- QCA: Add correct bin file for WCN3991
- Update binary firmware for MT7663 based devices to include firmware offload feature and low power feature.
- rtl_nic: update firmware for RTL8125B
- Update to 20200629111339 version to aligh SDK. Mainly fix DFS false alarm.
* add RTL8822C WoW firmware (closes: #968272)
* add RTL8152/RTL8153 firmware (closes: #962972)
[ Jeremy Stanley ]
* brcm80211: include the NVRAM config file needed by GPD Pocket
and Win UMPCs
-- maximilian attems <maks@debian.org> Mon, 24 Aug 2020 14:55:53 +0200
firmware-nonfree (20200619-1) unstable; urgency=medium
[maximilian attems]
* New upstream version:
- linux-firmware: add rebb firmware for mt7663
- QCA: Add Bluetooth firmware for QCA9377
- linux-firmware: add firmware for MT7915E
- rtw88: update firmware information and README
- iwlwifi: update 8265 FW
- iwlwifi: update FWs to core47-142 release
- rtw88: RTL8821C: add firmware file v24.5
- iwlwifi: update and add new FWs from core50-70 and core52-81 releases
- mrvl: add firmware for Prestera ASIC devices
- cxgb4: Update firmware to revision 1.24.17.0
- rtw88: RTL8822C: update firmware version to v9.9
- linux-firmware: Update firmware file for Intel Bluetooth 9260
- linux-firmware: Update firmware file for Intel Bluetooth 9560
- linux-firmware: Update firmware file for Intel Bluetooth AX201
- linux-firmware: Update firmware file for Intel Bluetooth AX200
- rtl_nic: add firmware for RTL8125B
- amdgpu: update navi14 firmware from 20.20 release
- amdgpu: update navi10 firmware from 20.20 release
- amdgpu: update vega10 firmware from 20.20 release
- amdgpu: update vega12 firmware from 20.20 release
- amdgpu: update vega20 firmware from 20.20 release
- amdgpu: add vega20 TA firmware from 20.20 release
- amdgpu: update raven firmware from 20.20 release
- amdgpu: update raven2 firmware from 20.20 release
- amdgpu: update picasso firmware from 20.20 release
- amdgpu: update renoir firmware from 20.20 release
* add rtl8168fp-3 for Realtek's RTL8168fp/RTL8117. (closes: #956224)
* add firmware-qcom-soc breaks and replaces against old firmware-qcom-media.
(closes: #966025)
[ Lucas Nussbaum ]
* README.source: fix option name
* qlogic: Add new firmware versions for the QLogic QL45000 series.
Closes: #963558
[ Hideki Yamane ]
* add Realtek RTL8125 firmware. (closes: #947356)
[ Aníbal Limón ]
* qcom-soc: Add SDM845 Adreno 630/WLAN DSP SDM845 firmware
* qcom-soc: Add missing _base to fw files for pkg desc
-- maximilian attems <maks@debian.org> Fri, 24 Jul 2020 17:13:23 +0200
firmware-nonfree (20200421-1) unstable; urgency=medium
* New upstream version:
- iwlwifi: update FWs for 3168, 7265D, 9000, 9260, 8000, 8265 and cc
- iwlwifi: update -48 FWs for Qu and cc
- netronome: nfp: update Agilio SmartNIC flower firmware to rev
AOTC-2.10.A.38
- atheros: ath10k: QCA4019 hw1.0: update board-2.bin
- atheros: ath10k: QCA6174 hw3.0: update firmware-6.bin to
WLAN.RM.4.4.1-00140-QCARMSWPZ-1
- atheros: ath10k: QCA9888 hw2.0: update board-2.bin
- atheros: ath10k: QCA9984 hw1.0: update board-2.bin
- realtek: rtw88: RTL8822C: update rtw8822c_fw.bin to v7.3
- realtek: rtl_bt: Update RTL8822C BT FW to V0x098A_94A4
- iwlwifi: update FWs to core45-152 release
- realtek: rtl_bt: Update RTL8723D BT FW to 0x828A_96F1
- amd-graphics: amdgpu: update raven2 ucode for 19.30
- amd-graphics: amdgpu: update vega10 ucode for 19.30
- amd-graphics: amdgpu: update vega12 ucode for 19.30
- copy-firmware: Create symlinks from WHENCE file
- Remove duplicate symlinks
- misc-nonfree: nvidia: Update Tegra210 XUSB firmware to v50.24
- atheros: ath10k: QCA6174 hw3.0: update board-2.bin
- atheros: ath10k: QCA9887 hw1.0: update firmware-5.bin to 10.2.4-1.0-00047
- atheros: ath10k: QCA9888 hw2.0: update firmware-5.bin to
10.4-3.9.0.2-00070
- atheros: ath10k: QCA988X hw2.0: update firmware-5.bin to 10.2.4-1.0-00047
- atheros: ath10k: QCA9984 hw1.0: update firmware-5.bin to
10.4-3.9.0.2-00070
- amd-graphics: amdgpu: update raven microcode for 19.50
- amd-graphics: amdgpu: update picasso microcode for 19.50
- atheros: qca: update bluetooth firmware for QCA6174
- netronome: nfp: update Agilio SmartNIC flower firmware to rev
AOTC-2.12.A.13