From owner-svn-src-head@freebsd.org Tue May 9 18:12:07 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31CA5D65901; Tue, 9 May 2017 18:12:07 +0000 (UTC) (envelope-from loos@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0201C132D; Tue, 9 May 2017 18:12:06 +0000 (UTC) (envelope-from loos@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v49IC5SG079205; Tue, 9 May 2017 18:12:05 GMT (envelope-from loos@FreeBSD.org) Received: (from loos@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v49IC50b079203; Tue, 9 May 2017 18:12:05 GMT (envelope-from loos@FreeBSD.org) Message-Id: <201705091812.v49IC50b079203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loos set sender to loos@FreeBSD.org using -f From: Luiz Otavio O Souza Date: Tue, 9 May 2017 18:12:05 +0000 (UTC) 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 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 May 2017 18:12:07 -0000 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