diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-11-13 16:42:41 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-11-23 22:53:48 +0300 |
commit | 163b7641f8d039ecf84abb8ac1ed9eff655c14e4 (patch) | |
tree | 86998af5218e2ce0666280e550688609d2fca66a /scripts | |
parent | 02b5670e65ae28d01dd8883968a2feddb77095b2 (diff) | |
download | u-boot-163b7641f8d039ecf84abb8ac1ed9eff655c14e4.tar.xz |
scripts: dtc: ignore files generated generated by python
Add __pycache__ to ignored files and extend the rule for _libfdt to also
include generated shared objects (e.g. _libfdt.cpython-37m-x86_64-linux-gnu.so).
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/dtc/pylibfdt/.gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/dtc/pylibfdt/.gitignore b/scripts/dtc/pylibfdt/.gitignore index 033f23dfdd..3a512001c9 100644 --- a/scripts/dtc/pylibfdt/.gitignore +++ b/scripts/dtc/pylibfdt/.gitignore @@ -1,4 +1,5 @@ -/_libfdt.so +/_libfdt.* /libfdt.py /libfdt.pyc /libfdt_wrap.c +/__pycache__ |