diff options
author | Daniel Baumann <daniel@debian.org> | 2010-08-10 01:57:53 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:58:08 +0100 |
commit | 52dcef518bdb95605670b8dc12257057bf7a2dc0 (patch) | |
tree | 638f1c1ebb55ebcc0363eca6076bc7c379e568cf /scripts/live-functions | |
parent | 432f4b1dfead12040d21d15fd2f3ecc033ac5ca3 (diff) | |
download | live-boot-52dcef518bdb95605670b8dc12257057bf7a2dc0.tar.gz live-boot-52dcef518bdb95605670b8dc12257057bf7a2dc0.zip |
Adding debian version 3.0~a1-1.
Diffstat (limited to 'scripts/live-functions')
-rw-r--r-- | scripts/live-functions | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/live-functions b/scripts/live-functions index 5efe432..b1d7503 100644 --- a/scripts/live-functions +++ b/scripts/live-functions @@ -9,7 +9,13 @@ log_wait_msg () then plymouth message --text="$@" plymouth watch-keystroke | read nunya - fi + elif [ -x /sbin/usplash_write ] + then + /sbin/usplash_write "INPUTENTER ${@}" + read nunya < /dev/.initramfs/usplash_outfifo + else if [ -x /sbin/splashy_update ] ; then + /sbin/splashy_update "getstring ${@}" | read nunya + fi ; fi _log_msg "Waiting: ${@} ... \n" } |