diff options
Diffstat (limited to 'recipes/initscripts/initscripts-1.0/banner')
-rw-r--r-- | recipes/initscripts/initscripts-1.0/banner | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/initscripts/initscripts-1.0/banner b/recipes/initscripts/initscripts-1.0/banner new file mode 100644 index 0000000000..0349ce1954 --- /dev/null +++ b/recipes/initscripts/initscripts-1.0/banner @@ -0,0 +1,17 @@ +#!/bin/sh + +if [ ! -e /dev/tty ]; then + /bin/mknod -m 0666 /dev/tty c 5 0 +fi + +if ( > /dev/tty0 ) 2>/dev/null; then + vtmaster=/dev/tty0 +elif ( > /dev/vc/0 ) 2>/dev/null; then + vtmaster=/dev/vc/0 +elif ( > /dev/console ) 2>/dev/null; then + vtmaster=/dev/console +else + vtmaster=/dev/null +fi +echo > $vtmaster +echo "Please wait: booting..." > $vtmaster |