From owner-svn-src-all@FreeBSD.ORG Mon Mar 2 22:12:57 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5F46FE4; Mon, 2 Mar 2015 22:12:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 912F4F66; Mon, 2 Mar 2015 22:12:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t22MCvES036494; Mon, 2 Mar 2015 22:12:57 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t22MCvp0036492; Mon, 2 Mar 2015 22:12:57 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201503022212.t22MCvp0036492@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Mon, 2 Mar 2015 22:12:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r279551 - in head/sys: arm/conf modules/dtb/imx6 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2015 22:12:57 -0000 Author: ian Date: Mon Mar 2 22:12:56 2015 New Revision: 279551 URL: https://svnweb.freebsd.org/changeset/base/279551 Log: Add a "module" to build the dtb files for all supported imx6 systems. Added: head/sys/modules/dtb/imx6/ head/sys/modules/dtb/imx6/Makefile (contents, props changed) Modified: head/sys/arm/conf/IMX6 Modified: head/sys/arm/conf/IMX6 ============================================================================== --- head/sys/arm/conf/IMX6 Mon Mar 2 22:03:13 2015 (r279550) +++ head/sys/arm/conf/IMX6 Mon Mar 2 22:12:56 2015 (r279551) @@ -153,6 +153,7 @@ device u3g # USB modems # Flattened Device Tree options FDT # Configure using FDT/DTB data +makeoptions MODULES_EXTRA=dtb/imx6 # SoC-specific devices device ffec # Freescale Fast Ethernet Controller Added: head/sys/modules/dtb/imx6/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/dtb/imx6/Makefile Mon Mar 2 22:12:56 2015 (r279551) @@ -0,0 +1,12 @@ +# $FreeBSD$ +# All the dts files for imx6 systems we support. +DTS= \ + imx6dl-cubox-i.dts \ + imx6q-cubox-i.dts \ + imx6dl-hummingboard.dts \ + imx6q-hummingboard.dts \ + imx6q-wandboard.dts \ + imx6dl-wandboard.dts \ + imx6s-wandboard.dts + +.include