X-Git-Url: https://git.ao2.it/kinect-audio-setup.git/blobdiff_plain/8184ae6271a0f62bc01d157cd629d8b436e9a607..07a81ca3d88e7685e3a28981aff0c035d2c40add:/kinect_fetch_fw diff --git a/kinect_fetch_fw b/kinect_fetch_fw index c6a254c..519488f 100755 --- a/kinect_fetch_fw +++ b/kinect_fetch_fw @@ -12,6 +12,9 @@ # # wget and 7z from p7zip-full are needed, they can be installed with # sudo aptitude install wget p7zip-full +# +# NOTE: p7zip-full >= 9.20 is required in order to extract .msi files +# correctly set -e @@ -29,6 +32,17 @@ TEMPDIR=$(mktemp -d) trap 'rm -rf "$TEMPDIR" >/dev/null 2>&1' 0 trap "exit 2" 1 2 3 15 +cat << EOM + +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/ + +The full license of the SDK can be found at: +http://research.microsoft.com/en-us/um/legal/kinectsdk-tou_noncommercial.htm + +EOM + cd "$TEMPDIR" ARCHIVE_NAME=$(basename "$SDK_URL") rm -f "$ARCHIVE_NAME" && wget "$SDK_URL" -O "$ARCHIVE_NAME" @@ -40,7 +54,9 @@ then exit 1 fi -7z e -y -r "$ARCHIVE_NAME" "UACFirmware.*" +echo -n "Extracting the UAC firmware..." +7z e -y -r "$ARCHIVE_NAME" "UACFirmware.*" > /dev/null +echo " done." FW_FILE=$(ls UACFirmware.* | cut -d ' ' -f 1)