svn commit: r267199 - head/sys/boot/fdt/dts

Rui Paulo rpaulo at FreeBSD.org
Sat Jun 7 02:38:14 UTC 2014


Author: rpaulo
Date: Sat Jun  7 02:38:13 2014
New Revision: 267199
URL: http://svnweb.freebsd.org/changeset/base/267199

Log:
  Fix the script to run make_dtb.sh instead of just dtc.

Modified:
  head/sys/boot/fdt/dts/Makefile.inc

Modified: head/sys/boot/fdt/dts/Makefile.inc
==============================================================================
--- head/sys/boot/fdt/dts/Makefile.inc	Sat Jun  7 02:30:10 2014	(r267198)
+++ head/sys/boot/fdt/dts/Makefile.inc	Sat Jun  7 02:38:13 2014	(r267199)
@@ -1,7 +1,10 @@
 # $FreeBSD$
 
+SYSDIR?=${.CURDIR}/../../../..
+
 test-dts:
 .for dts in ${DTS}
-	dtc -I dts -O dtb -o /dev/null ${dts}
+	@env MACHINE=`basename ${.CURDIR}` ${SYSDIR}/tools/fdt/make_dtb.sh ${SYSDIR} ${dts} /tmp
+
 .endfor
 


More information about the svn-src-all mailing list