Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh
# $FreeBSD$

#
# About:
# This script implements a simple USB enumeration test
#
# Usage:
# ./usb_enum.t ugenX.Y
#

echo "1..100"

if [ "$1" = "" ]; then
# First Root HUB
DEV="ugen0.1"
else
# Custom device
DEV="$1"
fi

for N in $(jot 100 1)
do
if [ -c /dev/$DEV ] && [ -r /dev/$DEV ] && usbconfig -d $DEV reset ; then
echo "ok $N"
else
echo "not ok $N"
fi
done