Add Makefiles to automatically test all the DTS files.

There are several broken DTS files right now in the arm directory.
This commit is contained in:
Rui Paulo 2014-06-06 23:53:59 +00:00
parent 38d22923f7
commit 76b29e9c4f
5 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# $FreeBSD$
SUBDIR=arm mips powerpc
.include <bsd.subdir.mk>

View File

@ -0,0 +1,7 @@
# $FreeBSD$
test-dts:
.for dts in ${DTS}
dtc -I dts -O dtb -o /dev/null ${dts}
.endfor

View File

@ -0,0 +1,7 @@
# $FreeBSD$
DTS!=ls *.dts
all: test-dts
.include <bsd.init.mk>

View File

@ -0,0 +1,7 @@
# $FreeBSD$
DTS!=ls *.dts
all: test-dts
.include <bsd.init.mk>

View File

@ -0,0 +1,7 @@
# $FreeBSD$
DTS!=ls *.dts
all: test-dts
.include <bsd.init.mk>