summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2021-03-15 19:01:33 +0300
committerTom Rini <trini@konsulko.com>2021-04-13 00:44:55 +0300
commitdc514d7ea2d03cf06d31f084ee356c01d35f9a83 (patch)
tree57b01e187decc168add35805c7f0f41ff198053d /tools
parentd9c305071069164feceaff3e543c61693bc2c401 (diff)
downloadu-boot-dc514d7ea2d03cf06d31f084ee356c01d35f9a83.tar.xz
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>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/moveconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index 1ac30c0028..41dd803c4e 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -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':