mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	This adds the build infrastructure for checking DT binding schema documents and validating dts files using the binding schema. Check DT binding schema documents: make dt_binding_check Build dts files and check using DT binding schema: make dtbs_check Optionally, DT_SCHEMA_FILES can be passed in with a schema file(s) to use for validation. This makes it easier to find and fix errors generated by a specific schema. Currently, the validation targets are separate from a normal build to avoid a hard dependency on the external DT schema project and because there are lots of warnings generated. Cc: Jonathan Corbet <corbet@lwn.net> Cc: Mark Rutland <mark.rutland@arm.com> Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Michal Marek <michal.lkml@markovi.net> Cc: linux-doc@vger.kernel.org Cc: devicetree@vger.kernel.org Cc: linux-kbuild@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
		
			
				
	
	
		
			135 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
#
 | 
						|
# NOTE! Don't add files that are generated in specific
 | 
						|
# subdirectories here. Add them in the ".gitignore" file
 | 
						|
# in that subdirectory instead.
 | 
						|
#
 | 
						|
# NOTE! Please use 'git ls-files -i --exclude-standard'
 | 
						|
# command after changing this file, to see if there are
 | 
						|
# any tracked files which get ignored after the change.
 | 
						|
#
 | 
						|
# Normal rules (sorted alphabetically)
 | 
						|
#
 | 
						|
.*
 | 
						|
*.a
 | 
						|
*.asn1.[ch]
 | 
						|
*.bin
 | 
						|
*.bz2
 | 
						|
*.c.[012]*.*
 | 
						|
*.dt.yaml
 | 
						|
*.dtb
 | 
						|
*.dtb.S
 | 
						|
*.dwo
 | 
						|
*.elf
 | 
						|
*.gcno
 | 
						|
*.gz
 | 
						|
*.i
 | 
						|
*.ko
 | 
						|
*.lex.c
 | 
						|
*.ll
 | 
						|
*.lst
 | 
						|
*.lz4
 | 
						|
*.lzma
 | 
						|
*.lzo
 | 
						|
*.mod.c
 | 
						|
*.o
 | 
						|
*.o.*
 | 
						|
*.order
 | 
						|
*.patch
 | 
						|
*.s
 | 
						|
*.so
 | 
						|
*.so.dbg
 | 
						|
*.su
 | 
						|
*.symtypes
 | 
						|
*.tab.[ch]
 | 
						|
*.tar
 | 
						|
*.xz
 | 
						|
Module.symvers
 | 
						|
modules.builtin
 | 
						|
 | 
						|
#
 | 
						|
# Top-level generic files
 | 
						|
#
 | 
						|
/tags
 | 
						|
/TAGS
 | 
						|
/linux
 | 
						|
/vmlinux
 | 
						|
/vmlinux.32
 | 
						|
/vmlinux-gdb.py
 | 
						|
/vmlinuz
 | 
						|
/System.map
 | 
						|
/Module.markers
 | 
						|
 | 
						|
#
 | 
						|
# RPM spec file (make rpm-pkg)
 | 
						|
#
 | 
						|
/*.spec
 | 
						|
 | 
						|
#
 | 
						|
# Debian directory (make deb-pkg)
 | 
						|
#
 | 
						|
/debian/
 | 
						|
 | 
						|
#
 | 
						|
# Snap directory (make snap-pkg)
 | 
						|
#
 | 
						|
/snap/
 | 
						|
 | 
						|
#
 | 
						|
# tar directory (make tar*-pkg)
 | 
						|
#
 | 
						|
/tar-install/
 | 
						|
 | 
						|
#
 | 
						|
# git files that we don't want to ignore even if they are dot-files
 | 
						|
#
 | 
						|
!.gitignore
 | 
						|
!.mailmap
 | 
						|
!.cocciconfig
 | 
						|
!.clang-format
 | 
						|
 | 
						|
#
 | 
						|
# Generated include files
 | 
						|
#
 | 
						|
include/config
 | 
						|
include/generated
 | 
						|
include/ksym
 | 
						|
arch/*/include/generated
 | 
						|
 | 
						|
# stgit generated dirs
 | 
						|
patches-*
 | 
						|
 | 
						|
# quilt's files
 | 
						|
patches
 | 
						|
series
 | 
						|
 | 
						|
# cscope files
 | 
						|
cscope.*
 | 
						|
ncscope.*
 | 
						|
 | 
						|
# gnu global files
 | 
						|
GPATH
 | 
						|
GRTAGS
 | 
						|
GSYMS
 | 
						|
GTAGS
 | 
						|
 | 
						|
# id-utils files
 | 
						|
ID
 | 
						|
 | 
						|
*.orig
 | 
						|
*~
 | 
						|
\#*#
 | 
						|
 | 
						|
#
 | 
						|
# Leavings from module signing
 | 
						|
#
 | 
						|
extra_certificates
 | 
						|
signing_key.pem
 | 
						|
signing_key.priv
 | 
						|
signing_key.x509
 | 
						|
x509.genkey
 | 
						|
 | 
						|
# Kconfig presets
 | 
						|
all.config
 | 
						|
 | 
						|
# Kdevelop4
 | 
						|
*.kdev4
 |