The /etc/rc.d/devd takes VERY long at the boot (waiting for something?). This was not the case in 11.2-RELEASE.
For the record, same with RC3.
This was my fault. Its not a bug. Its because now my 'automount' - https://github.com/vermaden/automount - does check ugen(4) devices for MTP services and that took too long at boot. I disabled it at boot (first 45 seconds) and now devd(8) starts fast. Used code for the record: | BOOTTIME=$( sysctl -n kern.boottime | awk '{print $4}' | tr -d ',' ) | CURRTIME=$( date +%s ) | DIFFTIME=$(( ${CURRTIME} - ${BOOTTIME} )) | if [ ${DIFFTIME} -lt 45 ] | then | exit 0 | fi Regards and sorry for 'fake' bug.