Here is a little bash script which I created, to seek out and display the device & vendor IDs for the Skate & OMC, when using Linux:
[ UPDATED ]
Make sure the Skate/OMC is the ONLY handset connected to the PC, whilst sniffing out the vendor & device IDs, to prevent confusion.
[ UPDATED ]
#!/bin/bash ### Skate/OMC device ID sniffer ### 03/10/2011 Matt Foot ### Please keep this credit intact findonda=`lsusb | grep ONDA | wc -c` if [ $(echo $findonda) -gt 0 ]; then findfullid=`lsusb | grep ONDA | sed -e 's/.*ID //' | sed -e 's/ ONDA.*//'` findvendorid=`lsusb | grep ONDA | sed -e 's/.*ID //' | sed -e 's/ ONDA.*//' | sed -e 's/:.*//'` finddeviceid=`lsusb | grep ONDA | sed -e 's/.*ID //' | sed -e 's/ ONDA.*//' | sed -e 's/.*://'` clear echo -e "\n\nYour Orange Monte Carlo/ZTE Skate ID is: $findfullid" echo -e "\n\nThe vendor ID is: $findvendorid" echo -e "\n\nThe device ID is: $finddeviceid" ## DETECT DEBUG MODE FROM DEVICE ID 0214. if [ $(echo $finddeviceid) -eq '0214' ];then echo -e "\n\n### USB DEBUG MODE IS *ON* ###" else echo -e "\n\n### USB DEBUG MODE IS *OFF*. DEVICE IS IN NORMAL MODE ###" fi else clear echo "### NO DEVICE DETECTED! CHECK OMC/SKATE IS CONNECTED TO PC, AND TRY AGAIN ###" exit fi
Make sure the Skate/OMC is the ONLY handset connected to the PC, whilst sniffing out the vendor & device IDs, to prevent confusion.
Attached Files
Edited by glossywhite, 03 October 2011 - 03:10 PM.







Sign In
Create Account




Back to top










