Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 May 2017 18:12:05 +0000 (UTC)
From:      Luiz Otavio O Souza <loos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r318068 - in head/sys: arm/conf modules/dtb/mv
Message-ID:  <201705091812.v49IC50b079203@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: loos
Date: Tue May  9 18:12:05 2017
New Revision: 318068
URL: https://svnweb.freebsd.org/changeset/base/318068

Log:
  Disable the build of the static/embedded DTB for the ARMADA38X kernel.
  
  Build the supported DTBs as part of modules build.
  
  MFC after:	2 weeks
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Added:
  head/sys/modules/dtb/mv/
  head/sys/modules/dtb/mv/Makefile   (contents, props changed)
Modified:
  head/sys/arm/conf/ARMADA38X

Modified: head/sys/arm/conf/ARMADA38X
==============================================================================
--- head/sys/arm/conf/ARMADA38X	Tue May  9 17:35:16 2017	(r318067)
+++ head/sys/arm/conf/ARMADA38X	Tue May  9 18:12:05 2017	(r318068)
@@ -12,6 +12,7 @@ ident 	ARMADA38X
 options 	SOC_MV_ARMADA38X
 
 makeoptions 	WERROR="-Werror"
+makeoptions 	MODULES_EXTRA="dtb/mv"
 
 options 	MD_ROOT
 #makeoptions 	MFS_IMAGE=/path/to/miniroot
@@ -78,7 +79,5 @@ device		cryptodev
 # L2 Cache
 device		pl310
 
-#FDT
+# FDT
 options 	FDT
-options 	FDT_DTB_STATIC
-makeoptions 	FDT_DTS_FILE=armada-388-gp.dts

Added: head/sys/modules/dtb/mv/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/dtb/mv/Makefile	Tue May  9 18:12:05 2017	(r318068)
@@ -0,0 +1,7 @@
+# $FreeBSD$
+# All the dts files for Marvell systems we support.
+DTS=	\
+	armada-388-clearfog.dts \
+	armada-388-gp.dts
+
+.include <bsd.dtb.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705091812.v49IC50b079203>