diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-09-24 13:54:15 +0100 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2013-09-24 09:04:55 -0400 |
commit | 7e0bdfc5ecf7c551416e2a193c9220347d8fe03f (patch) | |
tree | 14a5e837b5c77f57492ce3548643073bbdc45c2e /meta-networking/recipes-support | |
parent | 1c4921817e202909ae97e8108ab1de17ca14f6ce (diff) | |
download | meta-openembedded-7e0bdfc5ecf7c551416e2a193c9220347d8fe03f.tar.gz |
lowpan-tools: add git version
The 0.3 release was a year ago and git HEAD contains fixes to make it
work with contiki, so build from git instead of backporting all of the
patches.
Based on a patch by Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r-- | meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb new file mode 100644 index 000000000..cf78b4575 --- /dev/null +++ b/meta-networking/recipes-support/lowpan-tools/lowpan-tools_git.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Utilities for managing the Linux LoWPAN stack" | ||
2 | DESCRIPTION = "This is a set of utils to manage the Linux LoWPAN stack. \ | ||
3 | The LoWPAN stack aims for IEEE 802.15.4-2003 (and for lesser extent IEEE 802.15.4-2006) compatibility." | ||
4 | |||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
7 | |||
8 | DEPENDS = "libnl python" | ||
9 | |||
10 | PV = "0.3+git${SRCPV}" | ||
11 | SRC_URI = "git://linux-zigbee.git.sourceforge.net/gitroot/linux-zigbee/linux-zigbee" | ||
12 | SRCREV = "a1d9615adde6d1a568813c24a128273ed755af04" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | do_install_append() { | ||
19 | rmdir ${D}${localstatedir}/run | ||
20 | } | ||
21 | |||
22 | FILES_${PN}-dbg += "${libexecdir}/lowpan-tools/.debug/" | ||
23 | |||
24 | PACKAGES =+ "${PN}-python" | ||
25 | FILES_${PN}-python = "${libdir}/python*" | ||