diff options
Diffstat (limited to 'OculusConfigurationUtility.sh')
-rwxr-xr-x | OculusConfigurationUtility.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/OculusConfigurationUtility.sh b/OculusConfigurationUtility.sh new file mode 100755 index 0000000..788cba9 --- /dev/null +++ b/OculusConfigurationUtility.sh @@ -0,0 +1,26 @@ +#!/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/RiftConfigUtil_x86_64 +else + echo "The Oculus Configuration Utility is currently only supported on 64-bit Linux." +fi + |