diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-11-13 14:38:06 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:21 +0000 |
commit | 399c0fa9a831f8dbcd7ab94ac5713101d417a1ec (patch) | |
tree | bc040a8e5a134ea97a9b7421755181f178016086 /meta/recipes-bsp/usbutils/usbutils_008.bb | |
parent | 1f63bd2d9f31e74da5f558ca7097a306b8b3b755 (diff) | |
download | poky-399c0fa9a831f8dbcd7ab94ac5713101d417a1ec.tar.gz |
usbutils: Add version 008
The latest version of usbutil (v008) uses the latest version of udev (v196 or greater)
which is only available as part of the systemd package. So add systemd as a DEPENDS and
REQUIRED_DISTRO_FEATURE.
Add v008 version of iconv.patch
COPYING file is GPLv2, but has newer formatting and address change.
(From OE-Core rev: 3d88f74833fafd5c928c64d9ecc0aa257b7bb0f6)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/usbutils/usbutils_008.bb')
-rw-r--r-- | meta/recipes-bsp/usbutils/usbutils_008.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-bsp/usbutils/usbutils_008.bb b/meta/recipes-bsp/usbutils/usbutils_008.bb new file mode 100644 index 0000000000..b032d4e6b3 --- /dev/null +++ b/meta/recipes-bsp/usbutils/usbutils_008.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "Host side USB console utilities" | ||
2 | DESCRIPTION = "Contains the lsusb utility for inspecting the devices connected to the USB bus." | ||
3 | HOMEPAGE = "http://www.linux-usb.org" | ||
4 | SECTION = "base" | ||
5 | |||
6 | LICENSE = "GPLv2+" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
8 | |||
9 | DEPENDS = "libusb zlib virtual/libiconv systemd" | ||
10 | |||
11 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/usb/usbutils/usbutils-${PV}.tar.gz \ | ||
12 | file://usb-devices-avoid-dependency-on-bash.patch \ | ||
13 | file://Fix-NULL-pointer-crash.patch \ | ||
14 | file://iconv.patch \ | ||
15 | " | ||
16 | |||
17 | RC_URI[md5sum] = "cb20148c2e784577e924a7b4c560c8fb" | ||
18 | SRC_URI[sha256sum] = "6d5f16c2961df37e22e492c736a3e162a8fde24480f23a40d85f79af80d3fe95" | ||
19 | |||
20 | inherit autotools gettext pkgconfig distro_features_check | ||
21 | # This version of usbutils relies on the udev from systemd, so unless | ||
22 | # we can decouple udev from system, we require systemd for now. | ||
23 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
24 | |||
25 | FILES_${PN}-dev += "${datadir}/pkgconfig" | ||
26 | |||
27 | RDEPENDS_${PN} = "libudev" | ||
28 | RDEPENDS_${PN}-ptest = "libboost-system libboost-thread" | ||