2007-12-09 10:01:10 +00: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
|
|
|
|
#
|
2014-02-04 08:24:08 +00:00
|
|
|
.*
|
2007-09-24 15:05:30 +00:00
|
|
|
*.o
|
2014-02-04 08:24:08 +00:00
|
|
|
*.o.*
|
|
|
|
*.a
|
|
|
|
*.s
|
2012-02-14 07:29:36 +00:00
|
|
|
*.su
|
2014-02-04 08:24:08 +00:00
|
|
|
*.mod.c
|
|
|
|
*.i
|
|
|
|
*.lst
|
|
|
|
*.order
|
|
|
|
*.elf
|
2008-09-09 15:31:46 +00:00
|
|
|
*.swp
|
2011-05-20 15:33:47 +00:00
|
|
|
*.bin
|
2014-02-04 08:24:08 +00:00
|
|
|
*.patch
|
2013-01-18 16:14:24 +00: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-24 17:09:18 +00:00
|
|
|
*.dts.tmp
|
2007-12-09 10:01:10 +00:00
|
|
|
|
2012-04-11 23:33:49 +00:00
|
|
|
# Build tree
|
|
|
|
/build-*
|
|
|
|
|
2007-12-09 10:01:10 +00:00
|
|
|
#
|
|
|
|
# Top-level generic files
|
|
|
|
#
|
2013-07-11 13:55:01 +00:00
|
|
|
/MLO*
|
2013-04-11 09:35:55 +00:00
|
|
|
/SPL
|
2007-12-09 10:01:10 +00:00
|
|
|
/System.map
|
2007-09-24 15:05:30 +00:00
|
|
|
/u-boot
|
2008-02-05 00:26:57 +00:00
|
|
|
/u-boot.hex
|
2010-12-28 09:23:27 +00:00
|
|
|
/u-boot.imx
|
2013-04-11 09:35:56 +00:00
|
|
|
/u-boot-with-spl.imx
|
2013-04-11 09:35:57 +00:00
|
|
|
/u-boot-with-nand-spl.imx
|
2007-09-24 15:05:30 +00:00
|
|
|
/u-boot.map
|
|
|
|
/u-boot.srec
|
2008-02-05 00:26:57 +00:00
|
|
|
/u-boot.ldr
|
|
|
|
/u-boot.ldr.hex
|
|
|
|
/u-boot.ldr.srec
|
2011-05-20 15:33:47 +00:00
|
|
|
/u-boot.img
|
|
|
|
/u-boot.kwb
|
|
|
|
/u-boot.sha1
|
|
|
|
/u-boot.dis
|
2009-08-22 23:48:56 +00:00
|
|
|
/u-boot.lds
|
2011-07-16 00:06:42 +00:00
|
|
|
/u-boot.ubl
|
2011-12-09 09:47:39 +00:00
|
|
|
/u-boot.ais
|
2011-11-08 23:18:19 +00:00
|
|
|
/u-boot.sb
|
2007-12-09 10:01:10 +00:00
|
|
|
|
2014-02-04 08:24:08 +00:00
|
|
|
#
|
|
|
|
# git files that we don't want to ignore even it they are dot-files
|
|
|
|
#
|
|
|
|
!.gitignore
|
|
|
|
!.mailmap
|
|
|
|
|
2007-12-09 10:01:10 +00:00
|
|
|
#
|
|
|
|
# Generated files
|
|
|
|
#
|
|
|
|
|
2007-09-24 15:05:30 +00:00
|
|
|
/LOG
|
|
|
|
/errlog
|
|
|
|
/reloc_off
|
|
|
|
|
2013-11-26 09:05:45 +00:00
|
|
|
!/spl/Makefile
|
2014-01-16 17:23:28 +00:00
|
|
|
/spl/*
|
2013-11-26 09:05:45 +00:00
|
|
|
/tpl/
|
|
|
|
|
2010-10-25 22:08:35 +00:00
|
|
|
/include/generated/
|
2013-10-13 15:08:02 +00:00
|
|
|
/include/spl-autoconf.mk
|
|
|
|
/include/tpl-autoconf.mk
|
2010-10-25 22:08:35 +00:00
|
|
|
|
2007-12-09 10:01:10 +00:00
|
|
|
# stgit generated dirs
|
|
|
|
patches-*
|
2008-04-12 12:08:45 +00:00
|
|
|
.stgit-edit.txt
|
2007-12-09 10:01:10 +00:00
|
|
|
|
|
|
|
# quilt's files
|
|
|
|
patches
|
|
|
|
series
|
|
|
|
|
2008-11-02 05:18:18 +00:00
|
|
|
# gdb files
|
|
|
|
.gdb_history
|
|
|
|
|
2007-12-09 10:01:10 +00:00
|
|
|
# cscope files
|
|
|
|
cscope.*
|
2008-08-06 12:05:38 +00:00
|
|
|
|
2008-09-09 15:31:46 +00:00
|
|
|
# tags files
|
2009-07-10 10:25:34 +00:00
|
|
|
/tags
|
2008-09-09 15:31:46 +00:00
|
|
|
/ctags
|
|
|
|
/etags
|
|
|
|
|
2013-05-12 18:14:05 +00:00
|
|
|
# gnu global files
|
|
|
|
GPATH
|
|
|
|
GRTAGS
|
|
|
|
GSYMS
|
|
|
|
GTAGS
|
2014-02-04 08:24:08 +00:00
|
|
|
|
|
|
|
*.orig
|
|
|
|
*~
|
|
|
|
\#*#
|