.gitignore 826 B

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