.gitignore 825 字节
Newer Older
1 2 3 4 5 6 7
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# Normal rules
#
8
.*
G
Grant Likely 已提交
9
*.o
10 11 12
*.o.*
*.a
*.s
T
Tom Rini 已提交
13
*.su
14 15 16 17 18
*.mod.c
*.i
*.lst
*.order
*.elf
19
*.swp
20
*.bin
21
*.patch
22
*.cfgtmp
23

24 25 26
# host programs on Cygwin
*.exe

27 28 29
# Build tree
/build-*

30 31 32
#
# Top-level generic files
#
33
/MLO*
B
Benoît Thébaudeau 已提交
34
/SPL
35
/System.map
36
/u-boot*
37
/boards.cfg
38

39 40 41 42 43 44
#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

45 46 47
#
# Generated files
#
G
Grant Likely 已提交
48
/LOG
49
/spl/
50
/tpl/
B
Bin Meng 已提交
51
/defconfig
52

53 54 55 56
#
# Generated include files
#
/include/config/
57 58
/include/generated/

59 60
# stgit generated dirs
patches-*
61
.stgit-edit.txt
62 63 64 65 66

# quilt's files
patches
series

M
Mike Frysinger 已提交
67 68 69
# gdb files
.gdb_history

70 71
# cscope files
cscope.*
S
Stefan Roese 已提交
72

73
# tags files
P
Po-Yu Chuang 已提交
74
/tags
75 76 77
/ctags
/etags

78 79 80 81 82
# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS
83 84 85 86

*.orig
*~
\#*#