Update ath10k-fw-repo

Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
This commit is contained in:
Kalle Valo 2024-03-04 19:12:39 +02:00
parent 8ec3e5dbb8
commit d23aaaec6e

View file

@ -32,6 +32,7 @@ blacklist = False
BRANCH_DEFAULT_PRIORITY = 1000
BRANCH_PRIORITY_FILE = '.priority'
BRANCH_IGNORE_FILE = '.ignore'
WHENCE_FILE = 'WHENCE'
FIRMWARE_BLACKLIST = [
@ -309,6 +310,10 @@ def scan_hw_ver(hw):
if not os.path.isdir(fw_branch_path):
continue
if os.path.exists(os.path.join(fw_branch_path, BRANCH_IGNORE_FILE)):
logger.debug('Ignoring firmware branch: %s' % (fw_branch))
continue
logger.debug('Found firmware branch: %s' % (fw_branch))
fb = FirmwareBranch(fw_branch, fw_branch_path)
hw.firmware_branches.append(fb)