.gitignore 894 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. /spl/
  47. /tpl/
  48. /defconfig
  49. #
  50. # Generated include files
  51. #
  52. /include/config/
  53. /include/generated/
  54. # stgit generated dirs
  55. patches-*
  56. .stgit-edit.txt
  57. # quilt's files
  58. patches
  59. series
  60. # gdb files
  61. .gdb_history
  62. # cscope files
  63. cscope.*
  64. # tags files
  65. /tags
  66. /ctags
  67. /etags
  68. # gnu global files
  69. GPATH
  70. GRTAGS
  71. GSYMS
  72. GTAGS
  73. *.orig
  74. *~
  75. \#*#
  76. # gcc code coverage files
  77. *.gcda
  78. *.gcno