aboutsummaryrefslogtreecommitdiffstats
path: root/bootscripts
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2010-05-29 10:41:33 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2010-05-29 10:41:33 +0000
commitf2ca25f95f0fc67526a4ef102f4f26a851eb9082 (patch)
treed54e93d4051bc2d97595d8de8fe6d0de10066136 /bootscripts
parente73b767168639a8235a7c647c39d713c12b19e2b (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')
-rw-r--r--bootscripts/ChangeLog5
-rw-r--r--bootscripts/contrib/lsb-v3/ChangeLog6
-rw-r--r--bootscripts/contrib/lsb-v3/init.d/udev5
-rw-r--r--bootscripts/lfs/init.d/udev5
4 files changed, 17 insertions, 4 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog
index aaff70c15..bf7aec7a5 100644
--- a/bootscripts/ChangeLog
+++ b/bootscripts/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-29 Matt Burgess <matthew@linuxfromscratch.org>
+ * lfs/init.d/udev: Only copy /lib/udev/devices/null, as Udev >= 155 copies
+ devices from /lib/udev/devices to /dev itself. Udevd still needs /dev/null
+ present before starting up though.
+
2010-04-20 Bryan Kadzban <bryan@linuxfromscratch.org>
* lfs/init.d/udev, lfs/init.d/udev_retry: Add --action=add, to handle udev
version 152 and newer, which send "change" events by default in udevtrigger
diff --git a/bootscripts/contrib/lsb-v3/ChangeLog b/bootscripts/contrib/lsb-v3/ChangeLog
index f599bc2d8..f5620de28 100644
--- a/bootscripts/contrib/lsb-v3/ChangeLog
+++ b/bootscripts/contrib/lsb-v3/ChangeLog
@@ -1,4 +1,10 @@
ChangeLog
+
+20100529 - [matthew]
+ * Only copy /lib/udev/devices/null, as Udev >= 155 copies
+ devices from /lib/udev/devices to /dev itself.
+ Udevd still needs /dev/null present before starting up though.
+
20100529 - [dj] * Sync to LFS-Bootscirpts-20100529
* Add test if /dev is already mounted in udev script.
* Added --action=add to udevadmin trigger lines of udev script.
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
diff --git a/bootscripts/lfs/init.d/udev b/bootscripts/lfs/init.d/udev
index ff4fe2a7a..570d0e699 100644
--- a/bootscripts/lfs/init.d/udev
+++ b/bootscripts/lfs/init.d/udev
@@ -53,8 +53,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