blob: 788cba980276a2aeffcbca6098ecceaca2559108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|