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: Update EMMC flash script generation
Change-Id: I26c50de5b94536d32b9c171ff348d8b8e40eb1cd Signed-off-by: Praveenkumar I <quic_ipkumar@quicinc.com>
This commit is contained in:
parent
45d4d7068e
commit
724870b677
1 changed files with 2 additions and 2 deletions
|
|
@ -1552,11 +1552,11 @@ class Pack(object):
|
|||
if filename == "":
|
||||
continue
|
||||
wifi_fw_type = str(fw_type)
|
||||
if wifi_fw_type < wifi_fw_type_max:
|
||||
if wifi_fw_type < "7":
|
||||
ret = self.__gen_flash_script_wififw(entries, partition, filename, wifi_fw_type, flinfo, script, skip_size_check)
|
||||
if ret == 0:
|
||||
return 0
|
||||
elif wifi_fw_type == wifi_fw_type_max:
|
||||
elif wifi_fw_type == "7":
|
||||
ret = self.__gen_flash_script_wififw_qcn9224_v1(entries, partition, filename, wifi_fw_type, flinfo, script, skip_size_check)
|
||||
if ret == 0:
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue