usb detection script
authorEric Bénard <eric@eukrea.com>
Sat, 30 Oct 2010 00:40:38 +0000 (02:40 +0200)
committerEric Bénard <eric@eukrea.com>
Sun, 31 Oct 2010 13:44:30 +0000 (14:44 +0100)
remove echo which should not be there

Signed-off-by: Eric Bénard <eric@eukrea.com>
recipes/busybox/files/usb.sh

index 9faf141..ec1247d 100644 (file)
@@ -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;