Adding live-initramfs 1.87.1-1.
[live-boot-grml.git] / scripts / live-functions
1
2 . /scripts/functions
3
4 # Override this so we don't call PROGRESS
5 log_end_msg()
6 {
7         if [ -x /sbin/usplash_write ]; then
8                 /sbin/usplash_write "SUCCESS ok"
9         fi
10         _log_msg "Done."
11 }
12
13 # Print a message and wait for enter
14 log_wait_msg()
15 {
16         if [ -x /sbin/usplash_write ]; then
17                 /sbin/usplash_write "INPUTENTER $@"
18                 read nunya < /dev/.initramfs/usplash_outfifo
19         fi
20         _log_msg "Waiting: $@ ..."
21 }