summaryrefslogtreecommitdiffstats
path: root/abs/core/live-installer/startx
diff options
context:
space:
mode:
authorUnconfigured <Unconfigured>2009-06-08 22:45:45 (GMT)
committerUnconfigured <Unconfigured>2009-06-08 22:45:45 (GMT)
commit9c70dc6da069779c71156676e51aab607d455d9f (patch)
treeb60871641b73a33f1679028c54c40811832f9d26 /abs/core/live-installer/startx
parent0d999fa87266ce16e60d9accd9019770bcd47970 (diff)
downloadlinhes_pkgbuild-9c70dc6da069779c71156676e51aab607d455d9f.zip
linhes_pkgbuild-9c70dc6da069779c71156676e51aab607d455d9f.tar.gz
linhes_pkgbuild-9c70dc6da069779c71156676e51aab607d455d9f.tar.bz2
live-installer is no longer used
Diffstat (limited to 'abs/core/live-installer/startx')
-rwxr-xr-xabs/core/live-installer/startx29
1 files changed, 0 insertions, 29 deletions
diff --git a/abs/core/live-installer/startx b/abs/core/live-installer/startx
deleted file mode 100755
index 0ffdf8c..0000000
--- a/abs/core/live-installer/startx
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-. /etc/profile
-
-export USER=root
-export HOME=/root
-#TEMPLATES=/usr/share/templates
-
-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/live-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/live-install.sh /root/.vnc/xstartup
- vncserver
-fi