-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathinstall.sh
More file actions
24 lines (22 loc) · 925 Bytes
/
Copy pathinstall.sh
File metadata and controls
24 lines (22 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
echo "Installing DS4(R200) on your machine."
echo "----------------------------------------------------"
echo "1. Installing Driver"
echo "----------------------------------------------------"
sh ds_uvcdriver/scripts/patch_ubuntu_uvc.sh
echo "----------------------------------------------------"
echo "2. Copying Lib and include files"
echo "----------------------------------------------------"
sudo chmod -R 777 Lib
sudo chmod -R 777 Include
sudo mkdir /usr/include/dsapi
sudo cp -a Include/. /usr/include/dsapi
sudo cp -a Lib/. /usr/lib
echo "----------------------------------------------------"
echo "3. installing connectivity workaround rules"
echo "----------------------------------------------------"
cd ds_connectivity_workaround
sh install_rules.sh
cd ..
echo "----------------------------------------------------"
echo "Done. Please replug the DS4"
echo "----------------------------------------------------"