mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02: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:
25
meta/packages/maemo/nokia770-init/fixup-770.sh
Normal file
25
meta/packages/maemo/nokia770-init/fixup-770.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
#! /bin/sh
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Unmounting virtual fs from initrd"
|
||||
umount /mnt/initfs/sys
|
||||
umount /mnt/initfs/proc
|
||||
ln -s /dev/vc/0 /dev/tty0
|
||||
ln -s /dev/vc/1 /dev/tty1
|
||||
ln -s /dev/vc/2 /dev/tty2
|
||||
ln -s /dev/vc/3 /dev/tty3
|
||||
ln -s /dev/vc/4 /dev/tty4
|
||||
ln -s /dev/vc/5 /dev/tty5
|
||||
ln -s /dev/vc/6 /dev/tty6
|
||||
ln -s /dev/vc/7 /dev/tty7
|
||||
;;
|
||||
stop)
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $SCRIPTNAME {start|stop}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user