UDEV 104 ist out Reproducible: Always
Known issue. Is there something specific in 104 that you need?
Added to CVS.
Is the udev-start script rewritten wo work without the "udev -V" call? I mean this part of /lib/rcscripts/addons/udev-start.sh: udev_version() { local version=0 if [[ -x /sbin/udev ]] ; then version=$(/sbin/udev -V) # We need it without a leading '0', else bash do the wrong thing version=${version##0} # Older udev's will print nothing [[ -z ${version} ]] && version=0 fi echo "${version}" } I don't wanna run into a reboot not able to start udev properly... Cheers Poly-C
Created attachment 107485 [details, diff] udev-start.sh.diff possible solution? How about this small fix for the startscript? At least the current stable udev for x86 also works with this... Cheers Poly-C
Alright, maybe not a good solution as long as udevinfo resides in /usr/bin and not /bin. But the basic correction attempt of this patch should be out of question, isn't it?
Missing /sbin/udev seems be problematic for udev-start.sh
fixed that in udev-104-r1, by writing version-number into udev-start.sh when emerging.