blob: 45e9314b74a494c22ba0aa12247b093ea2d60f2c [file] [log] [blame]
Jerry Zhangb15c1222017-06-13 15:04:44 -07001#!/bin/sh
2
3# Script to compare the USB ID list from linux-usb
4# with the internal list of libmtp.
5
6WGET=`which wget`
7if [ "x$WGET" != "x" ]; then
8 wget -O usb.ids http://www.linux-usb.org/usb.ids
9 examples/hotplug -i > usb.ids-libmtp
10 echo "OK now compare usb.ids and usb.ids-libmtp..."
11else
12 echo "Could not sync to linux-usb USB ID list. No WGET."
13fi