.gitignore 899 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. *.lex.c
  17. *.lst
  18. *.order
  19. *.elf
  20. *.swp
  21. *.bin
  22. *.patch
  23. *.cfgtmp
  24. *.tab.[ch]
  25. # host programs on Cygwin
  26. *.exe
  27. # Build tree
  28. /build-*
  29. #
  30. # Top-level generic files
  31. #
  32. fit-dtb.blob
  33. /MLO*
  34. /SPL*
  35. /System.map
  36. /u-boot*
  37. /boards.cfg
  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