wifi_drv: enable loading of 5000 series FW

Fixes #3502.
This commit is contained in:
Josef Söntgen 2019-09-23 17:24:34 +02:00 committed by Christian Helmuth
parent 1782c6be79
commit c5706e8f4a
5 changed files with 6 additions and 3 deletions

View File

@ -1 +1 @@
aa28d681fc4c5c74f8e287608db1aedcb5cc35fc
ad00f3043d0fc14484e5e972393f7417cadbcb18

View File

@ -133,9 +133,9 @@ DIR(wpa_supplicant) := src/app/wpa_supplicant
#
# Firmware images
#
FW_REV := f92004aacf48a9e60c9d90f7e972bc3bb5184fb3
FW_REV := 83f7aa92f405048d4502e80c5390a9cbbd91a14f
URL(fw) := https://github.com/cnuke/dde_linux_firmware/archive/$(FW_REV).tar.gz
SHA(fw) := b927a83c4a5a20c9cc3f8bfb453f07278e222f84da4f17a44ab26f362eebad38
SHA(fw) := 507711b75436f9b46ce126c9cfb043e2404b266517ec51061939618de1758c98
DIR(fw) := firmware
#

View File

@ -28,6 +28,7 @@
<rom label="iwlwifi-1000-5.ucode"/>
<rom label="iwlwifi-3160-17.ucode"/>
<rom label="iwlwifi-3168-29.ucode"/>
<rom label="iwlwifi-5000-5.ucode"/>
<rom label="iwlwifi-6000-4.ucode"/>
<rom label="iwlwifi-6000g2a-6.ucode"/>
<rom label="iwlwifi-6000g2b-6.ucode"/>

View File

@ -25,6 +25,7 @@ Firmware_list fw_list[] = {
{ "iwlwifi-1000-5.ucode", 337520, nullptr },
{ "iwlwifi-3160-17.ucode", 918268, nullptr },
{ "iwlwifi-5000-5.ucode", 340696, nullptr },
{ "iwlwifi-6000-4.ucode", 454608, nullptr },
{ "iwlwifi-6000-6.ucode", 454608, "iwlwifi-6000-4.ucode" },
{ "iwlwifi-6000g2a-6.ucode", 677296, nullptr },

View File

@ -58,6 +58,7 @@ void Sculpt::gen_wifi_drv_start_content(Xml_generator &xml)
gen_parent_rom_route(xml, "iwlwifi-1000-5.ucode");
gen_parent_rom_route(xml, "iwlwifi-3160-17.ucode");
gen_parent_rom_route(xml, "iwlwifi-3168-17.ucode");
gen_parent_rom_route(xml, "iwlwifi-5000-5.ucode");
gen_parent_rom_route(xml, "iwlwifi-6000-4.ucode");
gen_parent_rom_route(xml, "iwlwifi-6000g2a-6.ucode");
gen_parent_rom_route(xml, "iwlwifi-6000g2b-6.ucode");