aboutsummaryrefslogtreecommitdiffstats
path: root/check_whence.py
diff options
authorJosh Boyer <jwboyer@kernel.org>2019-08-21 08:03:43 -0400
committerJosh Boyer <jwboyer@kernel.org>2019-08-21 08:03:43 -0400
commitc0fb3d9862477e31717e04e008debf6328b8980a (patch)
tree25cd90c3663c289fc242db69426c902ded59272c /check_whence.py
parentaa703aad295de9a3e515a503205458a0930b23b6 (diff)
check_whence: Add copy-firmware.sh to the list of ignored files
This was added recently as the script to install the firmware files. Add it to the ignored list so check_whence doesn't complain about it. Signed-off-by: Josh Boyer <jwboyer@kernel.org>
Diffstat (limited to 'check_whence.py')
-rwxr-xr-xcheck_whence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_whence.py b/check_whence.py
index 662c6097..523692c5 100755
--- a/check_whence.py
+++ b/check_whence.py
@@ -36,7 +36,7 @@ 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'])
+ 'README', 'copy-firmware.sh', 'WHENCE'])
known_prefixes = set(name for name in whence_list if name.endswith('/'))
git_files = set(list_git())