* [meta-networking][PATCH] 6lowpan-tools: add git version
@ 2013-03-28 15:32 Koen Kooi
2013-03-28 21:59 ` Stefan Schmidt
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2013-03-28 15:32 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
The 0.3 release was 6 months ago and git HEAD contains fixes to make it work with contiki, so build from git instead of backporting all the patches.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
.../recipes-support/6lowpan/6lowpan-tools_git.bb | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb
diff --git a/meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb b/meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb
new file mode 100644
index 0000000..1dcb124
--- /dev/null
+++ b/meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "This is a set of utils to manage the Linux LoWPAN stack. \
+The LoWPAN stack aims for IEEE 802.15.4-2003 (and for lesser extent IEEE 802.15.4-2006) compatibility."
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
+
+DEPENDS = "libnl python"
+
+PV = "0.3+git"
+SRC_URI = "git://linux-zigbee.git.sourceforge.net/gitroot/linux-zigbee/linux-zigbee"
+SRCREV = "a1d9615adde6d1a568813c24a128273ed755af04"
+
+S = "${WORKDIR}/git"
+
+inherit autotools
+
+FILES_${PN}-dbg += "${libexecdir}/lowpan-tools/.debug/"
+
+PACKAGES =+ "${PN}-python"
+FILES_${PN}-python = "${libdir}/python*"
--
1.8.1.4
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [meta-networking][PATCH] 6lowpan-tools: add git version
2013-03-28 15:32 [meta-networking][PATCH] 6lowpan-tools: add git version Koen Kooi
@ 2013-03-28 21:59 ` Stefan Schmidt
2013-04-01 15:31 ` Joe MacDonald
0 siblings, 1 reply; 5+ messages in thread
From: Stefan Schmidt @ 2013-03-28 21:59 UTC (permalink / raw)
To: openembedded-devel
Hello.
On Thu, 2013-03-28 at 16:32, Koen Kooi wrote:
> The 0.3 release was 6 months ago and git HEAD contains fixes to make it work with contiki, so build from git instead of backporting all the patches.
Sounds like a good idea. And not only because one of the patches is
from me ;)
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> .../recipes-support/6lowpan/6lowpan-tools_git.bb | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb
Any special reason why this is named 6lowpan here?
6lowpan normally refers to IPv6 over LoWPAN while the lowpan-tools
do not configure anything regarding IPv6 but the plain LoWPAN which is
the protocol layer below. I would suggest renaming it to lowpan-tools.
regards
Stefan Schmidt
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-networking][PATCH] 6lowpan-tools: add git version
2013-03-28 21:59 ` Stefan Schmidt
@ 2013-04-01 15:31 ` Joe MacDonald
2013-05-02 10:21 ` Paul Eggleton
0 siblings, 1 reply; 5+ messages in thread
From: Joe MacDonald @ 2013-04-01 15:31 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1470 bytes --]
[Re: [oe] [meta-networking][PATCH] 6lowpan-tools: add git version] On 13.03.28 (Thu 21:59) Stefan Schmidt wrote:
> Hello.
>
> On Thu, 2013-03-28 at 16:32, Koen Kooi wrote:
> > The 0.3 release was 6 months ago and git HEAD contains fixes to make it work with contiki, so build from git instead of backporting all the patches.
>
> Sounds like a good idea. And not only because one of the patches is
> from me ;)
>
> > Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> > ---
> > .../recipes-support/6lowpan/6lowpan-tools_git.bb | 20 ++++++++++++++++++++
> > 1 file changed, 20 insertions(+)
> > create mode 100644 meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb
>
> Any special reason why this is named 6lowpan here?
>
> 6lowpan normally refers to IPv6 over LoWPAN while the lowpan-tools
> do not configure anything regarding IPv6 but the plain LoWPAN which is
> the protocol layer below. I would suggest renaming it to lowpan-tools.
I've not used these myself. Based on what I saw on the project web
page, 6lowpan seems like a pretty good name:
The goal of this project is to create an implementation of 802.15.4
and several protocols which run on top of it (primarily 6LoWPAN) for
Linux.
But a quick look around in my apt-cache turns up lowpan-tools. Seems
like that's what it's also named in Fedora land, so I'm thinking that's
probably the right call here, too.
--
-Joe MacDonald.
:wq
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-networking][PATCH] 6lowpan-tools: add git version
2013-04-01 15:31 ` Joe MacDonald
@ 2013-05-02 10:21 ` Paul Eggleton
2013-05-02 13:51 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2013-05-02 10:21 UTC (permalink / raw)
To: Koen Kooi; +Cc: openembedded-devel, Joe MacDonald
On Monday 01 April 2013 11:31:35 Joe MacDonald wrote:
> [Re: [oe] [meta-networking][PATCH] 6lowpan-tools: add git version] On
13.03.28 (Thu 21:59) Stefan Schmidt wrote:
> > On Thu, 2013-03-28 at 16:32, Koen Kooi wrote:
> > > The 0.3 release was 6 months ago and git HEAD contains fixes to make it
> > > work with contiki, so build from git instead of backporting all the
> > > patches.>
> > Sounds like a good idea. And not only because one of the patches is
> > from me ;)
> >
> > > Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> > > ---
> > >
> > > .../recipes-support/6lowpan/6lowpan-tools_git.bb | 20
> > > ++++++++++++++++++++ 1 file changed, 20 insertions(+)
> > > create mode 100644
> > > meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb>
> > Any special reason why this is named 6lowpan here?
> >
> > 6lowpan normally refers to IPv6 over LoWPAN while the lowpan-tools
> > do not configure anything regarding IPv6 but the plain LoWPAN which is
> > the protocol layer below. I would suggest renaming it to lowpan-tools.
>
> I've not used these myself. Based on what I saw on the project web
> page, 6lowpan seems like a pretty good name:
>
> The goal of this project is to create an implementation of 802.15.4
> and several protocols which run on top of it (primarily 6LoWPAN) for
> Linux.
>
> But a quick look around in my apt-cache turns up lowpan-tools. Seems
> like that's what it's also named in Fedora land, so I'm thinking that's
> probably the right call here, too.
lowpan-tools was the name we had in OE-Classic as well.
Koen, would you mind renaming this and sending a v2? Could you also use SRCPV
in PV and add SUMMARY and HOMEPAGE at the same time?
Thanks,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-networking][PATCH] 6lowpan-tools: add git version
2013-05-02 10:21 ` Paul Eggleton
@ 2013-05-02 13:51 ` Koen Kooi
0 siblings, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2013-05-02 13:51 UTC (permalink / raw)
To: Paul Eggleton; +Cc: openembedded-devel, Joe MacDonald
Op 2 mei 2013, om 12:21 heeft Paul Eggleton <paul.eggleton@linux.intel.com> het volgende geschreven:
> On Monday 01 April 2013 11:31:35 Joe MacDonald wrote:
>> [Re: [oe] [meta-networking][PATCH] 6lowpan-tools: add git version] On
> 13.03.28 (Thu 21:59) Stefan Schmidt wrote:
>>> On Thu, 2013-03-28 at 16:32, Koen Kooi wrote:
>>>> The 0.3 release was 6 months ago and git HEAD contains fixes to make it
>>>> work with contiki, so build from git instead of backporting all the
>>>> patches.>
>>> Sounds like a good idea. And not only because one of the patches is
>>> from me ;)
>>>
>>>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>>>> ---
>>>>
>>>> .../recipes-support/6lowpan/6lowpan-tools_git.bb | 20
>>>> ++++++++++++++++++++ 1 file changed, 20 insertions(+)
>>>> create mode 100644
>>>> meta-networking/recipes-support/6lowpan/6lowpan-tools_git.bb>
>>> Any special reason why this is named 6lowpan here?
>>>
>>> 6lowpan normally refers to IPv6 over LoWPAN while the lowpan-tools
>>> do not configure anything regarding IPv6 but the plain LoWPAN which is
>>> the protocol layer below. I would suggest renaming it to lowpan-tools.
>>
>> I've not used these myself. Based on what I saw on the project web
>> page, 6lowpan seems like a pretty good name:
>>
>> The goal of this project is to create an implementation of 802.15.4
>> and several protocols which run on top of it (primarily 6LoWPAN) for
>> Linux.
>>
>> But a quick look around in my apt-cache turns up lowpan-tools. Seems
>> like that's what it's also named in Fedora land, so I'm thinking that's
>> probably the right call here, too.
>
> lowpan-tools was the name we had in OE-Classic as well.
>
> Koen, would you mind renaming this and sending a v2? Could you also use SRCPV
> in PV and add SUMMARY and HOMEPAGE at the same time?
I'll have a look at it
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-05-02 14:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 15:32 [meta-networking][PATCH] 6lowpan-tools: add git version Koen Kooi
2013-03-28 21:59 ` Stefan Schmidt
2013-04-01 15:31 ` Joe MacDonald
2013-05-02 10:21 ` Paul Eggleton
2013-05-02 13:51 ` Koen Kooi
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.