summaryrefslogtreecommitdiffstats
path: root/initramfs/stage3-stuff/etc/functions
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs/stage3-stuff/etc/functions')
-rw-r--r--initramfs/stage3-stuff/etc/functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/initramfs/stage3-stuff/etc/functions b/initramfs/stage3-stuff/etc/functions
index 5b8b2112..4632db19 100644
--- a/initramfs/stage3-stuff/etc/functions
+++ b/initramfs/stage3-stuff/etc/functions
@@ -335,7 +335,7 @@ tftp_get () {
do
if [ "$countdown" = "0" ]; then
[ $DEBUGLEVEL -ge 1 ] && \
- echo "[tftp_get] failed to get \"$file\" from \"$file_server\"!"
+ echo "[tftp_get] download of \"$file\" from \"$file_server\" ... failed"
return 0;
fi
tftp -g -r $file -l /tmp/$(basename $file) $file_server
@@ -344,7 +344,7 @@ tftp_get () {
usleep 200000
done
[ $DEBUGLEVEL -ge 1 ] && \
- echo "[tftp_get] download of \"$file\" from \"$file_server\" successful!"
+ echo "[tftp_get] download of \"$file\" from \"$file_server\" ... successful"
return 0;
}