aboutsummaryrefslogtreecommitdiffstats
path: root/ConfigurePermissionsAndPackages.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-03-28 02:08:11 +0100
committerSven Gothel <[email protected]>2015-03-28 02:08:11 +0100
commit450aa6f7df9e67dd256b86f94e65eaf707032aad (patch)
tree04aa207d84ddc8ca246d2573aaaf756b3ce8a0b5 /ConfigurePermissionsAndPackages.sh
parent3c7b8a17e907f4ef2afd9f77db566a3f6179cbe4 (diff)
parent4207f9c279e832e3afcb3f5fc6cd8d84cb4cfe4c (diff)
Merge branch 'vanilla_0.5.0.1' into jogamp_0.5.0.1
Conflicts: LibOVR/Include/OVR_CAPI_0_5_0.h LibOVR/Src/CAPI/CAPI_HMDState.cpp LibOVR/Src/Displays/OVR_Win32_Dxgi_Display.h LibOVR/Src/Kernel/OVR_System.cpp LibOVR/Src/OVR_CAPI.cpp LibOVR/Src/OVR_Profile.cpp LibOVRKernel/Src/Kernel/OVR_ThreadsWinAPI.cpp LibOVRKernel/Src/Kernel/OVR_Types.h
Diffstat (limited to 'ConfigurePermissionsAndPackages.sh')
-rwxr-xr-xConfigurePermissionsAndPackages.sh51
1 files changed, 0 insertions, 51 deletions
diff --git a/ConfigurePermissionsAndPackages.sh b/ConfigurePermissionsAndPackages.sh
deleted file mode 100755
index 44f550b..0000000
--- a/ConfigurePermissionsAndPackages.sh
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-
-#############################################################################
-#
-# Filename : ConfigurePermissionsAndPackages.sh
-# Content : Linux file for installing prerequisite libraries and the
-# permissions file for the USB HID device
-# Created : 2013
-# Authors : Simon Hallam and Brant Lewis
-# Copyright : Copyright 2013 OculusVR, Inc. All Rights Reserved
-# Instruction : Ensure that the install.sh has execute permissions.
-# Navigate to a command shell, enter:
-#
-# ./install.sh
-#
-# Enter the administrator password for sudo access.
-#
-# Notes : UBUNTU 13 USERS
-# ---------------
-# The OculusConfigUtil does not currently support Ubuntu 13
-# out of the box. If you see an error similar to this upon
-# launching OculusConfigUtil:
-#
-# "error while loading shared libraries: libudev.so.0"
-#
-# Then please try the following solution, until we officially
-# support Ubuntu 13:
-#
-# cd /lib/x86_64-linux-gnu/
-# sudo ln -sf libudev.so.1 libudev.so.0
-#
-#############################################################################
-
-echo "Installing OculusVR Rift udev rules file..."
-sudo cp ./LibOVR/90-oculus.rules /lib/udev/rules.d
-echo "Installing libudev..."
-sudo apt-get install libudev-dev
-echo "Installing libxext..."
-sudo apt-get install libxext-dev
-echo "Installing mesa-common..."
-sudo apt-get install mesa-common-dev
-echo "Installing freeglut3..."
-sudo apt-get install freeglut3-dev
-echo "Installing Xinerama..."
-sudo apt-get install libxinerama-dev
-echo "Installing Xrandr..."
-sudo apt-get install libxrandr-dev
-echo "Installing XFree86"
-sudo apt-get install libxxf86vm-dev
-echo "Installation complete"
-