]> Git Repo - J-u-boot.git/blob - .gitignore
rockchip: rk3399-gru: Include pinctrl and regulators in SPL
[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 /drivers/video/u_boot_logo.S
79 /test/overlay/test-fdt-overlay.dtbo.S
80 /test/overlay/test-fdt-overlay-stacked.dtbo.S
81
82 #
83 # Generated include files
84 #
85 /include/autoconf.mk*
86 /include/config.h
87 /include/config/
88 /include/generated/
89 /include/bmp_logo.h
90 /include/bmp_logo_data.h
91
92 # stgit generated dirs
93 patches-*
94 .stgit-edit.txt
95
96 # quilt's files
97 patches
98 series
99
100 # gdb files
101 .gdb_history
102
103 # cscope files
104 cscope.*
105
106 # tags files
107 /tags
108 /ctags
109 /etags
110
111 # gnu global files
112 GPATH
113 GRTAGS
114 GSYMS
115 GTAGS
116
117 *.orig
118 *~
119 \#*#
120
121 # Python cache
122 __pycache__
123
124 # Python code coverage output (python3-coverage html)
125 /htmlcov/
126
127 # pylint files
128 /pylint.cur
129 /pylint.out/
130
131 # qconfig database
132 /qconfig.db
133
134 # Clang's compilation database file
135 /compile_commands.json
This page took 0.031557 seconds and 4 git commands to generate.