2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 11:18:27 +08:00

artiq_flash.sh: some cleanup

This commit is contained in:
Yann Sionneau 2015-05-14 11:11:54 +02:00
parent e557d7e2df
commit e9b166b199

View File

@ -117,11 +117,7 @@ then
FLASH_BITSTREAM=1
fi
check_return() {
echo "Flashing failed, you may want to re-run the flashing tool."
exit
}
set +e
xc3sprog -c $CABLE -R > /dev/null 2>&1
if [ "$?" != "0" ]
then
@ -129,10 +125,12 @@ then
echo "To fix this you might want to add a udev rule by doing:"
echo "$ sudo cp $ARTIQ_PREFIX/misc/$UDEV_RULES /etc/udev/rules.d"
echo "Then unplug/replug your device and try flashing again"
echo
echo "Other reason could be that you chosed the wrong target"
echo "Please make sure you used the correct -t option (currently: $BOARD)"
exit
fi
trap check_return ERR
set -e
if [ "${FLASH_BITSTREAM}" == "1" ]
then