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 (sorted alphabetically)
   7#
   8.*
   9*.a
  10*.bin
  11*.cfgout
  12*.dtb
  13*.dtbo
  14*.dtb.S
  15*.elf
  16*.exe
  17*.gcda
  18*.gcno
  19*.i
  20*.lex.c
  21*.lst
  22*.mod.c
  23*.o
  24*.o.*
  25*.order
  26*.patch
  27*.s
  28*.su
  29*.swp
  30*.tab.[ch]
  31
  32# Build tree
  33/build-*
  34
  35#
  36# Top-level generic files
  37#
  38fit-dtb.blob
  39/MLO*
  40/SPL*
  41/System.map
  42/u-boot*
  43/boards.cfg
  44
  45#
  46# git files that we don't want to ignore even it they are dot-files
  47#
  48!.gitignore
  49!.mailmap
  50
  51#
  52# Generated files
  53#
  54/spl/
  55/tpl/
  56/defconfig
  57
  58#
  59# Generated include files
  60#
  61/include/config/
  62/include/generated/
  63
  64# stgit generated dirs
  65patches-*
  66.stgit-edit.txt
  67
  68# quilt's files
  69patches
  70series
  71
  72# gdb files
  73.gdb_history
  74
  75# cscope files
  76cscope.*
  77
  78# tags files
  79/tags
  80/ctags
  81/etags
  82
  83# gnu global files
  84GPATH
  85GRTAGS
  86GSYMS
  87GTAGS
  88
  89*.orig
  90*~
  91\#*#
  92