2007-12-09 18:01:10 +08:00
|
|
|
#
|
|
|
|
# NOTE! Don't add files that are generated in specific
|
|
|
|
# subdirectories here. Add them in the ".gitignore" file
|
|
|
|
# in that subdirectory instead.
|
|
|
|
#
|
|
|
|
# Normal rules
|
|
|
|
#
|
|
|
|
|
|
|
|
*.rej
|
2007-09-24 23:05:30 +08:00
|
|
|
*.orig
|
|
|
|
*.a
|
|
|
|
*.o
|
2012-02-14 15:29:36 +08:00
|
|
|
*.su
|
2008-01-21 23:46:00 +08:00
|
|
|
*~
|
2008-09-09 23:31:46 +08:00
|
|
|
*.swp
|
2008-04-12 20:08:45 +08:00
|
|
|
*.patch
|
2011-05-20 23:33:47 +08:00
|
|
|
*.bin
|
2013-01-19 00:14:24 +08:00
|
|
|
*.cfgtmp
|
dts/Makefile: simplify dtc invocation
The invocation of dtc is significantly more complex that it could be,
in order to work around an issue on old versions of dtc, which print
a message to stdout every time they run.
Remove this workaround, on the assumption that people have or will
upgrade to a newer version of dtc. This simplifies the build rule
significantly.
Related, split the invocation of cpp and dtc into separate commands
rather than a pipeline, so that if either fail, it is detected. This has
the nice benefit of saving off the result of the pre-processing step,
allowing it to be easily inspected.
Assuming a new enough dtc (which an earlier patch enforces), dtc will
parse #line directives in its input file, and generate correct file and
line numbers in error messages, even though cpp is unconditionally
applied to its input file.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
2013-07-25 01:09:18 +08:00
|
|
|
*.dts.tmp
|
2007-12-09 18:01:10 +08:00
|
|
|
|
2012-04-12 07:33:49 +08:00
|
|
|
# Build tree
|
|
|
|
/build-*
|
|
|
|
|
2007-12-09 18:01:10 +08:00
|
|
|
#
|
|
|
|
# Top-level generic files
|
|
|
|
#
|
|
|
|
|
2013-07-11 21:55:01 +08:00
|
|
|
/MLO*
|
2013-04-11 17:35:55 +08:00
|
|
|
/SPL
|
2007-12-09 18:01:10 +08:00
|
|
|
/System.map
|
2007-09-24 23:05:30 +08:00
|
|
|
/u-boot
|
2008-02-05 08:26:57 +08:00
|
|
|
/u-boot.hex
|
2010-12-28 17:23:27 +08:00
|
|
|
/u-boot.imx
|
2013-04-11 17:35:56 +08:00
|
|
|
/u-boot-with-spl.imx
|
2013-04-11 17:35:57 +08:00
|
|
|
/u-boot-with-nand-spl.imx
|
2007-09-24 23:05:30 +08:00
|
|
|
/u-boot.map
|
|
|
|
/u-boot.srec
|
2008-02-05 08:26:57 +08:00
|
|
|
/u-boot.ldr
|
|
|
|
/u-boot.ldr.hex
|
|
|
|
/u-boot.ldr.srec
|
2011-05-20 23:33:47 +08:00
|
|
|
/u-boot.img
|
|
|
|
/u-boot.kwb
|
|
|
|
/u-boot.sha1
|
|
|
|
/u-boot.dis
|
2009-08-23 07:48:56 +08:00
|
|
|
/u-boot.lds
|
2011-07-16 08:06:42 +08:00
|
|
|
/u-boot.ubl
|
2011-12-09 17:47:39 +08:00
|
|
|
/u-boot.ais
|
2011-10-25 03:15:31 +08:00
|
|
|
/u-boot.dtb
|
2011-11-09 07:18:19 +08:00
|
|
|
/u-boot.sb
|
2013-04-28 22:18:49 +08:00
|
|
|
/u-boot.bd
|
2012-04-12 07:33:49 +08:00
|
|
|
/u-boot.geany
|
2007-12-09 18:01:10 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Generated files
|
|
|
|
#
|
|
|
|
|
2011-10-07 21:53:49 +08:00
|
|
|
*.depend*
|
2007-09-24 23:05:30 +08:00
|
|
|
/LOG
|
|
|
|
/errlog
|
|
|
|
/reloc_off
|
|
|
|
|
2010-10-26 06:08:35 +08:00
|
|
|
/include/generated/
|
2011-09-30 20:09:39 +08:00
|
|
|
asm-offsets.s
|
2010-10-26 06:08:35 +08:00
|
|
|
|
2007-12-09 18:01:10 +08:00
|
|
|
# stgit generated dirs
|
|
|
|
patches-*
|
2008-04-12 20:08:45 +08:00
|
|
|
.stgit-edit.txt
|
2007-12-09 18:01:10 +08:00
|
|
|
|
|
|
|
# quilt's files
|
|
|
|
patches
|
|
|
|
series
|
|
|
|
|
2008-11-02 13:18:18 +08:00
|
|
|
# gdb files
|
|
|
|
.gdb_history
|
|
|
|
|
2007-12-09 18:01:10 +08:00
|
|
|
# cscope files
|
|
|
|
cscope.*
|
2008-08-06 20:05:38 +08:00
|
|
|
|
2008-09-09 23:31:46 +08:00
|
|
|
# tags files
|
2009-07-10 18:25:34 +08:00
|
|
|
/tags
|
2008-09-09 23:31:46 +08:00
|
|
|
/ctags
|
|
|
|
/etags
|
|
|
|
|
2013-05-13 02:14:05 +08:00
|
|
|
# gnu global files
|
|
|
|
GPATH
|
|
|
|
GRTAGS
|
|
|
|
GSYMS
|
|
|
|
GTAGS
|
|
|
|
|
2012-06-13 16:39:06 +08:00
|
|
|
# spl ais files
|
|
|
|
/spl/*.ais
|