.gitignore 856 B

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