Lines Matching full:files
27 # regular expression for matching Kconfig files
90 # allow to source only files which will be also checked by the script
404 'Kconfig files.'.format(os.path.abspath(__file__)))
419 parser.add_argument('files', nargs='*',
420 help='Kconfig files')
424 … help='Extra paths for recursively searching Kconfig files. (for example $IDF_PATH)',
438 files = [os.path.abspath(file_path) for file_path in args.files]
446 files.append(full_path)
448 # On Windows Kconfig files are working with different cases!
452 for full_path in files:
464 print('{} files have been ignored.'.format(ignore_counter))
466 print('{} files have been successfully checked.'.format(success_counter))
468 print('{} files have errors. Please take a look at the log.'.format(failure_counter))
471 if not files:
472 print('WARNING: no files specified. Please specify files or use '
473 '"--includes" to search Kconfig files recursively')