diff options
author | Keith Deacon | 2010-09-14 01:29:08 -0500 |
---|---|---|
committer | Keith Deacon | 2010-09-14 01:29:08 -0500 |
commit | f24bd786c6c34e2ed6317205140bd3266111395d (patch) | |
tree | 2689268305a1f182491923e3fc456ce624f73605 /.gitignore | |
download | device-ti-proprietary-open-f24bd786c6c34e2ed6317205140bd3266111395d.tar.gz device-ti-proprietary-open-f24bd786c6c34e2ed6317205140bd3266111395d.tar.xz device-ti-proprietary-open-f24bd786c6c34e2ed6317205140bd3266111395d.zip |
Initial blank repo
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..589f303 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,80 @@ | |||
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 | # NOTE! Please use 'git ls-files -i --exclude-standard' | ||
7 | # command after changing this file, to see if there are | ||
8 | # any tracked files which get ignored after the change. | ||
9 | # | ||
10 | # Normal rules | ||
11 | # | ||
12 | .* | ||
13 | *.o | ||
14 | *.o.* | ||
15 | *.a | ||
16 | *.s | ||
17 | *.ko | ||
18 | *.so | ||
19 | *.so.dbg | ||
20 | *.mod.c | ||
21 | *.i | ||
22 | *.lst | ||
23 | *.symtypes | ||
24 | *.order | ||
25 | *.elf | ||
26 | *.bin | ||
27 | *.gz | ||
28 | *.lzma | ||
29 | *.patch | ||
30 | *.gcno | ||
31 | *.map | ||
32 | *.so.* | ||
33 | *.out | ||
34 | |||
35 | # | ||
36 | # Top-level generic files | ||
37 | # | ||
38 | tags | ||
39 | TAGS | ||
40 | vmlinux | ||
41 | System.map | ||
42 | Module.markers | ||
43 | Module.symvers | ||
44 | !.gitignore | ||
45 | !.mailmap | ||
46 | |||
47 | # | ||
48 | # Generated include files | ||
49 | # | ||
50 | include/asm | ||
51 | include/asm-*/asm-offsets.h | ||
52 | include/config | ||
53 | include/linux/autoconf.h | ||
54 | include/linux/compile.h | ||
55 | include/linux/version.h | ||
56 | include/linux/utsrelease.h | ||
57 | include/linux/bounds.h | ||
58 | include/generated | ||
59 | |||
60 | # stgit generated dirs | ||
61 | patches-* | ||
62 | |||
63 | # quilt's files | ||
64 | patches | ||
65 | series | ||
66 | |||
67 | # cscope files | ||
68 | cscope.* | ||
69 | ncscope.* | ||
70 | target | ||
71 | target/* | ||
72 | # gnu global files | ||
73 | GPATH | ||
74 | GRTAGS | ||
75 | GSYMS | ||
76 | GTAGS | ||
77 | |||
78 | *.orig | ||
79 | *~ | ||
80 | \#*# | ||