uboot/.gitignore
<<
>>
Prefs
   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
  24# host programs on Cygwin
  25*.exe
  26
  27# Build tree
  28/build-*
  29
  30#
  31# Top-level generic files
  32#
  33fit-dtb.blob
  34/MLO*
  35/SPL*
  36/System.map
  37/u-boot*
  38/boards.cfg
  39
  40#
  41# git files that we don't want to ignore even it they are dot-files
  42#
  43!.gitignore
  44!.mailmap
  45
  46#
  47# Generated files
  48#
  49/LOG
  50/spl/
  51/tpl/
  52/defconfig
  53
  54#
  55# Generated include files
  56#
  57/include/config/
  58/include/generated/
  59
  60# stgit generated dirs
  61patches-*
  62.stgit-edit.txt
  63
  64# quilt's files
  65patches
  66series
  67
  68# gdb files
  69.gdb_history
  70
  71# cscope files
  72cscope.*
  73
  74# tags files
  75/tags
  76/ctags
  77/etags
  78
  79# gnu global files
  80GPATH
  81GRTAGS
  82GSYMS
  83GTAGS
  84
  85*.orig
  86*~
  87\#*#
  88