#!/bin/bash

# process id =
# 0 - [firmware update - not usued unless internal error occurs]
# 1 - erase
# 2 - additonal erase
# 3 - write
# 4 - erase

if [ x$1 == x1 ]; then
	echo "Process $2 failed due to $3."
else
	echo "Process $2 progress $3."
fi


