All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support
@ 2014-12-19  9:09 b40290
  2014-12-19 14:08 ` Otavio Salvador
  2015-01-05 22:32 ` Bob Cochran
  0 siblings, 2 replies; 3+ messages in thread
From: b40290 @ 2014-12-19  9:09 UTC (permalink / raw)
  To: meta-freescale

From: Chunrong Guo <B40290@freescale.com>

   Userspace debug agent for PA CodeWarrior

Signed-off-by: Chunrong Guo <B40290@freescale.com>
---
 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}
+}
-- 
1.9.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support
  2014-12-19  9:09 [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support b40290
@ 2014-12-19 14:08 ` Otavio Salvador
  2015-01-05 22:32 ` Bob Cochran
  1 sibling, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2014-12-19 14:08 UTC (permalink / raw)
  To: chun guo; +Cc: meta-freescale@yoctoproject.org

On Fri, Dec 19, 2014 at 7:09 AM,  <b40290@freescale.com> wrote:
> From: Chunrong Guo <B40290@freescale.com>
>
>    Userspace debug agent for PA CodeWarrior
>
> Signed-off-by: Chunrong Guo <B40290@freescale.com>
> ---
>  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"

S goes here.

> +EXTRA_OEMAKE='ARCH=arm'

Same question about kernel-arch class.

> +S = "${WORKDIR}/git"

Move S above.

> +CFLAGS += " -I${STAGING_INCDIR} -ISource/Linux -ISource/Portable \
> +                 -ISource/Linux_ARM -ISource/ARM \
> +"
> +
> +do_install() {
> +        install -d ${D}/usr/bin

Couldn't this be fixed in the Makefile? It seems more robust.

> +        oe_runmake install DESTDIR=${D}
> +}
> --
> 1.9.2
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support
  2014-12-19  9:09 [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support b40290
  2014-12-19 14:08 ` Otavio Salvador
@ 2015-01-05 22:32 ` Bob Cochran
  1 sibling, 0 replies; 3+ messages in thread
From: Bob Cochran @ 2015-01-05 22:32 UTC (permalink / raw)
  To: b40290, meta-freescale

On 12/19/2014 04:09 AM, b40290@freescale.com wrote:
> From: Chunrong Guo <B40290@freescale.com>
>
>     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 <B40290@freescale.com>
> ---
>   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}
> +}
>



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-01-05 22:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19  9:09 [meta-fsl-arm][PATCH ] apptrk: add recipes for Layerscape1 support b40290
2014-12-19 14:08 ` Otavio Salvador
2015-01-05 22:32 ` Bob Cochran

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.