From owner-svn-src-head@FreeBSD.ORG Wed Mar 4 16:51:11 2015 Return-Path: Delivered-To: svn-src-head@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 C38C0429; Wed, 4 Mar 2015 16:51:11 +0000 (UTC) Received: from pmta1.delivery4.ore.mailhop.org (pmta1.delivery4.ore.mailhop.org [54.191.151.194]) by mx1.freebsd.org (Postfix) with ESMTP id A0BCDFA5; Wed, 4 Mar 2015 16:51:11 +0000 (UTC) Received: from smtp4.ore.mailhop.org (172.31.36.112) by pmta1.delivery1.ore.mailhop.org id husruu20r84t; Wed, 4 Mar 2015 16:20:44 +0000 (envelope-from ) Received: from c-73-34-117-227.hsd1.co.comcast.net ([73.34.117.227] helo=ilsoft.org) by smtp4.ore.mailhop.org with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.82) (envelope-from ) id 1YTC2d-0001b1-K0; Wed, 04 Mar 2015 16:20:59 +0000 Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id t24GKvpe096398; Wed, 4 Mar 2015 09:20:57 -0700 (MST) (envelope-from ian@freebsd.org) X-Mail-Handler: DuoCircle Outbound SMTP X-Originating-IP: 73.34.117.227 X-Report-Abuse-To: abuse@duocircle.com (see https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information for abuse reporting information) X-MHO-User: U2FsdGVkX19F1AmBxnoM5ZHqL53PBi86 Message-ID: <1425486057.31275.5.camel@freebsd.org> Subject: Re: svn commit: r279551 - in head/sys: arm/conf modules/dtb/imx6 From: Ian Lepore To: "Bjoern A. Zeeb" Date: Wed, 04 Mar 2015 09:20:57 -0700 In-Reply-To: <5357A8D1-559C-4D3D-BA6E-4A3181306435@FreeBSD.org> References: <201503022212.t22MCvp0036492@svn.freebsd.org> <5357A8D1-559C-4D3D-BA6E-4A3181306435@FreeBSD.org> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.12.10 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 04 Mar 2015 16:51:11 -0000 On Wed, 2015-03-04 at 16:01 +0000, Bjoern A. Zeeb wrote: > > On 02 Mar 2015, at 22:12 , Ian Lepore wrote: > > > > 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 > > + > > There is no imx6s-wandboard.dts in the tree it seems and thus IMX6 kernel builds are failing. Indeed. Except there was one (uncommitted, left over from long ago) on my system so I didn't see the build failure. Fixed now, sorry about that. -- Ian