* [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
@ 2013-02-14 22:28 Sajesh Kumar Saran
2013-02-15 1:20 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Sajesh Kumar Saran @ 2013-02-14 22:28 UTC (permalink / raw)
To: meta-arago
Signed-off-by: Sajesh Kumar Saran <sajesh@ti.com>
---
.../multiprocmgr/ti-multiprocmgr_git.bb | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
diff --git a/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
new file mode 100644
index 0000000..c72bc7d
--- /dev/null
+++ b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "TI Multiproc Manager for KeyStone II"
+HOMEPAGE = "http://gtgit01.gt.design.ti.com/git/?p=projects/multiprocmgr.git;a=summary"
+LICENSE = "BSD & MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce208c498eb9669223724dc9c1d8fe4"
+SECTION = "console"
+
+PR = "r2"
+
+BRANCH ?= "master"
+SRCREV = "${AUTOREV}"
+
+SRC_URI = "git://gtgit01.gt.design.ti.com/git/projects/multiprocmgr.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+ install -d ${D}${bindir}/
+ install -c -m 755 ${S}/mpmsrv ${D}${bindir}/mpmsrv
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
2013-02-14 22:28 [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices Sajesh Kumar Saran
@ 2013-02-15 1:20 ` Denys Dmytriyenko
2013-02-15 1:34 ` Saran, Sajesh Kumar
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-02-15 1:20 UTC (permalink / raw)
To: Sajesh Kumar Saran; +Cc: meta-arago
Sajesh,
Thanks for submitting your patch to the list. It mostly looks good, but here
are few comments:
[PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
Please follow the OpenEmbedded Patch Message Guidelines:
http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Basically, it means the commit/patch subject should look like this:
[PATCH] multiprocmgr: add initial version
On Thu, Feb 14, 2013 at 05:28:40PM -0500, Sajesh Kumar Saran wrote:
>
> Signed-off-by: Sajesh Kumar Saran <sajesh@ti.com>
> ---
> .../multiprocmgr/ti-multiprocmgr_git.bb | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644 meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
>
> diff --git a/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
> new file mode 100644
> index 0000000..c72bc7d
> --- /dev/null
> +++ b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
I don't mind it too much, but do we still need to abuse ti-* prefix for our
own software? Can it be simply multiprocmgr?
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "TI Multiproc Manager for KeyStone II"
> +HOMEPAGE = "http://gtgit01.gt.design.ti.com/git/?p=projects/multiprocmgr.git;a=summary"
> +LICENSE = "BSD & MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce208c498eb9669223724dc9c1d8fe4"
> +SECTION = "console"
If you really want this to be available to Keystone machines, you'd want:
COMPATIBLE_MACHINE = "keystone"
> +PR = "r2"
I don't usually complain about PR being out of sequence, or starting with 1
vs. 0, but other people may find this a problem. Just FYI...
> +BRANCH ?= "master"
> +SRCREV = "${AUTOREV}"
> +SRC_URI = "git://gtgit01.gt.design.ti.com/git/projects/multiprocmgr.git;protocol=git;branch=${BRANCH}"
The use of AUTOREV and non-public internal git repository would break parsing
for anyone doing builds outside of TI network.
Using non-public internal git repository temporarily until you get your
project published externally is somewhat acceptable. And AUTOREV in rare cases
is also acceptable, although it's quite unstable. But definitely don't use
them both.
> +S = "${WORKDIR}/git"
> +
> +do_install() {
> + install -d ${D}${bindir}/
> + install -c -m 755 ${S}/mpmsrv ${D}${bindir}/mpmsrv
> +}
> --
> 1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
2013-02-15 1:20 ` Denys Dmytriyenko
@ 2013-02-15 1:34 ` Saran, Sajesh Kumar
2013-02-15 1:36 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Saran, Sajesh Kumar @ 2013-02-15 1:34 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
The internal git repo is temporary. It will be moved to external soon.
What do you want me to put in instead of AUTOREV?
Regards,
Sajesh
-----Original Message-----
From: Dmytriyenko, Denys
Sent: Thursday, February 14, 2013 8:21 PM
To: Saran, Sajesh Kumar
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
Sajesh,
Thanks for submitting your patch to the list. It mostly looks good, but here are few comments:
[PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
Please follow the OpenEmbedded Patch Message Guidelines:
http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Basically, it means the commit/patch subject should look like this:
[PATCH] multiprocmgr: add initial version
On Thu, Feb 14, 2013 at 05:28:40PM -0500, Sajesh Kumar Saran wrote:
>
> Signed-off-by: Sajesh Kumar Saran <sajesh@ti.com>
> ---
> .../multiprocmgr/ti-multiprocmgr_git.bb | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644
> meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
>
> diff --git
> a/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.
> bb
> b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.
> bb
> new file mode 100644
> index 0000000..c72bc7d
> --- /dev/null
> +++ b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_
> +++ git.bb
I don't mind it too much, but do we still need to abuse ti-* prefix for our own software? Can it be simply multiprocmgr?
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "TI Multiproc Manager for KeyStone II"
> +HOMEPAGE = "http://gtgit01.gt.design.ti.com/git/?p=projects/multiprocmgr.git;a=summary"
> +LICENSE = "BSD & MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce208c498eb9669223724dc9c1d8fe4"
> +SECTION = "console"
If you really want this to be available to Keystone machines, you'd want:
COMPATIBLE_MACHINE = "keystone"
> +PR = "r2"
I don't usually complain about PR being out of sequence, or starting with 1
vs. 0, but other people may find this a problem. Just FYI...
> +BRANCH ?= "master"
> +SRCREV = "${AUTOREV}"
> +SRC_URI = "git://gtgit01.gt.design.ti.com/git/projects/multiprocmgr.git;protocol=git;branch=${BRANCH}"
The use of AUTOREV and non-public internal git repository would break parsing
for anyone doing builds outside of TI network.
Using non-public internal git repository temporarily until you get your
project published externally is somewhat acceptable. And AUTOREV in rare cases
is also acceptable, although it's quite unstable. But definitely don't use
them both.
> +S = "${WORKDIR}/git"
> +
> +do_install() {
> + install -d ${D}${bindir}/
> + install -c -m 755 ${S}/mpmsrv ${D}${bindir}/mpmsrv
> +}
> --
> 1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
2013-02-15 1:34 ` Saran, Sajesh Kumar
@ 2013-02-15 1:36 ` Denys Dmytriyenko
0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-02-15 1:36 UTC (permalink / raw)
To: Saran, Sajesh Kumar; +Cc: meta-arago@arago-project.org
On Thu, Feb 14, 2013 at 08:34:15PM -0500, Saran, Sajesh Kumar wrote:
> The internal git repo is temporary. It will be moved to external soon.
Yes, I know, as I was part of the discussion deciding where to host it -
git.ti.com or arago-project.org...
> What do you want me to put in instead of AUTOREV?
Latest commit for now would be fine. Once your code matures, you can point it
to the latest stable release.
--
Denys
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Thursday, February 14, 2013 8:21 PM
> To: Saran, Sajesh Kumar
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
>
> Sajesh,
>
> Thanks for submitting your patch to the list. It mostly looks good, but here are few comments:
>
> [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices
>
> Please follow the OpenEmbedded Patch Message Guidelines:
> http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
>
> Basically, it means the commit/patch subject should look like this:
>
> [PATCH] multiprocmgr: add initial version
>
>
> On Thu, Feb 14, 2013 at 05:28:40PM -0500, Sajesh Kumar Saran wrote:
> >
> > Signed-off-by: Sajesh Kumar Saran <sajesh@ti.com>
> > ---
> > .../multiprocmgr/ti-multiprocmgr_git.bb | 19 +++++++++++++++++++
> > 1 file changed, 19 insertions(+)
> > create mode 100644
> > meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.bb
> >
> > diff --git
> > a/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.
> > bb
> > b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_git.
> > bb
> > new file mode 100644
> > index 0000000..c72bc7d
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-devtools/multiprocmgr/ti-multiprocmgr_
> > +++ git.bb
>
> I don't mind it too much, but do we still need to abuse ti-* prefix for our own software? Can it be simply multiprocmgr?
>
>
> > @@ -0,0 +1,19 @@
> > +DESCRIPTION = "TI Multiproc Manager for KeyStone II"
> > +HOMEPAGE = "http://gtgit01.gt.design.ti.com/git/?p=projects/multiprocmgr.git;a=summary"
> > +LICENSE = "BSD & MIT"
> > +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce208c498eb9669223724dc9c1d8fe4"
> > +SECTION = "console"
>
> If you really want this to be available to Keystone machines, you'd want:
>
> COMPATIBLE_MACHINE = "keystone"
>
>
> > +PR = "r2"
>
> I don't usually complain about PR being out of sequence, or starting with 1
> vs. 0, but other people may find this a problem. Just FYI...
>
>
> > +BRANCH ?= "master"
>
> > +SRCREV = "${AUTOREV}"
> > +SRC_URI = "git://gtgit01.gt.design.ti.com/git/projects/multiprocmgr.git;protocol=git;branch=${BRANCH}"
>
> The use of AUTOREV and non-public internal git repository would break parsing
> for anyone doing builds outside of TI network.
>
> Using non-public internal git repository temporarily until you get your
> project published externally is somewhat acceptable. And AUTOREV in rare cases
> is also acceptable, although it's quite unstable. But definitely don't use
> them both.
>
>
> > +S = "${WORKDIR}/git"
> > +
> > +do_install() {
> > + install -d ${D}${bindir}/
> > + install -c -m 755 ${S}/mpmsrv ${D}${bindir}/mpmsrv
> > +}
> > --
> > 1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-15 1:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-14 22:28 [PATCH] Added ti-multiproc manager recipe for KeyStone2 devices Sajesh Kumar Saran
2013-02-15 1:20 ` Denys Dmytriyenko
2013-02-15 1:34 ` Saran, Sajesh Kumar
2013-02-15 1:36 ` Denys Dmytriyenko
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.