diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2012-01-22 09:01:57 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2012-01-22 09:01:57 +0000 |
commit | f70b664df1faabe31c1e5b545ef679eff15ac868 (patch) | |
tree | 3b5dab61c95131e02aa6bb9dde902fc242feb5ec /bootscripts | |
parent | e9ba8aa85f6fe42e7fe1c8815431702c07fe9172 (diff) |
Upgrade to Udev-178 and add its dependency of Kmod-4. Fixes #2998 and #3001.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9711 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 5 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/udev | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index 8217e2712..c7113a1cd 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,8 @@ +2012-01-22 Matt Burgess <matthew@linuxfromscratch.org> + + * lfs/init.d/udev: Change udevd path following upstream changes to its + location + 2011-12-23 Matt Burgess <matthew@linuxfromscratch.org> * lfs/init.d/mountvirtfs: Correct permissions on /run/shm diff --git a/bootscripts/lfs/init.d/udev b/bootscripts/lfs/init.d/udev index 643ed80dc..49a1e4e9a 100644 --- a/bootscripts/lfs/init.d/udev +++ b/bootscripts/lfs/init.d/udev @@ -49,7 +49,7 @@ case "${1}" in # Start the udev daemon to continually watch for, and act on, # uevents - /sbin/udevd --daemon + /lib/udev/udevd --daemon # Now traverse /sys in order to "coldplug" devices that have # already been discovered |