-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
93 lines (77 loc) · 1.19 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# Normal rules
#
.*
*.o
*.o.*
*.a
*.s
*.su
*.mod.c
*.i
*.lst
*.order
*.elf
*.swp
*.bin
*.patch
*.cfgtmp
# host programs on Cygwin
*.exe
/toolchain/
#
# Top-level generic files
#
/u-boot/System.map
/u-boot/u-boot*
/u-boot/bootstrap
/u-boot/bootstrap.map
# MD5 in bin
/bin/*.md5
# Symbolic links and some compilation results from tools
/u-boot/tools/crc32.c
/u-boot/tools/environment.c
/u-boot/tools/envcrc
/u-boot/tools/mkimage
# Auto generated fsdata.c
/u-boot/httpd/fsdata.c
# Generated include files
/u-boot/include/asm
/u-boot/include/config.h
/u-boot/include/config.mk
/u-boot/include/version_autogenerated.h
# TODO: broken symbolic link
/u-boot/include/asm-*/arch
# Do not ignore original u-boot images
!/original_u-boot_images/*.bin
#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap
# stgit generated dirs
patches-*
.stgit-edit.txt
# quilt's files
patches
series
# gdb files
.gdb_history
# cscope files
cscope.*
# tags files
/tags
/ctags
/etags
# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS
*.orig
*~
\#*#