diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-09 08:51:23 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:01 +0100 |
commit | a2ef4657d3d3cdb14957034376e4b934a0b7650d (patch) | |
tree | b19b5734ec1b5634ed78c3e83af3ad533f559b3c /scripts/live-functions | |
parent | df79347407d7143a78490166decd11fdd109e75c (diff) | |
download | live-boot-a2ef4657d3d3cdb14957034376e4b934a0b7650d.tar.gz live-boot-a2ef4657d3d3cdb14957034376e4b934a0b7650d.zip |
Override log_*_msg to print nicer status text (until #494257 is merged).
Diffstat (limited to 'scripts/live-functions')
-rw-r--r-- | scripts/live-functions | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/scripts/live-functions b/scripts/live-functions index d86a3f6..01350e8 100644 --- a/scripts/live-functions +++ b/scripts/live-functions @@ -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 @@ -12,7 +53,7 @@ log_wait_msg () read nunya < /dev/.initramfs/usplash_outfifo fi - _log_msg "Waiting: ${@} ..." + _log_msg "Waiting: ${@} ... \n" } really_export () |