mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
else
|
||||
vtmaster=/dev/null
|
||||
fi
|
||||
echo > $vtmaster
|
||||
echo "Please wait: booting..." > $vtmaster
|
||||
Reference in New Issue
Block a user