diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2016-03-01 02:53:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-02 22:39:44 +0000 |
commit | 5f6169348bf7c30de7306688d679f5d71134ca09 (patch) | |
tree | 157e68aceee1de449d074335b8147c9682bc6788 /meta/recipes-bsp/usbutils/usbutils_007.bb | |
parent | c89b777c355b55761e294d122235a274bba6c07f (diff) | |
download | poky-5f6169348bf7c30de7306688d679f5d71134ca09.tar.gz |
usbutils: Fix for new eudev implementation
usbutils was only compatible with systemds udev, since we now
provide a udev alternative compatible with upstream systemds udev,
we can now use the newer version of usbutils along with it too.
(From OE-Core rev: 93ff871ec1141d2840ffd4a6b8617023fae3d23f)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/usbutils/usbutils_007.bb')
-rw-r--r-- | meta/recipes-bsp/usbutils/usbutils_007.bb | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-bsp/usbutils/usbutils_007.bb b/meta/recipes-bsp/usbutils/usbutils_007.bb deleted file mode 100644 index b93b2bd9e5..0000000000 --- a/meta/recipes-bsp/usbutils/usbutils_007.bb +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
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 virtual/libiconv" | ||
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 | SRC_URI[md5sum] = "be6c42294be5c940f208190d3479d50c" | ||
18 | SRC_URI[sha256sum] = "e65c234cadf7c81b6b1567c440e3b9b31b44f51c27df3e45741b88848d8b37d3" | ||
19 | |||
20 | inherit autotools gettext pkgconfig | ||
21 | |||
22 | do_install_append() { | ||
23 | # We only need the compressed copy, remove the uncompressed version | ||
24 | rm -f ${D}${datadir}/usb.ids | ||
25 | } | ||
26 | |||
27 | PACKAGES += "${PN}-ids" | ||
28 | FILES_${PN}-dev += "${datadir}/pkgconfig" | ||
29 | FILES_${PN}-ids = "${datadir}/usb*" | ||
30 | |||
31 | RDEPENDS_${PN} = "${PN}-ids" | ||