diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-05-29 10:41:33 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-05-29 10:41:33 +0000 |
commit | f2ca25f95f0fc67526a4ef102f4f26a851eb9082 (patch) | |
tree | d54e93d4051bc2d97595d8de8fe6d0de10066136 /bootscripts/contrib/lsb-v3/init.d/udev | |
parent | e73b767168639a8235a7c647c39d713c12b19e2b (diff) |
Upgrade to Udev-156. Fixes #2671.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9294 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts/contrib/lsb-v3/init.d/udev')
-rw-r--r-- | bootscripts/contrib/lsb-v3/init.d/udev | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bootscripts/contrib/lsb-v3/init.d/udev b/bootscripts/contrib/lsb-v3/init.d/udev index 5e74561ca..c019ab879 100644 --- a/bootscripts/contrib/lsb-v3/init.d/udev +++ b/bootscripts/contrib/lsb-v3/init.d/udev @@ -56,8 +56,9 @@ case "${1}" in # the kernel call out to any binary in response to them echo > /proc/sys/kernel/hotplug - # Copy static device nodes to /dev - cp -a /lib/udev/devices/* /dev + # Copy the only static device node that Udev >= 155 doesn't + # handle to /dev + cp -a /lib/udev/devices/null /dev # Start the udev daemon to continually watch for, and act on, # uevents |