Skip to content

Commit

Permalink
Override log_*_msg to print nicer status text (until #494257 is merged).
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
  • Loading branch information
lamby committed Aug 9, 2008
1 parent 70e8b26 commit 1d4b3c0
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion scripts/live-functions
Expand Up @@ -3,6 +3,47 @@
. /scripts/functions
. /live.vars

# Override log_*_msg until #494257 is merged

_log_msg()
{
if [ "$quiet" = "y" ]; then return; fi
printf "$@"
}

log_success_msg()
{
_log_msg "Success: $@\n"
}

log_failure_msg()
{
_log_msg "Failure: $@\n"
}

log_warning_msg()
{
_log_msg "Warning: $@\n"
}

log_begin_msg()
{
if [ -x /sbin/usplash_write ]; then
/sbin/usplash_write "TEXT $@"
fi
_log_msg "Begin: $@ ... "
}

log_end_msg()
{
if [ -x /sbin/usplash_write ]; then
/sbin/usplash_write "SUCCESS ok"
fi
_log_msg "done.\n"
}

##

log_wait_msg ()
{
# Print a message and wait for enter
Expand All @@ -12,7 +53,7 @@ log_wait_msg ()
read nunya < /dev/.initramfs/usplash_outfifo
fi

_log_msg "Waiting: ${@} ..."
_log_msg "Waiting: ${@} ... \n"
}

really_export ()
Expand Down

0 comments on commit 1d4b3c0

Please sign in to comment.