summaryrefslogtreecommitdiffstats
path: root/OculusConfigurationUtility.sh
diff options
context:
space:
mode:
authorBrad Davis <[email protected]>2013-10-13 20:28:58 -0700
committerBrad Davis <[email protected]>2013-10-13 20:28:58 -0700
commit672cdd0ef5455cd62a0d7f7eb6b9889f3ea35f21 (patch)
treef3454dc864242744aef1ea5474b5011556d0f388 /OculusConfigurationUtility.sh
parent1408ed7b208c7a1cff1a2448fc890e9b8bd6dc4e (diff)
Updating to cmake, glew, xrandr
Diffstat (limited to 'OculusConfigurationUtility.sh')
-rwxr-xr-xOculusConfigurationUtility.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/OculusConfigurationUtility.sh b/OculusConfigurationUtility.sh
deleted file mode 100755
index a70d7f6..0000000
--- a/OculusConfigurationUtility.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-#############################################################################
-#
-# Filename : OculusConfigurationUtility.sh
-# Content : Linux file for starting the OculusConfigurationUtility app
-# from the SDK package root. It will determine the
-# architechture of the system it is running on, and start the
-# approprite executable
-# Created : 2013
-# Authors : Simon Hallam
-# Copyright : Copyright 2013 OculusVR, Inc. All Rights Reserved
-# Instruction : Ensure that the OculusConfigurationUtility.sh has execute
-# permissions. Navigate to a command shell, enter:
-#
-# ./OculusConfigurationUtility.sh
-#
-#############################################################################
-
-MACHINE_TYPE=`uname -m`
-if [ ${MACHINE_TYPE} == 'x86_64' ]; then
- ./Tools/OculusConfigUtil/OculusConfigUtil_x86_64
-elif [ ${MACHINE_TYPE} == 'i686' ]; then
- ./Tools/OculusConfigUtil/OculusConfigUtil_i386
-else
- echo "The Oculus Configuration Utility does not currently support this platform."
-fi
-