summaryrefslogtreecommitdiffstats
path: root/build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-09-19 02:12:09 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-09-19 02:12:09 (GMT)
commit2e5bbabf1f5e0f341be196f2f5575d91859bd2d0 (patch)
treea34146680fb449c61fa50fe1b1dcc3bbd598f204 /build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx
parent43a158579d6c32f069fbc287a55227552276f808 (diff)
downloadlinhes_dev-2e5bbabf1f5e0f341be196f2f5575d91859bd2d0.zip
larch7: cleanup up profiles.
l7 is not working yet, but still working on it. Signed-off-by: James Meyer <james.meyer@operamail.com>
Diffstat (limited to 'build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx')
-rwxr-xr-xbuild_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx28
1 files changed, 0 insertions, 28 deletions
diff --git a/build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx b/build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx
deleted file mode 100755
index 9274703..0000000
--- a/build_tools/l7/larch0/profiles/i686-testing-local/rootoverlay/root/startx
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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 2>/dev/null
- cat /etc/X11/xorg.conf | sed -e 's/dev\/mouse/dev\/psaux/g'> /root/xorg.conf.install
- startx /root/LinHES-install.sh -- -logverbose 6 -config /root/xorg.conf.install -allowMouseOpenFail 2>/tmp/x.log
- 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