diff --git a/target/bootdisk/linuxrc.sh b/target/bootdisk/linuxrc.sh index 4c540f626..c33f6ed01 100644 --- a/target/bootdisk/linuxrc.sh +++ b/target/bootdisk/linuxrc.sh @@ -392,8 +392,13 @@ checkisomd5() { # {{{ echo "Running check..." /bin/checkisomd5 ${devicefile} + code=${?} + if [ ${code} -eq 1 ] ; then + echo "MD5Sum is correct." + elif [ ${code} -eq 0 ] ; then + echo "MD5Sum is NOT correct! Please contact the authors!" + fi - echo "done" echo "Press Return key to continue." read } # }}}