scripts: teach modinfo to skip non-C sources

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
staging
Marc-André Lureau 2021-07-15 11:54:13 +04:00
parent ebced09185
commit 20f19713ef
1 changed files with 3 additions and 0 deletions

View File

@ -51,6 +51,9 @@ def main(args):
with open('compile_commands.json') as f:
compile_commands = json.load(f)
for src in args:
if not src.endswith('.c'):
print("MODINFO_DEBUG skip %s" % src)
continue
print("MODINFO_DEBUG src %s" % src)
command = find_command(src, target, compile_commands)
cmdline = process_command(src, command)