Files
poky/meta/packages/maemo/nokia770-init/fixup-770.sh
Richard Purdie 9993c7f30c nokia770-init: Attempt to ifconfig up the wifi
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3687 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-02-06 21:04:51 +00:00

26 lines
645 B
Bash

#! /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
/sbin/ifconfig wlan0 up
;;
stop)
;;
*)
echo "Usage: $SCRIPTNAME {start|stop}" >&2
exit 1
;;
esac
exit 0