-
Notifications
You must be signed in to change notification settings - Fork 34
/
LunaSysMgr.upstart
44 lines (37 loc) · 1.34 KB
/
LunaSysMgr.upstart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# LunaSysMgr must start after the configurator to make sure the DB is initialized before the apps run
start on stopped configurator
# Stop when the Software Update tool is about to install an update. The tool
# uses upstart to restart jobs when the installation is complete.
stop on started start_update
respawn
pre-start script
echo "1" > /proc/sys/vm/overcommit_memory
mkdir -p /var/luna/preferences
mkdir -p /var/luna/data
if grep -qs "qemu" /etc/hostname ; then
touch /var/luna/preferences/ran-first-use
fi
if [ ! -f /var/luna/preferences/ran-first-use ]
then
echo " -u minimal -a com.palm.app.firstuse" > /var/luna/preferences/sysmgr-args
else
echo "" > /var/luna/preferences/sysmgr-args
fi
end script
script
if grep -qs "qemu" /etc/hostname ; then
export HOME=/var/home/root
fi
#check for MFTboot flag and attempt to launch MFT if present
if [ `grep -c MFTboot /proc/cmdline` == "1" ]
then
#check for TED app
if [ -f /var/mft/usr/bin/ted ]
then
export LD_LIBRARY_PATH=/var/mft/usr/lib;export WXDFB_FONTPATH=/var/mft/usr/share/wx/fonts/:;exec /var/mft/usr/bin/ted -m --dfb:no-vt --dfb:no-cursor --dfb:bg-color=00000000 --dfb:pixelformat=ARGB
else
exec /usr/bin/LunaSysMgr -s `cat /var/luna/preferences/sysmgr-args`
fi
fi
exec ionice -c 2 -n 0 /usr/bin/LunaSysMgr -s `cat /var/luna/preferences/sysmgr-args`
end script