Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 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 | ||||
7 | # | ||||
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 8 | .* |
Grant Likely | 2f0fef7 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 9 | *.o |
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 10 | *.o.* |
11 | *.a | ||||
12 | *.s | ||||
Tom Rini | 78b2893 | 2012-02-14 07:29:36 +0000 | [diff] [blame] | 13 | *.su |
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 14 | *.mod.c |
15 | *.i | ||||
16 | *.lst | ||||
17 | *.order | ||||
18 | *.elf | ||||
Markus Heidelberg | 18e33d2 | 2008-09-09 17:31:46 +0200 | [diff] [blame] | 19 | *.swp |
ecc | b96ef76 | 2011-05-20 15:33:47 +0000 | [diff] [blame] | 20 | *.bin |
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 21 | *.patch |
Troy Kisky | a18d786 | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 22 | *.cfgtmp |
Stephen Warren | ac6afaf | 2013-07-24 10:09:18 -0700 | [diff] [blame] | 23 | *.dts.tmp |
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 24 | |
Timo Ketola | 88760df | 2012-04-11 23:33:49 +0000 | [diff] [blame] | 25 | # Build tree |
26 | /build-* | ||||
27 | |||||
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 28 | # |
29 | # Top-level generic files | ||||
30 | # | ||||
Justin Waters | 10777ac | 2013-07-11 09:55:01 -0400 | [diff] [blame] | 31 | /MLO* |
Benoît Thébaudeau | d9cca72 | 2013-04-11 09:35:55 +0000 | [diff] [blame] | 32 | /SPL |
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 33 | /System.map |
Grant Likely | 2f0fef7 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 34 | /u-boot |
Mike Frysinger | 908e776 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 35 | /u-boot.hex |
Stefano Babic | a07894c | 2010-12-28 10:23:27 +0100 | [diff] [blame] | 36 | /u-boot.imx |
Benoît Thébaudeau | b2c7920 | 2013-04-11 09:35:56 +0000 | [diff] [blame] | 37 | /u-boot-with-spl.imx |
Benoît Thébaudeau | 393b98d | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 38 | /u-boot-with-nand-spl.imx |
Grant Likely | 2f0fef7 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 39 | /u-boot.map |
Grant Likely | 2f0fef7 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 40 | /u-boot.srec |
Mike Frysinger | 908e776 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 41 | /u-boot.ldr |
42 | /u-boot.ldr.hex | ||||
43 | /u-boot.ldr.srec | ||||
ecc | b96ef76 | 2011-05-20 15:33:47 +0000 | [diff] [blame] | 44 | /u-boot.img |
45 | /u-boot.kwb | ||||
46 | /u-boot.sha1 | ||||
47 | /u-boot.dis | ||||
Mike Frysinger | c5f5311 | 2009-08-22 19:48:56 -0400 | [diff] [blame] | 48 | /u-boot.lds |
Heiko Schocher | 58cb84d | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 49 | /u-boot.ubl |
Christian Riesch | bd25f06 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 50 | /u-boot.ais |
Simon Glass | 5cb34db | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 51 | /u-boot.dtb |
Marek Vasut | b0d6296 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 52 | /u-boot.sb |
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 53 | |
54 | # | ||||
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 55 | # git files that we don't want to ignore even it they are dot-files |
56 | # | ||||
57 | !.gitignore | ||||
58 | !.mailmap | ||||
59 | |||||
60 | # | ||||
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 61 | # Generated files |
62 | # | ||||
63 | |||||
Simon Glass | 935c5bc | 2011-10-07 13:53:49 +0000 | [diff] [blame] | 64 | *.depend* |
Grant Likely | 2f0fef7 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 65 | /LOG |
66 | /errlog | ||||
67 | /reloc_off | ||||
68 | |||||
Masahiro Yamada | 55f5d8a | 2013-11-26 18:05:45 +0900 | [diff] [blame] | 69 | !/spl/Makefile |
Dan Murphy | a4cce93 | 2014-01-16 11:23:28 -0600 | [diff] [blame] | 70 | /spl/* |
Masahiro Yamada | 55f5d8a | 2013-11-26 18:05:45 +0900 | [diff] [blame] | 71 | /tpl/ |
72 | |||||
Wolfgang Denk | 81aa2eb | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 73 | /include/generated/ |
Daniel Schwierzeck | 433a810 | 2013-10-13 17:08:02 +0200 | [diff] [blame] | 74 | /include/spl-autoconf.mk |
75 | /include/tpl-autoconf.mk | ||||
Wolfgang Denk | 81aa2eb | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 76 | |
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 77 | # stgit generated dirs |
78 | patches-* | ||||
Jean-Christophe PLAGNIOL-VILLARD | f4fe348 | 2008-04-12 14:08:45 +0200 | [diff] [blame] | 79 | .stgit-edit.txt |
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 80 | |
81 | # quilt's files | ||||
82 | patches | ||||
83 | series | ||||
84 | |||||
Mike Frysinger | 633ae78 | 2008-11-02 01:18:18 -0400 | [diff] [blame] | 85 | # gdb files |
86 | .gdb_history | ||||
87 | |||||
Jean-Christophe PLAGNIOL-VILLARD | 7a2bb68 | 2007-12-09 11:01:10 +0100 | [diff] [blame] | 88 | # cscope files |
89 | cscope.* | ||||
Stefan Roese | 3762825 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 90 | |
Markus Heidelberg | 18e33d2 | 2008-09-09 17:31:46 +0200 | [diff] [blame] | 91 | # tags files |
Po-Yu Chuang | bc00f40 | 2009-07-10 18:25:34 +0800 | [diff] [blame] | 92 | /tags |
Markus Heidelberg | 18e33d2 | 2008-09-09 17:31:46 +0200 | [diff] [blame] | 93 | /ctags |
94 | /etags | ||||
95 | |||||
Masahiro Yamada | c15771a | 2013-05-12 18:14:05 +0000 | [diff] [blame] | 96 | # gnu global files |
97 | GPATH | ||||
98 | GRTAGS | ||||
99 | GSYMS | ||||
100 | GTAGS | ||||
Masahiro Yamada | f6c1d01 | 2014-02-04 17:24:08 +0900 | [diff] [blame] | 101 | |
102 | *.orig | ||||
103 | *~ | ||||
104 | \#*# |