]> Git Repo - J-u-boot.git/blob - .gitignore
Merge commit 'f3f86fd1fe0fb288356bff78f8a6fa2edf89e3fc' as 'lib/lwip/lwip'
[J-u-boot.git] / .gitignore
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 !.checkpatch.conf
10 *.a
11 *.asn1.[ch]
12 *.bin
13 *.bin[_.]*
14 *.cfgout
15 *.cover
16 *.dtb
17 *.dtbo
18 *.dtb.S
19 *.elf
20 *.exe
21 *.fit
22 *.gcda
23 *.gcno
24 *.i
25 *.img
26 *.itb
27 *.lex.c
28 *.lst
29 *.map
30 *.mod.c
31 *.mbx
32 *.o
33 *.o.*
34 *.order
35 *.patch
36 *.pem
37 *.s
38 *.su
39 *.swp
40 *.tab.[ch]
41 *.ti-*
42 # Build tree
43 /build*
44
45 #
46 # Top-level generic files
47 #
48 fit-dtb.blob*
49 /MLO*
50 /SPL*
51 /System.map
52 /boards.cfg
53 /mkimage-in-simple-bin*
54 /simple-bin*
55 /u-boot*
56 /*.log
57
58 #
59 # git files that we don't want to ignore even it they are dot-files
60 #
61 !.gitignore
62 !.mailmap
63 !.get_maintainer.*
64
65 #
66 # Generated files
67 #
68 /spl/
69 /tpl/
70 /defconfig
71 /generated_defconfig
72 /Test*
73 /capsule.*.efi-capsule
74 /capsule*.map
75 /keep-syms-lto.*
76 /*imx8mimage*
77 /*imx8mcst*
78
79 #
80 # Generated include files
81 #
82 /include/autoconf.mk*
83 /include/config.h
84 /include/config/
85 /include/generated/
86
87 # stgit generated dirs
88 patches-*
89 .stgit-edit.txt
90
91 # quilt's files
92 patches
93 series
94
95 # gdb files
96 .gdb_history
97
98 # cscope files
99 cscope.*
100
101 # tags files
102 /tags
103 /ctags
104 /etags
105
106 # gnu global files
107 GPATH
108 GRTAGS
109 GSYMS
110 GTAGS
111
112 *.orig
113 *~
114 \#*#
115
116 # Python cache
117 __pycache__
118
119 # Python code coverage output (python3-coverage html)
120 /htmlcov/
121
122 # pylint files
123 /pylint.cur
124 /pylint.out/
125
126 # qconfig database
127 /qconfig.db
128
129 # Clang's compilation database file
130 /compile_commands.json
This page took 0.029595 seconds and 4 git commands to generate.