mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-21 20:48:29 +00:00
28 lines
718 B
Bash
Executable file
28 lines
718 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=360
|
|
|
|
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"
|
|
if [[ $failcounter = 1 ]]; then
|
|
echo -n "Waiting for emulator to start"; else
|
|
echo -n "."
|
|
fi
|
|
if [[ $failcounter -gt timeout_in_sec ]]; then
|
|
echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator"
|
|
exit 1
|
|
fi
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "Emulator is ready"
|