projects
/
apps
/
native
/
starter.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix bug in dead timer cb
[apps/native/starter.git]
/
starter
1
#!/bin/sh
2
3
CURRENT_RUNLEVEL=`basename $PWD`
4
# CURRENT_RUNLEVEL could be "rc3.d" or "rc4.d"
5
6
if [ x"$CURRENT_RUNLEVEL" == x"rc3.d" ]; then
7
while [ ! -f /tmp/.wm_ready ];
8
do
9
/bin/sleep 0.1
10
done
11
fi
12
13
/usr/bin/starter &
14
15