On Fri, Aug 26, 2022 at 03:09:34PM -0600, Todd C. Miller wrote: > On Fri, 26 Aug 2022 23:00:42 +0200, Alexander Bluhm wrote: > > > I have this line in my /etc/fstab > > > > /dev/sd0b /build mfs rw,noperm,nodev,nosuid,-s=2064348,noauto > > > > # mount /build > > mount_mfs: /dev/sd0b: Block device required > > > > According to ktrace this command fails. > > # /sbin/mount_mfs -o rw -o noperm -o nodev -o nosuid -s 2064348 -o noauto > > /de > > v/sd0b /build > > Perhaps mount_mfs should call opendev() with OPENDEV_BLCK since > that is the normal way to invoking it.
Either way, I'll back it out now as bluhm's case should work. > > - todd