forcemerge 756312 758396
thanks

Am 17.08.2014 08:54, schrieb [email protected]:
> 
> Anyway, this was due to my disabling the new 3.16 config option
> CONFIG_UEVENT_HELPER, as the kernel documentation said it was obsolete
> and I don't even have an /sbin/hotplug binary.
> 
> But!  Line 176 of /etc/init.d/udev contains the command:
> 
>     echo > /sys/kernel/uevent_helper
> 
> which is supposed to disable that helper.  But if the file doesn't exist,
> the fact that we're running with -e (errors are fatal) means that the
> script aborts and most of the udev startup doesn't happen.
> 
> I fixed it with
> --- udev.dpkg-dist      2014-08-17 04:28:56.570734578 +0000
> +++ udev        2014-08-17 04:23:00.298853946 +0000
> @@ -173,7 +173,7 @@
>         warn_if_interactive
>      fi
>  
> -    echo > /sys/kernel/uevent_helper
> +    ! > /sys/kernel/uevent_helper
>  
>      move_udev_database
>  
> ... but alternatives that don't depend on /sys/kernel being unwriteable
> by root are possible, like
> 
> +    test -f /sys/kernel/uevent_helper && > /sys/kernel/uevent_helper
> 

This is a duplicate  of
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756312


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to