diff options
author | Radu Moisan <radu.moisan@intel.com> | 2012-08-02 15:06:13 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-02 15:28:37 +0100 |
commit | 08d1621ce272fd5f0bffc057c1a9883ede557c3f (patch) | |
tree | 4a23196e006408f3e7b2de520516d8461308e2e7 /meta/recipes-bsp/usbutils/usbutils_006.bb | |
parent | c1fb312974b257b9a99f92dca6cc629c63e46dc6 (diff) | |
download | poky-08d1621ce272fd5f0bffc057c1a9883ede557c3f.tar.gz |
usbutils: Upgrade usbutils to upstream v006
(From OE-Core rev: 375cddcc2241016a3114d707b1938c2190642a4f)
Signed-off-by: Radu Moisan <radu.moisan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/usbutils/usbutils_006.bb')
-rw-r--r-- | meta/recipes-bsp/usbutils/usbutils_006.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-bsp/usbutils/usbutils_006.bb b/meta/recipes-bsp/usbutils/usbutils_006.bb new file mode 100644 index 0000000000..c1c9fc0a1d --- /dev/null +++ b/meta/recipes-bsp/usbutils/usbutils_006.bb | |||
@@ -0,0 +1,30 @@ | |||
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=94d55d512a9ba36caa9b7df079bae19f" | ||
8 | |||
9 | DEPENDS = "libusb zlib" | ||
10 | PR = "r0" | ||
11 | |||
12 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/usb/usbutils/usbutils-${PV}.tar.gz \ | ||
13 | file://usb-devices-avoid-dependency-on-bash.patch \ | ||
14 | file://Fix-NULL-pointer-crash.patch" | ||
15 | |||
16 | SRC_URI[md5sum] = "850790442f5eb487cdc7e35f8ee03e11" | ||
17 | SRC_URI[sha256sum] = "553270b4030f0844cb70aed57e61c7f10a7ed6641c3bed20249201cec9bcf122" | ||
18 | |||
19 | inherit autotools | ||
20 | |||
21 | do_install_append() { | ||
22 | # We only need the compressed copy, remove the uncompressed version | ||
23 | rm -f ${D}${datadir}/usb.ids | ||
24 | } | ||
25 | |||
26 | PACKAGES += "${PN}-ids" | ||
27 | FILES_${PN}-dev += "${datadir}/pkgconfig" | ||
28 | FILES_${PN}-ids = "${datadir}/usb*" | ||
29 | |||
30 | RDEPENDS_${PN} = "${PN}-ids" | ||