aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Bénard <eric@eukrea.com>2010-10-30 02:40:38 +0200
committerEric Bénard <eric@eukrea.com>2010-10-31 14:44:30 +0100
commitda60830cc1d77b310eece3b58819f9617de36b52 (patch)
tree99d377d5389e6f5a3e82cd2f5ae777d564337bf6
parent2af9fd78689d2f2282c9edae27962bc57eedc65f (diff)
downloadopenembedded-da60830cc1d77b310eece3b58819f9617de36b52.tar.gz
usb detection script
remove echo which should not be there Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r--recipes/busybox/files/usb.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/recipes/busybox/files/usb.sh b/recipes/busybox/files/usb.sh
index 9faf14106b..ec1247da24 100644
--- a/recipes/busybox/files/usb.sh
+++ b/recipes/busybox/files/usb.sh
@@ -17,7 +17,6 @@ case "$ACTION" in
bus=`basename $(dirname $device)`
for uevent in /sys/class/usb_device/usbdev?.*/*/uevent; do
. $uevent
- echo $dev $DEVNUM $bus $BUSNUM >> /tmp/rem.txt
if [ $dev -eq $DEVNUM ] && [ $bus -eq $BUSNUM ]; then
REMOVED=0
break;