Browse Source

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>
Bartosz Golaszewski 4 years ago
parent
commit
163b7641f8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      scripts/dtc/pylibfdt/.gitignore

+ 2 - 1
scripts/dtc/pylibfdt/.gitignore

@@ -1,4 +1,5 @@
-/_libfdt.so
+/_libfdt.*
 /libfdt.py
 /libfdt.pyc
 /libfdt_wrap.c
+/__pycache__