.gitignore 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. /MLO*
  31. /SPL
  32. /System.map
  33. /u-boot*
  34. /boards.cfg
  35. #
  36. # git files that we don't want to ignore even it they are dot-files
  37. #
  38. !.gitignore
  39. !.mailmap
  40. #
  41. # Generated files
  42. #
  43. /LOG
  44. /spl/
  45. /tpl/
  46. #
  47. # Generated include files
  48. #
  49. /include/config/
  50. /include/generated/
  51. # stgit generated dirs
  52. patches-*
  53. .stgit-edit.txt
  54. # quilt's files
  55. patches
  56. series
  57. # gdb files
  58. .gdb_history
  59. # cscope files
  60. cscope.*
  61. # tags files
  62. /tags
  63. /ctags
  64. /etags
  65. # gnu global files
  66. GPATH
  67. GRTAGS
  68. GSYMS
  69. GTAGS
  70. *.orig
  71. *~
  72. \#*#