diff options
author | Tom Rini <trini@konsulko.com> | 2020-08-23 15:53:10 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-23 15:53:10 -0400 |
commit | c84341f5acd6140f361300f02b354a7238f95b72 (patch) | |
tree | 117959487125291e3fb90035c2601638747dec5a /tools | |
parent | 2e6132d835631946b7a67dedd8f5bc902304b0f9 (diff) | |
parent | 4225f2f520f2557fb671e1aa02f9ef8090491be5 (diff) | |
download | u-boot-c84341f5acd6140f361300f02b354a7238f95b72.tar.gz u-boot-c84341f5acd6140f361300f02b354a7238f95b72.tar.xz u-boot-c84341f5acd6140f361300f02b354a7238f95b72.zip |
Merge branch '2020-08-21-stdio-cleanup'
- Clean up common/stdio.c and migrate some related options to Kconfig
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/moveconfig.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 36361f9ed1..9514d9a00c 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -666,7 +666,8 @@ def cleanup_headers(configs, options): if dirpath == os.path.join('include', 'generated'): continue for filename in filenames: - if not filename.endswith(('~', '.dts', '.dtsi')): + if not filename.endswith(('~', '.dts', '.dtsi', '.bin', + '.elf')): 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': |