summaryrefslogtreecommitdiffstats
path: root/meta/packages/initscripts/initscripts-1.0/tosa/devices
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-06-13 14:19:47 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-06-13 14:19:47 +0000
commit123cce0f789e7581b59c6e6c0967ed6b051fe59e (patch)
tree9a82cc39e94e9af2c2d5d6db012d8c11e8c365d7 /meta/packages/initscripts/initscripts-1.0/tosa/devices
parenta8cda2fa914810b9cc03c03ad461ab0f42017b95 (diff)
downloadpoky-123cce0f789e7581b59c6e6c0967ed6b051fe59e.tar.gz
initscripts: do not install 'devices' initscript - we do not support devfsd
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4640 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/initscripts/initscripts-1.0/tosa/devices')
-rwxr-xr-xmeta/packages/initscripts/initscripts-1.0/tosa/devices72
1 files changed, 0 insertions, 72 deletions
diff --git a/meta/packages/initscripts/initscripts-1.0/tosa/devices b/meta/packages/initscripts/initscripts-1.0/tosa/devices
deleted file mode 100755
index 61cfd9d7b9..0000000000
--- a/meta/packages/initscripts/initscripts-1.0/tosa/devices
+++ /dev/null
@@ -1,72 +0,0 @@
1#!/bin/sh
2#
3# Devfs handling script. Since we arent running devfsd due to various reasons
4# which I will not lay out here, we need to create some links for compatibility.
5
6. /etc/default/rcS
7
8# exit without doing anything if udev is active
9if test -e /dev/.udevdb; then
10 exit 0
11fi
12
13if test -e /dev/.devfsd
14then
15 if test "$VERBOSE" != "no"; then echo -n "Setting up device links for devfs: "; fi
16 ln -s /dev/touchscreen/0 /dev/ts
17 ln -s /dev/touchscreen/0raw /dev/tsraw
18 ln -s /dev/vc/0 /dev/tty0
19 ln -s /dev/vc/1 /dev/tty1
20 ln -s /dev/vc/2 /dev/tty2
21 ln -s /dev/vc/3 /dev/tty3
22 ln -s /dev/vc/4 /dev/tty4
23 ln -s /dev/vc/5 /dev/tty5
24 ln -s /dev/fb/0 /dev/fb0
25# ln -s /dev/tts/0 /dev/ttySA0
26# ln -s /dev/tts/1 /dev/ttySA1
27# ln -s /dev/tts/2 /dev/ttySA2
28
29 ln -s /dev/sound/dsp /dev/dsp
30 ln -s /dev/sound/mixer /dev/mixer
31
32 ln -s /dev/v4l/video0 /dev/video0
33 ln -s /dev/v4l/video0 /dev/video
34 ln -s /dev/misc/rtc /dev/rtc
35
36 ## need this so that ppp will autoload the ppp modules
37 mknod /dev/ppp c 108 0
38 if test "$VERBOSE" != "no"; then echo "done"; fi
39else
40 if test "$VERBOSE" != "no"; then echo -n "Mounting /dev ramdisk: "; fi
41 mount -t ramfs ramfs /dev || mount -t tmpfs ramfs /dev
42 if test $? -ne 0; then
43 if test "$VERBOSE" != "no"; then echo "failed"; fi
44 else
45 if test "$VERBOSE" != "no"; then echo "done"; fi
46 fi
47 if test "$VERBOSE" != "no"; then echo -n "Populating /dev: "; fi
48 cd /
49 mkdir -p dev/msys
50 mkdir -p dev/pts
51 mkdir -p dev/input
52 mkdir -p dev/vc
53 for i in 0 1 2 3 4 5 6 7 8 9; do
54 ln -s /dev/tty$i /dev/vc/$i
55 done
56 ln -sf /dev/sharp_ts /dev/ts
57 ln -sf /dev/sharp_fl /dev/fl
58 ln -sf /proc/self/fd /dev/fd
59 ln -sf /proc/kcore /dev/core
60 /sbin/makedevs -r / -D /etc/device_table
61 if test $? -ne 0; then
62 if test "$VERBOSE" != "no"; then echo "failed"; fi
63 else
64 if test "$VERBOSE" != "no"; then echo "done"; fi
65 fi
66fi
67
68#Always turn on usb
69if [ ! -d /dev/usb ]; then mkdir /dev/usb; fi
70mknod /dev/usb/host_ohci c 10 222
71
72exit 0