mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
tools: pack_v2: revert wifi_fw skip for RDP473 & RDP480
Change-Id: Ieda941d25df0b67a9ca9460ecd7cfbc0ee216e4f Signed-off-by: Saahil Tomar <quic_saahtoma@quicinc.com>
This commit is contained in:
parent
ffdeef81a5
commit
bc7713e26f
1 changed files with 3 additions and 6 deletions
|
|
@ -945,12 +945,6 @@ class Pack(object):
|
|||
wifi_fw_list = []
|
||||
no_fw_mach_ids = []
|
||||
for segment in entries:
|
||||
machid = int(segment.find(".//machid").text, 0)
|
||||
machid = "%x" % machid
|
||||
if flash_size == "" and self.flash_type in ['nand', 'norplusnand']:
|
||||
if str(machid) in ['8060008', '8060402']:
|
||||
print("skipped wifi fw of " + str(machid))
|
||||
continue;
|
||||
if (memory_size != "default"):
|
||||
profiles = segment.find('.//profiles')
|
||||
if (profiles == None):
|
||||
|
|
@ -960,6 +954,9 @@ class Pack(object):
|
|||
|
||||
wififw_type = segment.find('.//wififw_name')
|
||||
if wififw_type == None:
|
||||
machid = int(segment.find(".//machid").text, 0)
|
||||
machid = "%x" % machid
|
||||
|
||||
no_fw_mach_ids.append(machid)
|
||||
continue
|
||||
wififw_type = str(segment.find(".//wififw_name").text)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue