mirror of
https://github.com/qca/qca-swiss-army-knife.git
synced 2026-01-27 17:07:18 +01:00
Update ath10k-fw-repo
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
This commit is contained in:
parent
b011424559
commit
0df6dcf34f
1 changed files with 5 additions and 3 deletions
|
|
@ -644,9 +644,8 @@ def cmd_install(args):
|
|||
|
||||
logger.debug('Installing to directory %s' % (installdir))
|
||||
|
||||
# install firmware files
|
||||
for hw in sorted(hws.values()):
|
||||
bd_list = hw.board_files
|
||||
|
||||
# every Hardware() should have at least one firmware branch, the
|
||||
# main '.' branch so no need to check the length
|
||||
fw_list = sorted(sorted(hw.firmware_branches)[-1].firmwares)
|
||||
|
|
@ -708,7 +707,10 @@ def cmd_install(args):
|
|||
logger.debug(
|
||||
'No update needed for %s (%s)' % (dest, fw.fw_ver))
|
||||
|
||||
# install board files
|
||||
# install board files
|
||||
for hw in sorted(hws.values()):
|
||||
bd_list = hw.board_files
|
||||
|
||||
for bd in bd_list:
|
||||
installed = []
|
||||
dest = os.path.join(installdir, bd.path)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue