recipes-bsp: usbutils: Fix usb-devices command using busybox

Unknown find parameter -printf makes usb-devices script unusable with
busybox. Replace the parameter to fix this issue.

(From OE-Core rev: bb7dad01066d22c3cc4465bdf39ec4e310821d15)

Signed-off-by: Teresa Remmet <t.remmet@phytec.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c7c9f827e914b7c27856d995da553a2e41372321)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
Teresa Remmet
2024-09-06 09:25:16 +02:00
committed by Steve Sakoman
parent e6acba1518
commit f9fd48d759
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
From da155d965a34b5c5770dc30fa52eb7ef405f3a30 Mon Sep 17 00:00:00 2001
From: Teresa Remmet <t.remmet@phytec.de>
Date: Thu, 5 Sep 2024 08:37:48 +0200
Subject: [PATCH] usb-devices: Fix usb-devices with busybox
The busybox find command is missing the -printf parameter leading to
the error:
find: unrecognized: -printf
Replace the parameter with sed.
This patch was originally created by Daniel Fancsali.
Upstream-Status: Backport [https://github.com/gregkh/usbutils/commit/da155d965a34b5c5770dc30fa52eb7ef405f3a30]
Signed-off-by: Teresa Remmet <t.remmet@phytec.de>
---
usb-devices | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usb-devices b/usb-devices
index 5f60ad5a1ed0..51f48b4ad628 100755
--- a/usb-devices
+++ b/usb-devices
@@ -192,7 +192,7 @@ if [ ! -d /sys/bus ]; then
exit 1
fi
-for device in $(find /sys/bus/usb/devices -name 'usb*' -printf '%f\n' | sort -V)
+for device in $(find /sys/bus/usb/devices -name 'usb*' | sed -E 's#^.*/##g' | sort -V)
do
print_device "/sys/bus/usb/devices/$device" 0 0 0
done
--
2.34.1

View File

@@ -13,6 +13,7 @@ DEPENDS = "libusb1 virtual/libiconv udev"
SRC_URI = "${KERNELORG_MIRROR}/linux/utils/usb/usbutils/usbutils-${PV}.tar.gz \
file://0001-usbutils.pc.in-Fix-Cflags-entry.patch \
file://0001-usb-devices-Fix-usb-devices-with-busybox.patch \
"
SRC_URI[sha256sum] = "f704c4cb78a060db88b43aac6ebfd3d93c2c5cf1d6dd0e42936faaf00814ab00"