.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. fit-dtb.blob
  31. /MLO*
  32. /SPL*
  33. /System.map
  34. /u-boot*
  35. /boards.cfg
  36. #
  37. # git files that we don't want to ignore even it they are dot-files
  38. #
  39. !.gitignore
  40. !.mailmap
  41. #
  42. # Generated files
  43. #
  44. /LOG
  45. /spl/
  46. /tpl/
  47. /defconfig
  48. #
  49. # Generated include files
  50. #
  51. /include/config/
  52. /include/generated/
  53. # Since "ee95d10 fdt: Build the new python libfdt module", a number of
  54. # build artifacts and intermediated from the python libfdt module are
  55. # installed into the /tools directory.
  56. /tools/_libfdt.so
  57. /tools/libfdt.py
  58. /tools/libfdt.pyc
  59. /tools/libfdt_wrap.c
  60. # stgit generated dirs
  61. patches-*
  62. .stgit-edit.txt
  63. # quilt's files
  64. patches
  65. series
  66. # gdb files
  67. .gdb_history
  68. # cscope files
  69. cscope.*
  70. # tags files
  71. /tags
  72. /ctags
  73. /etags
  74. # gnu global files
  75. GPATH
  76. GRTAGS
  77. GSYMS
  78. GTAGS
  79. *.orig
  80. *~
  81. \#*#