.gitignore 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. *.dts.tmp
  24. # Build tree
  25. /build-*
  26. #
  27. # Top-level generic files
  28. #
  29. /MLO*
  30. /SPL
  31. /System.map
  32. /u-boot*
  33. #
  34. # git files that we don't want to ignore even it they are dot-files
  35. #
  36. !.gitignore
  37. !.mailmap
  38. #
  39. # Generated files
  40. #
  41. /LOG
  42. /errlog
  43. /reloc_off
  44. !/spl/Makefile
  45. /spl/*
  46. /tpl/
  47. #
  48. # Generated include files
  49. #
  50. /include/config/
  51. /include/generated/
  52. /include/spl-autoconf.mk
  53. /include/tpl-autoconf.mk
  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. \#*#