.gitignore 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #
  2. # NOTE! Don't add files that are generated in specific
  3. # subdirectories here. Add them in the ".gitignore" file
  4. # in that subdirectory instead.
  5. #
  6. # Normal rules (sorted alphabetically)
  7. #
  8. .*
  9. *.a
  10. *.asn1.[ch]
  11. *.bin
  12. *.cfgout
  13. *.dtb
  14. *.dtbo
  15. *.dtb.S
  16. *.elf
  17. *.exe
  18. *.gcda
  19. *.gcno
  20. *.i
  21. *.img
  22. *.lex.c
  23. *.lst
  24. *.mod.c
  25. *.o
  26. *.o.*
  27. *.order
  28. *.patch
  29. *.s
  30. *.su
  31. *.swp
  32. *.tab.[ch]
  33. # Build tree
  34. /build-*
  35. #
  36. # Top-level generic files
  37. #
  38. fit-dtb.blob*
  39. /MLO*
  40. /SPL*
  41. /System.map
  42. /u-boot*
  43. /boards.cfg
  44. /*.log
  45. #
  46. # git files that we don't want to ignore even it they are dot-files
  47. #
  48. !.gitignore
  49. !.mailmap
  50. #
  51. # Generated files
  52. #
  53. /spl/
  54. /tpl/
  55. /defconfig
  56. #
  57. # Generated include files
  58. #
  59. /include/config/
  60. /include/generated/
  61. # stgit generated dirs
  62. patches-*
  63. .stgit-edit.txt
  64. # quilt's files
  65. patches
  66. series
  67. # gdb files
  68. .gdb_history
  69. # cscope files
  70. cscope.*
  71. # tags files
  72. /tags
  73. /ctags
  74. /etags
  75. # gnu global files
  76. GPATH
  77. GRTAGS
  78. GSYMS
  79. GTAGS
  80. *.orig
  81. *~
  82. \#*#
  83. # Python cache
  84. __pycache__