|
@@ -4,13 +4,10 @@
|
|
|
#
|
|
|
################################################################################
|
|
|
|
|
|
-USBUTILS_VERSION = 006
|
|
|
-USBUTILS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/usb/usbutils/
|
|
|
-USBUTILS_SOURCE = usbutils-$(USBUTILS_VERSION).tar.gz
|
|
|
+USBUTILS_VERSION = 007
|
|
|
+USBUTILS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/usb/usbutils
|
|
|
USBUTILS_DEPENDENCIES = host-pkgconf libusb
|
|
|
USBUTILS_INSTALL_STAGING = YES
|
|
|
-# no configure in tarball
|
|
|
-USBUTILS_AUTORECONF = YES
|
|
|
USBUTILS_LICENSE = GPLv2+
|
|
|
USBUTILS_LICENSE_FILES = COPYING
|
|
|
|
|
@@ -25,6 +22,15 @@ ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
USBUTILS_DEPENDENCIES += busybox
|
|
|
endif
|
|
|
|
|
|
+# Nice lsusb.py script only if there's python
|
|
|
+ifeq ($(BR2_PACKAGE_PYTHON),)
|
|
|
+define USBUTILS_REMOVE_PYTHON
|
|
|
+ rm -f $(TARGET_DIR)/usr/bin/lsusb.py
|
|
|
+endef
|
|
|
+
|
|
|
+USBUTILS_POST_INSTALL_TARGET_HOOKS += USBUTILS_REMOVE_PYTHON
|
|
|
+endif
|
|
|
+
|
|
|
define USBUTILS_TARGET_CLEANUP
|
|
|
rm -f $(TARGET_DIR)/usr/bin/usb-devices
|
|
|
rm -f $(TARGET_DIR)/usr/sbin/update-usbids.sh
|