diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-07-22 22:31:14 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-07-22 22:31:14 +0000 |
commit | 9b7cbc7e918765bdc467900aa95e4a4e35d5a03b (patch) | |
tree | 07ccda307401af825368509031233b924f726a5f /bootscripts | |
parent | 6dbff4106feb09e4fc0bde607830146d80b1920c (diff) |
Update to pkg-config-0.27
Remove popt
Fix udev-retry boot script for latest udev functioanlity
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9916 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/lfs/init.d/udev_retry | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootscripts/lfs/init.d/udev_retry b/bootscripts/lfs/init.d/udev_retry index 4f258ac19..3790d0657 100644 --- a/bootscripts/lfs/init.d/udev_retry +++ b/bootscripts/lfs/init.d/udev_retry @@ -34,7 +34,9 @@ case "${1}" in start) log_info_msg "Retrying failed uevents, if any..." - rundir=$(/sbin/udevadm info --run) + # As of udev-186, the --run option is no longer valid + #rundir=$(/sbin/udevadm info --run) + rundir=/run # From Debian: "copy the rules generated before / was mounted # read-write": |