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