mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-16 22:05:05 -05:00
26 lines
647 B
Bash
Executable File
26 lines
647 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Originally written by Ralf Kistner <ralf@embarkmobile.com>, but placed in the public domain
|
|
|
|
set +e
|
|
|
|
bootanim=""
|
|
failcounter=0
|
|
timeout_in_sec=720
|
|
|
|
until [[ "$bootanim" =~ "stopped" ]]; do
|
|
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &`
|
|
if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline"
|
|
|| "$bootanim" =~ "running" ]]; then
|
|
let "failcounter += 1"
|
|
echo "Waiting for emulator to start"
|
|
if [[ $failcounter -gt timeout_in_sec ]]; then
|
|
echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator"
|
|
exit 1
|
|
fi
|
|
fi
|
|
sleep 10
|
|
done
|
|
|
|
echo "Emulator is ready"
|