diff options
author | James Meyer <james.meyer@operamail.com> | 2008-10-11 19:51:03 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-10-11 19:51:03 (GMT) |
commit | c5bb2c762596200b21b2b45cdbc18f01144f1332 (patch) | |
tree | fc0f25f217e1083e0ba610ab16f9ceb8b7871a0c /build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx | |
parent | cba152f0a94680ed3558bf1c46a459e7a5e5680e (diff) | |
download | linhes_dev-c5bb2c762596200b21b2b45cdbc18f01144f1332.zip |
Modify build profiles to not use inittab
Diffstat (limited to 'build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx')
-rwxr-xr-x | build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx b/build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx new file mode 100755 index 0000000..304b722 --- /dev/null +++ b/build_tools/clarch/larch/profiles/i686-testing-REMOTE/rootoverlay/root/startx @@ -0,0 +1,28 @@ +#!/bin/bash +. /etc/profile + +export USER=root +export HOME=/root + +CMDLINE=$(cat /proc/cmdline) +TEMPVAR=${CMDLINE#*ip=} +IP=${TEMPVAR%% *} +echo $CMDLINE |grep -q vnc +USEVNC=$? + +if [ x$USEVNC = x1 ] +then + $MV_ROOT/bin/xconfig.sh + cat /etc/X11/xorg.conf | sed -e 's/dev\/mouse/dev\/psaux/g'> /root/xorg.conf.install + startx /root/LinHES-install.sh -- -config /root/xorg.conf.install -allowMouseOpenFail + else + #VNC + pacman -Sf --noconfirm tightvnc + cd /root + mkdir .vnc + echo mythvantage |vncpasswd -f > /root/.vnc/passwd + chmod 500 /root/.vnc/passwd + rm /root/.vnc/xstartup + ln -s /root/LinHES-install.sh /root/.vnc/xstartup + vncserver +fi |