=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.548 retrieving revision 1.549 diff -c -r1.548 -r1.549 *** src/etc/rc 2021/03/09 07:12:15 1.548 --- src/etc/rc 2021/03/13 21:11:56 1.549 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.548 2021/03/09 07:12:15 deraadt Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the --- 1,4 ---- ! # $OpenBSD: rc,v 1.549 2021/03/13 21:11:56 deraadt Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the *************** *** 505,510 **** --- 505,514 ---- do_fsck -N mount -a -N + # Build kvm(3) and /dev databases. + kvm_mkdb + dev_mkdb + # /var/crash should be a directory or a symbolic link to the crash directory # if core dumps are to be saved. if [[ -d /var/crash ]]; then *************** *** 522,531 **** echo ' done.' quotaon -a fi - - # Build kvm(3) and /dev databases. - kvm_mkdb - dev_mkdb # Set proper permission for the tty device files. chmod 666 /dev/tty[pqrstuvwxyzPQRST]* --- 526,531 ----