aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/.gitignore')
-rw-r--r--roms/u-boot/.gitignore97
1 files changed, 97 insertions, 0 deletions
diff --git a/roms/u-boot/.gitignore b/roms/u-boot/.gitignore
new file mode 100644
index 000000000..e66aa864d
--- /dev/null
+++ b/roms/u-boot/.gitignore
@@ -0,0 +1,97 @@
+#
+# NOTE! Don't add files that are generated in specific
+# subdirectories here. Add them in the ".gitignore" file
+# in that subdirectory instead.
+#
+# Normal rules (sorted alphabetically)
+#
+.*
+*.a
+*.asn1.[ch]
+*.bin
+*.cfgout
+*.dtb
+*.dtbo
+*.dtb.S
+*.elf
+*.exe
+*.gcda
+*.gcno
+*.i
+*.img
+*.lex.c
+*.lst
+*.mod.c
+*.o
+*.o.*
+*.order
+*.patch
+*.s
+*.su
+*.swp
+*.tab.[ch]
+
+# Build tree
+/build-*
+
+#
+# Top-level generic files
+#
+fit-dtb.blob*
+/MLO*
+/SPL*
+/System.map
+/u-boot*
+/boards.cfg
+/*.log
+
+#
+# git files that we don't want to ignore even it they are dot-files
+#
+!.gitignore
+!.mailmap
+
+#
+# Generated files
+#
+/spl/
+/tpl/
+/defconfig
+
+#
+# Generated include files
+#
+/include/config/
+/include/generated/
+
+# stgit generated dirs
+patches-*
+.stgit-edit.txt
+
+# quilt's files
+patches
+series
+
+# gdb files
+.gdb_history
+
+# cscope files
+cscope.*
+
+# tags files
+/tags
+/ctags
+/etags
+
+# gnu global files
+GPATH
+GRTAGS
+GSYMS
+GTAGS
+
+*.orig
+*~
+\#*#
+
+# Python cache
+__pycache__