.gitignore 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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
  7. #
  8. .*
  9. *.o
  10. *.o.*
  11. *.a
  12. *.s
  13. *.su
  14. *.mod.c
  15. *.i
  16. *.lst
  17. *.order
  18. *.elf
  19. *.swp
  20. *.bin
  21. *.patch
  22. *.cfgtmp
  23. # host programs on Cygwin
  24. *.exe
  25. # Build tree
  26. /build-*
  27. #
  28. # Top-level generic files
  29. #
  30. fit-dtb.blob
  31. *.dtb
  32. /MLO*
  33. /SPL*
  34. /System.map
  35. /u-boot*
  36. /boards.cfg
  37. image.map
  38. #
  39. # git files that we don't want to ignore even it they are dot-files
  40. #
  41. !.gitignore
  42. !.mailmap
  43. #
  44. # Generated files
  45. #
  46. /LOG
  47. /spl/
  48. /tpl/
  49. /defconfig
  50. #
  51. # Generated include files
  52. #
  53. /include/config/
  54. /include/generated/
  55. # stgit generated dirs
  56. patches-*
  57. .stgit-edit.txt
  58. # quilt's files
  59. patches
  60. series
  61. # gdb files
  62. .gdb_history
  63. # cscope files
  64. cscope.*
  65. # tags files
  66. /tags
  67. /ctags
  68. /etags
  69. # gnu global files
  70. GPATH
  71. GRTAGS
  72. GSYMS
  73. GTAGS
  74. *.orig
  75. *~
  76. \#*#
  77. # gcc code coverage files
  78. *.gcda
  79. *.gcno