From mboxrd@z Thu Jan 1 00:00:00 1970 From: Trevor Woerner Date: Mon, 15 Mar 2021 12:01:33 -0400 Subject: [PATCH 2/2] moveconfig.py: add to the "do not process" list In-Reply-To: <20210315160133.3463-1-twoerner@gmail.com> References: <20210315160133.3463-1-twoerner@gmail.com> Message-ID: <20210315160133.3463-2-twoerner@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Skip the processing of *.aml and *.dat files while iterating through the source in order to process header files. Signed-off-by: Trevor Woerner --- tools/moveconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/moveconfig.py b/tools/moveconfig.py index dd92c00bb7..1e08b3cada 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -672,7 +672,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': -- 2.30.0.rc0