5a3ff5500b1a7ed3b91c7448a83b6de788a9143f
[AGL/meta-agl.git] / meta-agl-profile-graphical / recipes-graphics / wayland / weston-ready / weston-ready
1 #!/bin/bash
2 #
3 # Copyright (c) 2018, Konsulko Group
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #    http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 #
19 # Simple script to check if Weston+IVI shell is ready by calling
20 # LayerManagerControl, optionally waiting for a specified timeout.
21 #
22
23 usage="Usage: weston-ready [-t timeout]" 
24 timeout=0
25
26 if [ $# -eq 2 ]; then
27         if [ $1 = "-t" ]; then
28                 timeout=$(($2 * 10))
29         else
30                 echo $usage
31                 exit 1
32         fi
33 fi
34
35 time=0
36 rc=1
37 while true; do
38         if [ $time -gt $timeout ]; then
39                 break
40         elif LayerManagerControl get screens >/dev/null 2>&1; then
41                 rc=0
42                 break
43         fi
44         if [ $timeout -gt 0 ]; then
45                 usleep 500000
46         fi
47         time=$(($time + 5))
48 done
49 exit $rc