@@ -213,7 +213,6 @@ tools/misc/xencov
tools/pkg-config/*
tools/qemu-xen-build
tools/xentrace/xenalyze
-tools/python/build/*
tools/tests/depriv/depriv-fd-checker
tools/tests/x86_emulator/*.bin
tools/tests/x86_emulator/*.tmp
@@ -370,8 +369,6 @@ tools/ocaml/test/raise_exception
tools/debugger/kdd/kdd
tools/firmware/etherboot/ipxe.tar.gz
tools/firmware/etherboot/ipxe/
-tools/python/xen/lowlevel/xl/_pyxl_types.c
-tools/python/xen/lowlevel/xl/_pyxl_types.h
tools/xl/xl
docs/txt/misc/*.txt
new file mode 100644
@@ -0,0 +1,3 @@
+/build/
+/xen.egg-info/
+/xen/lowlevel/xl/_pyxl_types.[ch]
Add a local .gitignore file for tools/python. As at least on some systems (e.g. OpenSUSE Leap 15.5) the build will produce a tools/python/xen.egg-info directory, add it to the new .gitignore file, too. Use "/dir/" as pattern for ignoring a directory and its contents, as the "/dir/*" pattern won't ignore the directory itself (git just doesn't complain when seeing a directory without any not ignored file in it). Signed-off-by: Juergen Gross <jgross@suse.com> --- .gitignore | 3 --- tools/python/.gitignore | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 tools/python/.gitignore