From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id B2340E007BA; Tue, 6 Jan 2015 09:41:49 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.192.176 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 50AFCE002F9 for ; Tue, 6 Jan 2015 09:41:47 -0800 (PST) Received: by mail-pd0-f176.google.com with SMTP id r10so30767165pdi.7 for ; Tue, 06 Jan 2015 09:41:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=o9R5ZU1IjFNvk7bZhg0t7uAobLztJGO/UX9D78Ymk7o=; b=LatfuMHusgUOygdEgfzB0XcgiGXqeQPoUrzlwyUF937tl4OSvEgiWsYmsAlO09t3e+ Efa0AJc/xbGRs2wq0ODPmuGiSM07dZQKJjgmsZW4MOWgeaCVQxfsJEvLKH18f2ih6jRk kNeqfNtNNyzHBUVvLZg9D1S09u5pzSUvVPhF1bWD8KV5CuSRzd1G1ZScJj84QTU6NEmn b3MIa0/E6ZFnHIibZaeFMpSg5/pFmF6JoKqNfb1vq2d19KmCrVY/D/uHMnMLpJN+NSyi skTylf6MZQ1ZpV4UbA56eS2ujrNYy6lwL/KXqilXdurAZ4EKnbjBgziHdUkjunFABwSY XB8w== X-Gm-Message-State: ALoCoQltF60xmKjtoPZFhEd9erjvEYw1XXYAp4t+f4RKpt7j8wBJkTo1h7OGz+QSAbDtTFfL6Pns X-Received: by 10.70.55.102 with SMTP id r6mr159664430pdp.55.1420566107290; Tue, 06 Jan 2015 09:41:47 -0800 (PST) Received: from [192.168.0.139] (wsip-70-184-93-199.ph.ph.cox.net. [70.184.93.199]) by mx.google.com with ESMTPSA id v4sm57550443pbs.10.2015.01.06.09.41.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Jan 2015 09:41:46 -0800 (PST) Message-ID: <54AC1E58.6010406@boundarydevices.com> Date: Tue, 06 Jan 2015 10:41:44 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Otavio Salvador , meta-freescale Mailing List References: <1420564560-4388-1-git-send-email-otavio@ossystems.com.br> In-Reply-To: <1420564560-4388-1-git-send-email-otavio@ossystems.com.br> Subject: Re: [meta-fsl-arm][PATCH] devregs: Add recipe X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 17:41:49 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Thanks Otavio, On 01/06/2015 10:16 AM, Otavio Salvador wrote: > This includes the Boundary Devices' devregs tool which allows for > reading and writting of registers using /dev/mem. > > It currently has support for i.MX51, i.MX53, i.MX6Q and i.MX6DL SoC > families but other SoCs can be easily added including extra .dat > files. > > Change-Id: Ic04a90e7d1db8d87f43f5574792aa73885f16d66 > Signed-off-by: Otavio Salvador > --- > recipes-devtools/devregs/devregs_git.bb | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > create mode 100644 recipes-devtools/devregs/devregs_git.bb > > diff --git a/recipes-devtools/devregs/devregs_git.bb b/recipes-devtools/devregs/devregs_git.bb > new file mode 100644 > index 0000000..3bac55a > --- /dev/null > +++ b/recipes-devtools/devregs/devregs_git.bb > @@ -0,0 +1,13 @@ > +DESCRIPTION = "i.MX Register tool" > +SECTION = "devel" > +LICENSE = "GPL-1" > +LIC_FILES_CHKSUM = "file://COPYING;md5=5003fa041d799dd5dd5f646b74e36924" > + > +SRCREV = "34ed402b92920864b89e0fd1e76bae3aa340baaa" > +SRC_URI = "git://github.com/boundarydevices/devregs.git;protocol=http" > + > +PV = "1.0+${SRCPV}" > + > +S = "${WORKDIR}/git" > + > +inherit autotools > Acked-by: Eric Nelson This will save me time when pulling it into other projects.