diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/.gitignore | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/.gitignore')
-rw-r--r-- | roms/u-boot/.gitignore | 97 |
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__ |