+#!/bin/sh
+#
+# Devfs handling script. Since we arent running devfsd due to various reasons
+# which I will not lay out here, we need to create some links for compatibility.
+
+. /etc/default/rcS
+
+if test -e /dev/.devfsd
+then
+ if test "$VERBOSE" != "no"; then echo -n "Setting up device links for devfs: "; fi
+ ln -s /dev/touchscreen/0 /dev/ts
+ ln -s /dev/touchscreen/0raw /dev/tsraw
+ 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/fb/0 /dev/fb0
+# ln -s /dev/tts/0 /dev/ttySA0
+# ln -s /dev/tts/1 /dev/ttySA1
+# ln -s /dev/tts/2 /dev/ttySA2
+
+ ln -s /dev/sound/dsp /dev/dsp
+ ln -s /dev/sound/mixer /dev/mixer
+
+ ln -s /dev/v4l/video0 /dev/video0
+ ln -s /dev/v4l/video0 /dev/video
+ ln -s /dev/misc/rtc /dev/rtc
+
+ ## need this so that ppp will autoload the ppp modules
+ mknod /dev/ppp c 108 0
+ if test "$VERBOSE" != "no"; then echo "done"; fi
+else
+ if test "$VERBOSE" != "no"; then echo -n "Mounting /dev ramdisk: "; fi
+ mount -t ramfs ramfs /dev
+ if test $? -ne 0; then
+ if test "$VERBOSE" != "no"; then echo "failed"; fi
+ else
+ if test "$VERBOSE" != "no"; then echo "done"; fi
+ fi
+ if test "$VERBOSE" != "no"; then echo -n "Populating /dev: "; fi
+ cd /
+ mkdir -p dev/msys
+ mkdir -p dev/pts
+# ln -sf /dev/dsp1 /dev/sharp_buz
+ ln -sf /dev/sharp_ts /dev/ts
+ ln -sf /dev/collie-fl /dev/fl
+ ln -sf /proc/self/fd /dev/fd
+ ln -sf /proc/kcore /dev/core
+ /sbin/makedevs -r / -D /etc/device_table
+ if test $? -ne 0; then
+ if test "$VERBOSE" != "no"; then echo "failed"; fi
+ else
+ if test "$VERBOSE" != "no"; then echo "done"; fi
+ fi
+fi
+
+exit 0
+DESCRIPTION="SysV init scripts"
+MAINTAINER="Chris Larson <kergoth@handhelds.org>"
+
+do_install () {
+#
+# Create directories and install device independent scripts
+#
+ install -d ${D}/${sysconfdir}/init.d \
+ ${D}/${sysconfdir}/rcS.d \
+ ${D}/${sysconfdir}/rc0.d \
+ ${D}/${sysconfdir}/rc1.d \
+ ${D}/${sysconfdir}/rc2.d \
+ ${D}/${sysconfdir}/rc3.d \
+ ${D}/${sysconfdir}/rc4.d \
+ ${D}/${sysconfdir}/rc5.d \
+ ${D}/${sysconfdir}/rc6.d
+ install -m 0755 ${FILESDIR}/bootmisc.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/checkroot.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/finish ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/halt ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/hostname.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/mountall.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/mountnfs.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/reboot ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/rmnologin ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/sendsigs ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/single ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/umountnfs.sh ${D}/etc/init.d
+ install -m 0755 ${FILESDIR}/urandom ${D}/etc/init.d
+#
+# Install device dependent scripts
+#
+ oe_machinstall -m 0755 ${FILESDIR}/banner ${D}/etc/init.d/banner
+ oe_machinstall -m 0755 ${FILESDIR}/devices ${D}/etc/init.d/devices
+ oe_machinstall -m 0755 ${FILESDIR}/extractfs ${D}/etc/init.d/extractfs
+ oe_machinstall -m 0755 ${FILESDIR}/umountfs ${D}/etc/init.d/umountfs
+#
+# Create runlevel links
+#
+ ln -sf ../init.d/rmnologin ${D}/etc/rc2.d/S99rmnologin
+ ln -sf ../init.d/rmnologin ${D}/etc/rc3.d/S99rmnologin
+ ln -sf ../init.d/rmnologin ${D}/etc/rc4.d/S99rmnologin
+ ln -sf ../init.d/rmnologin ${D}/etc/rc5.d/S99rmnologin
+ ln -sf ../init.d/sendsigs ${D}/etc/rc6.d/S20sendsigs
+# ln -sf ../init.d/urandom ${D}/etc/rc6.d/S30urandom
+ ln -sf ../init.d/umountnfs.sh ${D}/etc/rc6.d/S31umountnfs.sh
+# ln -sf ../init.d/umountfs ${D}/etc/rc6.d/S40umountfs
+ ln -sf ../init.d/reboot ${D}/etc/rc6.d/S90reboot
+ ln -sf ../init.d/sendsigs ${D}/etc/rc0.d/S20sendsigs
+ ln -sf ../init.d/urandom ${D}/etc/rc0.d/S30urandom
+ ln -sf ../init.d/umountnfs.sh ${D}/etc/rc0.d/S31umountnfs.sh
+# ln -sf ../init.d/umountfs ${D}/etc/rc0.d/S40umountfs
+ ln -sf ../init.d/halt ${D}/etc/rc0.d/S90halt
+# ln -sf ../init.d/banner ${D}/etc/rcS.d/S01banner
+ ln -sf ../init.d/checkroot.sh ${D}/etc/rcS.d/S10checkroot.sh
+# ln -sf ../init.d/checkfs.sh ${D}/etc/rcS.d/S30checkfs.sh
+ ln -sf ../init.d/mountall.sh ${D}/etc/rcS.d/S35mountall.sh
+# ln -sf ../init.d/extractfs ${D}/etc/rcS.d/S36extractfs
+ ln -sf ../init.d/hostname.sh ${D}/etc/rcS.d/S40hostname.sh
+ ln -sf ../init.d/mountnfs.sh ${D}/etc/rcS.d/S45mountnfs.sh
+ ln -sf ../init.d/bootmisc.sh ${D}/etc/rcS.d/S55bootmisc.sh
+ ln -sf ../init.d/urandom ${D}/etc/rcS.d/S55urandom
+# ln -sf ../init.d/packages ${D}/etc/rcS.d/S98packages
+ ln -sf ../init.d/finish ${D}/etc/rcS.d/S99finish
+# ln -sf ../init.d/devices ${D}/etc/rcS.d/S01devices
+# ln -sf ../init.d/devpts.sh ${D}/etc/rcS.d/S31devpts.sh
+# ln -sf ../init.d/ramdisk ${D}/etc/rcS.d/S30ramdisk
+}