projects
/
kinect-audio-setup.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
debian/copyright: add kinect_patch_udev_rules
[kinect-audio-setup.git]
/
kinect_fetch_fw
diff --git
a/kinect_fetch_fw
b/kinect_fetch_fw
index
004fcc2
..
3459dca
100755
(executable)
--- a/
kinect_fetch_fw
+++ b/
kinect_fetch_fw
@@
-1,8
+1,8
@@
#!/bin/sh
#
#!/bin/sh
#
-# kinect_fetch_fw -
Fetch and install the Microsoft Kinect UAC firmware
+# kinect_fetch_fw - Fetch and install the Microsoft Kinect UAC firmware
#
#
-# Copyright (C) 2011
Antonio Ospite <ospite@studenti.unina
.it>
+# Copyright (C) 2011
-2016 Antonio Ospite <ao2@ao2
.it>
#
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
#
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
@@
-21,9
+21,8
@@
set -e
SDK_URL=${SDK_URL:-"http://download.microsoft.com/download/F/9/9/F99791F2-D5BE-478A-B77A-830AD14950C3/KinectSDK-v1.0-beta2-x86.msi"}
SDK_MD5="40764fe9e00911bda5095e5be777e311"
SDK_URL=${SDK_URL:-"http://download.microsoft.com/download/F/9/9/F99791F2-D5BE-478A-B77A-830AD14950C3/KinectSDK-v1.0-beta2-x86.msi"}
SDK_MD5="40764fe9e00911bda5095e5be777e311"
-[ $# -lt 1 ] && { echo "usage: $(basename "$0") <firmware destdir>
[<path of kinect_upload_fw binary>]
" 1>&2; exit 1; }
+[ $# -lt 1 ] && { echo "usage: $(basename "$0") <firmware destdir>" 1>&2; exit 1; }
FW_DESTDIR=$(readlink -m $1)
FW_DESTDIR=$(readlink -m $1)
-LOADER_PATH=${2:-"/usr/local/sbin/kinect_upload_fw"}
command -v wget >/dev/null 2>&1 || { echo "$(basename "$0"): command 'wget' is needed." 1>&2 ; exit 1; }
command -v 7z >/dev/null 2>&1 || { echo "$(basename "$0"): command '7z' is needed." 1>&2; exit 1; }
command -v wget >/dev/null 2>&1 || { echo "$(basename "$0"): command 'wget' is needed." 1>&2 ; exit 1; }
command -v 7z >/dev/null 2>&1 || { echo "$(basename "$0"): command '7z' is needed." 1>&2; exit 1; }
@@
-34,7
+33,7
@@
trap "exit 2" 1 2 3 15
cat << EOM
cat << EOM
-This script is going to download the UAC Firmware for the Microsoft
+This script is going to download the UAC Firmware for the Microsoft
Kinect Sensor device from the Microsoft Kinect for Windows SDK:
http://kinectforwindows.org/
Kinect Sensor device from the Microsoft Kinect for Windows SDK:
http://kinectforwindows.org/
@@
-59,14
+58,7
@@
echo -n "Extracting the UAC firmware..."
echo " done."
FW_FILE=$(ls UACFirmware.* | cut -d ' ' -f 1)
echo " done."
FW_FILE=$(ls UACFirmware.* | cut -d ' ' -f 1)
-FIRMWARE_PATH=
${FW_DESTDIR}/$(basename "$FW_FILE")
+FIRMWARE_PATH=
"${FW_DESTDIR}/UACFirmware"
install -d "$FW_DESTDIR"
install -m 644 "$FW_FILE" "$FIRMWARE_PATH"
install -d "$FW_DESTDIR"
install -m 644 "$FW_FILE" "$FIRMWARE_PATH"
-
-if [ -f "/lib/udev/rules.d/55-kinect_audio.rules" ];
-then
- sed -e "s|@LOADER_PATH@|${LOADER_PATH}|g" \
- -e "s|@FIRMWARE_PATH@|${FIRMWARE_PATH}|g" \
- -i "/lib/udev/rules.d/55-kinect_audio.rules"
-fi