summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/udev/udev.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-02-03 09:02:41 +0000
committerRichard Purdie <richard@openedhand.com>2006-02-03 09:02:41 +0000
commit4a64818533733e194138a45656aaf14d5a123e98 (patch)
tree79925075659d01f3b148e4267138ee6e8de91789 /openembedded/packages/udev/udev.inc
parentbc4e7ed8993d3f598e5c03b78838bbc6199413ba (diff)
downloadpoky-4a64818533733e194138a45656aaf14d5a123e98.tar.gz
Update to udev 084 from OE. This adds a coldplug script to emulate the calls necessary to load devices already inserted into the system at boot. It also adds a network interface control script.
git-svn-id: https://svn.o-hand.com/repos/poky@247 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/udev/udev.inc')
-rw-r--r--openembedded/packages/udev/udev.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/openembedded/packages/udev/udev.inc b/openembedded/packages/udev/udev.inc
index 2387d07945..a2883aef50 100644
--- a/openembedded/packages/udev/udev.inc
+++ b/openembedded/packages/udev/udev.inc
@@ -8,6 +8,7 @@ SRC_URI += " \
8 file://links.conf \ 8 file://links.conf \
9 file://permissions.rules \ 9 file://permissions.rules \
10 file://mount.sh \ 10 file://mount.sh \
11 file://network.sh \
11 file://local.rules \ 12 file://local.rules \
12 file://init" 13 file://init"
13 14
@@ -19,7 +20,7 @@ FILES_udev-utils = "${usrbindir}/udevinfo ${usrbindir}/udevtest"
19inherit update-rc.d 20inherit update-rc.d
20 21
21INITSCRIPT_NAME = "udev" 22INITSCRIPT_NAME = "udev"
22INITSCRIPT_PARAMS = "start 04 S ." 23INITSCRIPT_PARAMS = "start 04 S . start 55 0 6 ."
23 24
24export CROSS = "${TARGET_PREFIX}" 25export CROSS = "${TARGET_PREFIX}"
25export HOSTCC = "${BUILD_CC}" 26export HOSTCC = "${BUILD_CC}"
@@ -56,4 +57,5 @@ do_install () {
56 install -d ${D}${sysconfdir}/udev/scripts/ 57 install -d ${D}${sysconfdir}/udev/scripts/
57 58
58 install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh 59 install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh
60 install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts
59} 61}