From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 9B39EE00752; Mon, 5 Jan 2015 14:33:12 -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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 73102E004F2 for ; Mon, 5 Jan 2015 14:33:01 -0800 (PST) Received: from [192.168.1.10] (c-73-194-208-34.hsd1.nj.comcast.net [73.194.208.34]) by smtp.webfaction.com (Postfix) with ESMTP id 306A22093823; Mon, 5 Jan 2015 22:33:01 +0000 (UTC) Message-ID: <54AB111B.4020402@mindchasers.com> Date: Mon, 05 Jan 2015 17:32:59 -0500 From: Bob Cochran User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: b40290@freescale.com, meta-freescale@yoctoproject.org References: <1418980194-30762-1-git-send-email-b40290@freescale.com> In-Reply-To: <1418980194-30762-1-git-send-email-b40290@freescale.com> Subject: Re: [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support 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: Mon, 05 Jan 2015 22:33:12 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 12/19/2014 04:09 AM, b40290@freescale.com wrote: > From: Chunrong Guo > > Userspace debug agent for PA CodeWarrior PA is Power Architecture, correct? If there is a V2 patch submission, perhaps you'll want to say agent for CodeWarrior and leave out "PA"? > > Signed-off-by: Chunrong Guo > --- > recipes-bsp/apptrk/apptrk_git.bb | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > create mode 100644 recipes-bsp/apptrk/apptrk_git.bb > > diff --git a/recipes-bsp/apptrk/apptrk_git.bb b/recipes-bsp/apptrk/apptrk_git.bb > new file mode 100644 > index 0000000..b02e663 > --- /dev/null > +++ b/recipes-bsp/apptrk/apptrk_git.bb > @@ -0,0 +1,21 @@ > +DESCRIPTION = "Userspace debug agent for ARM CodeWarrior" > +SECTION = "apptrk" > +LICENSE = "Freescale-EULA" > +LIC_FILES_CHKSUM = "file://COPYING;md5=95560debfde180684364319811cc1421" > + > +DEPENDS = "elfutils" > + > +SRC_URI = "git://git.freescale.com/ppc/sdk/apptrk.git;nobranch=1" > +SRCREV = "cbed10997c5e2a4aaa004fb0e1efec858bf1bbe1" > + > +EXTRA_OEMAKE='ARCH=arm' > + > +S = "${WORKDIR}/git" > +CFLAGS += " -I${STAGING_INCDIR} -ISource/Linux -ISource/Portable \ > + -ISource/Linux_ARM -ISource/ARM \ > +" > + > +do_install() { > + install -d ${D}/usr/bin > + oe_runmake install DESTDIR=${D} > +} >