-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.12.01 release: Apache license updates
Update Docs with latest docs based on 2.08.01 release Delete FW file
- Loading branch information
Eman Copty
committed
Oct 8, 2018
1 parent
fd8fd03
commit b634f48
Showing
198 changed files
with
3,392 additions
and
1,161 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
#! /bin/bash | ||
# | ||
# Attempt to download tar file to get firmware. | ||
# If download fails, restore saved firmware if the NCSDK installed version in /opt/movidius matches NCSDK version of this distribution. | ||
# If download fails and versions mismatch, then existing firmware isn't restored. | ||
# | ||
|
||
# ncsdk_link is the url (set in install.sh & get_mvcmd.sh) | ||
ncsdk_link=https://downloadmirror.intel.com/28192/eng/NCSDK-1.12.01.01.tar.gz | ||
NCSDK_API_VERSION=$(basename $ncsdk_link | awk -F. '{print $1"."$2"."$3"."$4}' | awk -F'NCSDK-' '{print $2}') | ||
download_filename="NCSDK-${NCSDK_API_VERSION}.tar.gz" | ||
|
||
mvcmd_dir=./mvnc | ||
mvcmd_old_dir=./mvnc.old | ||
|
||
|
||
function restore_old_fw() | ||
{ | ||
# remove the tar file if downloaded | ||
[ -f ./${download_filename} ] && rm -rf ./${download_filename} | ||
|
||
# Require old FW to exist | ||
if [ ! -d ${mvcmd_old_dir} ] ; then | ||
echo "Error restoring old firmware - directory ${mvcmd_old_dir} doesn't exist. Will exit" | ||
exit 1 | ||
fi | ||
|
||
# Remove FW directory if it exists | ||
[ -d ${mvcmd_dir} ] && rm -rf ${mvcmd_dir} | ||
|
||
# check version of installed NCSDK vs. version of API | ||
NCSDK_installed_version_file="/opt/movidius/version.txt" | ||
if [ -f ${NCSDK_installed_version_file} ] ; then | ||
NCSDK_INSTALLED_VERSION=$(cat ${NCSDK_installed_version_file} ) | ||
|
||
# compare installed version with API | ||
if [ "${NCSDK_API_VERSION}" = "${NCSDK_INSTALLED_VERSION}" ] ; then | ||
mv -f ${mvcmd_old_dir} ${mvcmd_dir} | ||
echo "Warning: Restored old firmware" | ||
else | ||
echo "Error: Old firmware version=${NCSDK_API_VERSION} doesn't match installed NCSDK version ${NCSDK_INSTALLED_VERSION}." | ||
echo " Not restoring old firmware directory, ${mvcmd_old_dir}. Will exit" | ||
exit 1 | ||
fi | ||
|
||
else | ||
echo "Warning: Cannot find NCSDK installed version file ${NCSDK_installed_version_file}." | ||
mv -f ${mvcmd_old_dir} ${mvcmd_dir} | ||
echo "Warning: Restored old firmware and exiting" | ||
fi | ||
|
||
exit 0 | ||
} | ||
|
||
|
||
# If exists, rename existing FW | ||
[ -d ${mvcmd_old_dir} ] && rm -rf ${mvcmd_old_dir} | ||
[ -d ${mvcmd_dir} ] && mv -f ${mvcmd_dir} ${mvcmd_old_dir} | ||
|
||
|
||
# download file if not already available | ||
if [ -f ../../${download_filename} ] ; then | ||
[ -f ${download_filename} ] && rm -f ${download_filename} | ||
ln -s ../../${download_filename} . | ||
else | ||
# download, ncsdk_download_link set in install-utilities.sh function initialize_constants() | ||
wget -q --no-cache -O ${download_filename} ${ncsdk_link} | ||
if [ $? -ne 0 ]; then | ||
echo "Error downloading $ncsdk_download_link. Will try to restore existing firmware" | ||
restore_old_fw | ||
fi | ||
fi | ||
|
||
# ncsdk_pkg is the filename without the .tar.gz extension | ||
ncsdk_pkg=${download_filename%%.tar.gz} | ||
|
||
# create mvnc directory | ||
mkdir -p ${mvcmd_dir} | ||
|
||
# search for FW in tarball | ||
ARCH=$(uname -m) | ||
tar -tf ${download_filename} | grep -q "ncsdk-${ARCH}/fw/$" | ||
if [ $? -ne 0 ] ; then | ||
echo "Error firmware, ncsdk-${ARCH}/fw/, not found in tar file ${download_filename}. Will try to restore existing firmware" | ||
restore_old_fw | ||
fi | ||
|
||
|
||
tar -xf ${download_filename} --strip-components=3 -C ${mvcmd_dir} NCSDK-${NCSDK_API_VERSION}/ncsdk-${ARCH}/fw/ | ||
if [ $? -ne 0 ]; then | ||
echo "Error extracting tar file ${download_filename}. Will try to restore existing firmware" | ||
restore_old_fw | ||
fi | ||
|
||
# check for FW | ||
ls mvnc/*.mvcmd >& /dev/null | ||
if [ $? -eq 0 ]; then | ||
echo "NCSDK FW successfully installed" | ||
# remove old FW dir if it exists | ||
[ -d ${mvcmd_old_dir} ] && rm -rf ${mvcmd_old_dir} | ||
else | ||
echo "ERROR NCSDK FW not found after downloading. Will try to restore existing firmware" | ||
restore_old_fw | ||
fi | ||
|
||
# remove the tar file | ||
rm -rf ${download_filename} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.