I ran into this on my boards that start out with the really minimal
(console and null only) set of dev nodes prior to udev running. The
banner script looks around for what might be the vtmaster (aka what's
got console) to say that we're booting. But that's where things go by
default anyhow.
Signed-off-by: Tom Rini <trini@embeddedalley.com>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Mike Westerhof <mwester@dls.net>
#!/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
+echo "Please wait: booting..."
+++ /dev/null
-#!/bin/sh
-#NOTE: this script may execute with absolutely nothing
-# in /dev
-echo "SlugOS booting..."
DEPENDS = "makedevs"
RDEPENDS = "makedevs"
LICENSE = "GPL"
-PR = "r114"
+PR = "r115"
SRC_URI = "file://functions \
file://halt \