summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2015-01-08 18:28:06 +0000
committerimp <imp@FreeBSD.org>2015-01-08 18:28:06 +0000
commit3d65b7b70c14ee2b8218e875827dfbccf647cb33 (patch)
treec1fd1efc5975e1896b90b96ae60759714143d609 /share
parentabec420f04cfc04d27c1e212da060f4ad48a07c8 (diff)
downloadFreeBSD-src-3d65b7b70c14ee2b8218e875827dfbccf647cb33.zip
FreeBSD-src-3d65b7b70c14ee2b8218e875827dfbccf647cb33.tar.gz
Add infrastructure to build dtb files from dts files.
Diffstat (limited to 'share')
-rw-r--r--share/mk/Makefile1
-rw-r--r--share/mk/bsd.dtb.mk17
2 files changed, 18 insertions, 0 deletions
diff --git a/share/mk/Makefile b/share/mk/Makefile
index cd69ca8..c481a22 100644
--- a/share/mk/Makefile
+++ b/share/mk/Makefile
@@ -11,6 +11,7 @@ FILES= \
bsd.crunchgen.mk \
bsd.dep.mk \
bsd.doc.mk \
+ bsd.dtb.mk \
bsd.endian.mk \
bsd.files.mk \
bsd.incs.mk \
diff --git a/share/mk/bsd.dtb.mk b/share/mk/bsd.dtb.mk
new file mode 100644
index 0000000..24e6930
--- /dev/null
+++ b/share/mk/bsd.dtb.mk
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+# Search for kernel source tree in standard places.
+.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. ${.CURDIR}/../../../.. \
+ ${.CURDIR}/../../../../.. /sys /usr/src/sys
+.if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/kmod.mk)
+SYSDIR= ${_dir}
+.endif
+.endfor
+.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/) || \
+ !exists(${SYSDIR}/conf/kmod.mk)
+.error Unable to locate the kernel source tree. Set SYSDIR to override.
+.endif
+
+.include "${SYSDIR}/conf/dtb.mk"
+
+.include <bsd.sys.mk>
OpenPOWER on IntegriCloud