summaryrefslogtreecommitdiffstats
path: root/initramfs/stage3-stuff/etc/functions
diff options
context:
space:
mode:
authorMichael Janczyk2009-03-02 22:34:36 +0100
committerMichael Janczyk2009-03-02 22:34:36 +0100
commit4bb2e3a5849691395e4d5072957cbd36bcb078d5 (patch)
tree0079d6c5a7b6a82a28e34a959def701eed98d59b /initramfs/stage3-stuff/etc/functions
parentmodified fmpfssize: (diff)
downloadcore-4bb2e3a5849691395e4d5072957cbd36bcb078d5.tar.gz
core-4bb2e3a5849691395e4d5072957cbd36bcb078d5.tar.xz
core-4bb2e3a5849691395e4d5072957cbd36bcb078d5.zip
minor cosmetic changes
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2661 95ad53e4-c205-0410-b2fa-d234c58c8868
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;
}