mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2025-01-17 12:31:55 +00:00
be15035deb
Some vendors save a couple of cents by not including an eeprom for wifi parameters on their boards. Instead the driver loads these board specific parameters through the request_firmware mechanism. Since these are board specific the filenames also must be board specific, on x86 DMI strings are used for this and the wifi chipname is postfixed with $sys_vendor-$product_name from the DMI tables. These DMi variables may contain spaces. This commit adds support to check_whence.py for filenames with spaces in them, after this commit these can be specified by putting double-quotes around them, e.g "name with spaces.bin". Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Josh Boyer <jwboyer@kernel.org>
61 lines
2.1 KiB
Python
Executable File
61 lines
2.1 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
import os, re, sys
|
|
|
|
def list_whence():
|
|
with open('WHENCE') as whence:
|
|
for line in whence:
|
|
match = re.match(r'(?:File|Link|Source):\s*"(.*)"', line)
|
|
if match:
|
|
yield match.group(1)
|
|
continue
|
|
match = re.match(r'(?:File|Link|Source):\s*(\S*)', line)
|
|
if match:
|
|
yield match.group(1)
|
|
continue
|
|
match = re.match(r'Licen[cs]e: (?:.*\bSee (.*) for details\.?|(\S*))\n',
|
|
line)
|
|
if match:
|
|
if match.group(1):
|
|
for name in re.split(r', | and ', match.group(1)):
|
|
yield name
|
|
continue
|
|
if match.group(2):
|
|
# Just one word - may or may not be a filename
|
|
if not re.search(r'unknown|distributable', match.group(2),
|
|
re.IGNORECASE):
|
|
yield match.group(2)
|
|
continue
|
|
|
|
def list_git():
|
|
with os.popen('git ls-files') as git_files:
|
|
for line in git_files:
|
|
yield line.rstrip('\n')
|
|
|
|
def main():
|
|
whence_list = list(list_whence())
|
|
known_files = set(name for name in whence_list if not name.endswith('/')) | \
|
|
set(['check_whence.py', 'configure', 'Makefile',
|
|
'README', 'WHENCE'])
|
|
known_prefixes = set(name for name in whence_list if name.endswith('/'))
|
|
git_files = set(list_git())
|
|
|
|
for name in sorted(list(known_files - git_files)):
|
|
sys.stderr.write('E: %s listed in WHENCE does not exist\n' % name)
|
|
|
|
for name in sorted(list(git_files - known_files)):
|
|
# Ignore subdirectory changelogs and GPG detached signatures
|
|
if (name.endswith('/ChangeLog') or
|
|
(name.endswith('.asc') and name[:-4] in known_files)):
|
|
continue
|
|
|
|
# Ignore unknown files in known directories
|
|
for prefix in known_prefixes:
|
|
if name.startswith(prefix):
|
|
break
|
|
else:
|
|
sys.stderr.write('E: %s not listed in WHENCE\n' % name)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|