From: Antonio Ospite Date: Sun, 27 Nov 2011 09:23:30 +0000 (+0100) Subject: kinect_fetch_fw: tell where we are getting the firmware from X-Git-Tag: v0.2~1 X-Git-Url: https://git.ao2.it/kinect-audio-setup.git/commitdiff_plain/24c40894e8f3bbd545b16f92113d8f89d49f3e3b kinect_fetch_fw: tell where we are getting the firmware from --- diff --git a/kinect_fetch_fw b/kinect_fetch_fw index 1ec79cd..a358327 100755 --- a/kinect_fetch_fw +++ b/kinect_fetch_fw @@ -29,6 +29,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://www.kinectforwindows.org/download/EULA.htm + +EOM + cd "$TEMPDIR" ARCHIVE_NAME=$(basename "$SDK_URL") rm -f "$ARCHIVE_NAME" && wget "$SDK_URL" -O "$ARCHIVE_NAME"