mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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:
committed by
Steve Sakoman
parent
e6acba1518
commit
f9fd48d759
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user