diff options
author | James Meyer <james.meyer@operamail.com> | 2009-11-13 07:22:22 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-11-13 07:22:22 (GMT) |
commit | f1e3c5f9132ab7fdf1e1d33f6020a82a9869096a (patch) | |
tree | 6b681fc663d7f8a07863185f4313d39cedba655a /abs/core-testing/LinHES-config-22/live-install.sh | |
parent | 420f4c0c8157237d3b4b682a27db498b80c9e0f3 (diff) | |
download | linhes_pkgbuild-f1e3c5f9132ab7fdf1e1d33f6020a82a9869096a.zip linhes_pkgbuild-f1e3c5f9132ab7fdf1e1d33f6020a82a9869096a.tar.gz linhes_pkgbuild-f1e3c5f9132ab7fdf1e1d33f6020a82a9869096a.tar.bz2 |
LinHES-config-22: first check in of LinHES-config-22
Diffstat (limited to 'abs/core-testing/LinHES-config-22/live-install.sh')
-rwxr-xr-x | abs/core-testing/LinHES-config-22/live-install.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/abs/core-testing/LinHES-config-22/live-install.sh b/abs/core-testing/LinHES-config-22/live-install.sh new file mode 100755 index 0000000..573bb1f --- /dev/null +++ b/abs/core-testing/LinHES-config-22/live-install.sh @@ -0,0 +1,28 @@ +#!/bin/bash +#redirect stderr to stdout, then rediret stdout to file +. /etc/profile +exec 2>&1 +exec > /tmp/mythvantage_install.log +. /etc/X11/STBWINDOWMANAGER +/usr/bin/nvidia-settings -a InitialPixmapPlacement=2 +keylaunch & +/usr/bin/tilda & +/usr/X11R6/bin/unclutter -root -idle 0 -jitter 400 -noevents & +export MALLOC_CHECK_=0 +if [ -f /opt/vmware/bin32/vmware-user-wrapper ] +then + /opt/vmware/bin32/vmware-user-wrapper & +fi +xhost + +CMDLINE=$(cat /proc/cmdline) +echo $CMDLINE |grep -q nfsroot +NFSROOT=$? +if [ x$NFSROOT = x1 ] +then + + unbuffer MythVantage & +else + NETBOOT=YES MythVantage & +fi + +exec $STBWINDOWMANAGER |