xbps-casper is a modified version of Ubuntu's casper app. And will be simplified and modified even more in the future, if necessary. --HG-- extra : convert_revision : 59163ef9b8b6978bc94c59ecaf0c8038b4e93e07
12 lines
233 B
Text
12 lines
233 B
Text
|
|
. /scripts/functions
|
|
|
|
# Print a message and wait for enter
|
|
log_wait_msg()
|
|
{
|
|
if [ -x /sbin/usplash_write ]; then
|
|
/sbin/usplash_write "INPUTENTER $@"
|
|
read nunya < /dev/.initramfs/usplash_outfifo
|
|
fi
|
|
_log_msg "Waiting: $@ ..."
|
|
}
|