From owner-svn-src-all@FreeBSD.ORG Fri May 3 18:54:01 2013 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DAEE04AF; Fri, 3 May 2013 18:54:01 +0000 (UTC) (envelope-from gonzo@id.bluezbox.com) Received: from id.bluezbox.com (id.bluezbox.com [88.198.91.248]) by mx1.freebsd.org (Postfix) with ESMTP id 8B3181D81; Fri, 3 May 2013 18:54:01 +0000 (UTC) Received: from [88.198.91.248] (helo=[IPv6:::1]) by id.bluezbox.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1UYL7A-00070M-8k; Fri, 03 May 2013 11:53:54 -0700 Message-ID: <518407BE.2020501@freebsd.org> Date: Fri, 03 May 2013 11:53:50 -0700 From: Oleksandr Tymoshenko User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130328 Thunderbird/17.0.5 MIME-Version: 1.0 To: Tim Kientzle Subject: Re: svn commit: r249774 - head/sys/boot/fdt/dts References: <201304221853.r3MIram6060889@svn.freebsd.org> <8DA5B1ED-C616-4D2F-9235-E37A89F7EABE@kientzle.com> In-Reply-To: <8DA5B1ED-C616-4D2F-9235-E37A89F7EABE@kientzle.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: gonzo@id.bluezbox.com X-Spam-Level: -- X-Spam-Report: Spam detection software, running on the system "id.bluezbox.com", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: On 4/29/2013 9:31 PM, Tim Kientzle wrote: > On Apr 22, 2013, at 11:53 AM, Oleksandr Tymoshenko wrote: > >> Author: gonzo >> Date: Mon Apr 22 18:53:36 2013 >> New Revision: 249774 >> URL: http://svnweb.freebsd.org/changeset/base/249774 >> >> Log: >> Split BeagleBone DTS to generic AM335x part and Beagle-bone specific >> >> Added: >> head/sys/boot/fdt/dts/am335x.dtsi (contents, props changed) >> Modified: >> head/sys/boot/fdt/dts/beaglebone.dts >> >> Added: head/sys/boot/fdt/dts/am335x.dtsi >> ============================================================================== >> + >> +/ { >> + compatible = "ti,am335x"; >> >> Modified: head/sys/boot/fdt/dts/beaglebone.dts >> ============================================================================== >> >> +/include/ "am335x.dtsi" >> + >> / { >> model = "beaglebone"; >> - compatible = "beaglebone", "ti,am335x"; > > This used to have two "compatible" names; now it only has one. > > Is there a way to have both again? > > (Mostly I'm just curious; I'm still learning FDT conventions.) > [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 03 May 2013 18:54:01 -0000 On 4/29/2013 9:31 PM, Tim Kientzle wrote: > On Apr 22, 2013, at 11:53 AM, Oleksandr Tymoshenko wrote: > >> Author: gonzo >> Date: Mon Apr 22 18:53:36 2013 >> New Revision: 249774 >> URL: http://svnweb.freebsd.org/changeset/base/249774 >> >> Log: >> Split BeagleBone DTS to generic AM335x part and Beagle-bone specific >> >> Added: >> head/sys/boot/fdt/dts/am335x.dtsi (contents, props changed) >> Modified: >> head/sys/boot/fdt/dts/beaglebone.dts >> >> Added: head/sys/boot/fdt/dts/am335x.dtsi >> ============================================================================== >> + >> +/ { >> + compatible = "ti,am335x"; >> >> Modified: head/sys/boot/fdt/dts/beaglebone.dts >> ============================================================================== >> >> +/include/ "am335x.dtsi" >> + >> / { >> model = "beaglebone"; >> - compatible = "beaglebone", "ti,am335x"; > > This used to have two "compatible" names; now it only has one. > > Is there a way to have both again? > > (Mostly I'm just curious; I'm still learning FDT conventions.) > I think it was wrong of me to move compatible property to dtsi. I'll move it back to main .dts file. Thanks for spotting.