This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -xe | |
wait_for_device() { | |
SERIAL=MSM7627A | |
DEVICE=05c6 | |
# to break out if failed after so many tries. | |
# RETRYTIME*MAXWAITTIME is how long the max wait time will be | |
RETRYTIME=1 | |
MAXWAITTIME=60 |
NewerOlder