svn commit: r279824 - in head/sys/modules: . dtb/am335x

Ian Lepore ian at FreeBSD.org
Mon Mar 9 21:50:11 UTC 2015


Author: ian
Date: Mon Mar  9 21:50:10 2015
New Revision: 279824
URL: https://svnweb.freebsd.org/changeset/base/279824

Log:
  Add a dtb module for AM335x systems (just Beaglebone right now).

Added:
  head/sys/modules/dtb/am335x/
  head/sys/modules/dtb/am335x/Makefile   (contents, props changed)
Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Mon Mar  9 21:31:37 2015	(r279823)
+++ head/sys/modules/Makefile	Mon Mar  9 21:50:10 2015	(r279824)
@@ -686,7 +686,13 @@ _snc=		snc
 .if ${MACHINE_CPUARCH} == "arm"
 _cfi=		cfi
 _cpsw=		cpsw
+.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
+_dtrace=	dtrace
+.endif
 _sound=		sound
+.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
+_opensolaris=	opensolaris
+.endif
 .endif
 
 .if ${MACHINE_CPUARCH} == "powerpc"

Added: head/sys/modules/dtb/am335x/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/dtb/am335x/Makefile	Mon Mar  9 21:50:10 2015	(r279824)
@@ -0,0 +1,7 @@
+# $FreeBSD$
+# All the dts files for am335x systems we support.
+DTS=	\
+	beaglebone.dts \
+        beaglebone-black.dts
+
+.include <bsd.dtb.mk>


More information about the svn-src-head mailing list