Commit 1f659b2e59c2db2cc3b1f0336f6015b782114d55

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 2e6b2f6ae0

.gitignore: ignore include/config/*

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Showing 1 changed file with 4 additions and 0 deletions Inline Diff

1 # 1 #
2 # NOTE! Don't add files that are generated in specific 2 # NOTE! Don't add files that are generated in specific
3 # subdirectories here. Add them in the ".gitignore" file 3 # subdirectories here. Add them in the ".gitignore" file
4 # in that subdirectory instead. 4 # in that subdirectory instead.
5 # 5 #
6 # Normal rules 6 # Normal rules
7 # 7 #
8 .* 8 .*
9 *.o 9 *.o
10 *.o.* 10 *.o.*
11 *.a 11 *.a
12 *.s 12 *.s
13 *.su 13 *.su
14 *.mod.c 14 *.mod.c
15 *.i 15 *.i
16 *.lst 16 *.lst
17 *.order 17 *.order
18 *.elf 18 *.elf
19 *.swp 19 *.swp
20 *.bin 20 *.bin
21 *.patch 21 *.patch
22 *.cfgtmp 22 *.cfgtmp
23 *.dts.tmp 23 *.dts.tmp
24 24
25 # Build tree 25 # Build tree
26 /build-* 26 /build-*
27 27
28 # 28 #
29 # Top-level generic files 29 # Top-level generic files
30 # 30 #
31 /MLO* 31 /MLO*
32 /SPL 32 /SPL
33 /System.map 33 /System.map
34 /u-boot* 34 /u-boot*
35 35
36 # 36 #
37 # git files that we don't want to ignore even it they are dot-files 37 # git files that we don't want to ignore even it they are dot-files
38 # 38 #
39 !.gitignore 39 !.gitignore
40 !.mailmap 40 !.mailmap
41 41
42 # 42 #
43 # Generated files 43 # Generated files
44 # 44 #
45 45
46 /LOG 46 /LOG
47 /errlog 47 /errlog
48 /reloc_off 48 /reloc_off
49 49
50 !/spl/Makefile 50 !/spl/Makefile
51 /spl/* 51 /spl/*
52 /tpl/ 52 /tpl/
53 53
54 #
55 # Generated include files
56 #
57 /include/config/
54 /include/generated/ 58 /include/generated/
55 /include/spl-autoconf.mk 59 /include/spl-autoconf.mk
56 /include/tpl-autoconf.mk 60 /include/tpl-autoconf.mk
57 61
58 # stgit generated dirs 62 # stgit generated dirs
59 patches-* 63 patches-*
60 .stgit-edit.txt 64 .stgit-edit.txt
61 65
62 # quilt's files 66 # quilt's files
63 patches 67 patches
64 series 68 series
65 69
66 # gdb files 70 # gdb files
67 .gdb_history 71 .gdb_history
68 72
69 # cscope files 73 # cscope files
70 cscope.* 74 cscope.*
71 75
72 # tags files 76 # tags files
73 /tags 77 /tags
74 /ctags 78 /ctags
75 /etags 79 /etags
76 80
77 # gnu global files 81 # gnu global files
78 GPATH 82 GPATH
79 GRTAGS 83 GRTAGS
80 GSYMS 84 GSYMS
81 GTAGS 85 GTAGS
82 86
83 *.orig 87 *.orig
84 *~ 88 *~
85 \#*# 89 \#*#
86 90