mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
moveconfig.py: add to the "do not process" list
Skip the processing of *.aml and *.dat files while iterating through the source in order to process header files. Signed-off-by: Trevor Woerner <twoerner@gmail.com>
This commit is contained in:
parent
d9c3050710
commit
dc514d7ea2
1 changed files with 1 additions and 1 deletions
|
@ -679,7 +679,7 @@ def cleanup_headers(configs, options):
|
|||
continue
|
||||
for filename in filenames:
|
||||
if not filename.endswith(('~', '.dts', '.dtsi', '.bin',
|
||||
'.elf')):
|
||||
'.elf','.aml','.dat')):
|
||||
header_path = os.path.join(dirpath, filename)
|
||||
# This file contains UTF-16 data and no CONFIG symbols
|
||||
if header_path == 'include/video_font_data.h':
|
||||
|
|
Loading…
Reference in a new issue