|
|
|
#
|
|
|
|
# NOTE! Don't add files that are generated in specific
|
|
|
|
# subdirectories here. Add them in the ".gitignore" file
|
|
|
|
# in that subdirectory instead.
|
|
|
|
#
|
|
|
|
# Normal rules
|
|
|
|
#
|
|
|
|
.*
|
|
|
|
*.o
|
|
|
|
*.o.*
|
|
|
|
*.a
|
|
|
|
*.s
|
|
|
|
*.su
|
|
|
|
*.mod.c
|
|
|
|
*.i
|
|
|
|
*.lst
|
|
|
|
*.order
|
|
|
|
*.elf
|
|
|
|
*.swp
|
|
|
|
*.bin
|
|
|
|
*.patch
|
|
|
|
*.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>
11 years ago
|
|
|
*.dts.tmp
|
|
|
|
|
|
|
|
# Build tree
|
|
|
|
/build-*
|
|
|
|
|
|
|
|
#
|
|
|
|
# Top-level generic files
|
|
|
|
#
|
|
|
|
/MLO*
|
|
|
|
/SPL
|
|
|
|
/System.map
|
|
|
|
/u-boot*
|
|
|
|
|
|
|
|
#
|
|
|
|
# git files that we don't want to ignore even it they are dot-files
|
|
|
|
#
|
|
|
|
!.gitignore
|
|
|
|
!.mailmap
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generated files
|
|
|
|
#
|
|
|
|
|
|
|
|
/LOG
|
|
|
|
/errlog
|
|
|
|
/reloc_off
|
|
|
|
|
|
|
|
!/spl/Makefile
|
|
|
|
/spl/*
|
|
|
|
/tpl/
|
|
|
|
|
|
|
|
/include/generated/
|
|
|
|
/include/spl-autoconf.mk
|
|
|
|
/include/tpl-autoconf.mk
|
|
|
|
|
|
|
|
# stgit generated dirs
|
|
|
|
patches-*
|
|
|
|
.stgit-edit.txt
|
|
|
|
|
|
|
|
# quilt's files
|
|
|
|
patches
|
|
|
|
series
|
|
|
|
|
|
|
|
# gdb files
|
|
|
|
.gdb_history
|
|
|
|
|
|
|
|
# cscope files
|
|
|
|
cscope.*
|
|
|
|
|
|
|
|
# tags files
|
|
|
|
/tags
|
|
|
|
/ctags
|
|
|
|
/etags
|
|
|
|
|
|
|
|
# gnu global files
|
|
|
|
GPATH
|
|
|
|
GRTAGS
|
|
|
|
GSYMS
|
|
|
|
GTAGS
|
|
|
|
|
|
|
|
*.orig
|
|
|
|
*~
|
|
|
|
\#*#
|