summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Janczyk2009-03-02 22:34:36 +0100
committerMichael Janczyk2009-03-02 22:34:36 +0100
commit4bb2e3a5849691395e4d5072957cbd36bcb078d5 (patch)
tree0079d6c5a7b6a82a28e34a959def701eed98d59b
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
-rw-r--r--initramfs/stage3-stuff/etc/functions4
-rwxr-xr-xinitramfs/stage3-stuff/init6
2 files changed, 5 insertions, 5 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;
}
diff --git a/initramfs/stage3-stuff/init b/initramfs/stage3-stuff/init
index 64122b1b..6076d2ce 100755
--- a/initramfs/stage3-stuff/init
+++ b/initramfs/stage3-stuff/init
@@ -897,13 +897,13 @@ postinit
chmod u+x /bin/postinit.local; }
[ -f /bin/postinit.local ] && {
[ $DEBUGLEVEL -gt 0 ] && \
- echo "Running /bin/postinit.local ..."
+ echo -n "Running script /bin/postinit.local ... "
/bin/postinit.local
- echo "done"; }
+ echo "ok"; }
# start a debug shell in higher debug levels
[ $DEBUGLEVEL -gt 2 -a $DEBUGLEVEL != 8 ] \
- && echo "Debuglevel > 2: starting debug-shell, exit with ctrl+d" && /bin/ash
+ && echo "DEBUGLEVEL>2: starting debug-shell, exit with CTRL+D" && /bin/ash
runinithook '90-postinit-done'