Index: sbin/geom/class/nop/gnop.8 =================================================================== --- sbin/geom/class/nop/gnop.8 +++ sbin/geom/class/nop/gnop.8 @@ -167,6 +167,18 @@ newfs /dev/da0.nop gnop list .Ed +.Pp +Mount a filesystem residing on a hard disk image prepended +with 512K of raw header information. +.Xr gnop 8 +is used to skip over the header information, positioning +.Pa md1.nop +to the start of the filesystem in the image. +.Bd -literal -offset indent +mdconfig -u md1 diskimage.img +gnop create -o 512K md1 +mount /dev/md1.nop /mnt +.Ed .Sh SEE ALSO .Xr geom 4 , .Xr geom 8 Index: sbin/mdconfig/mdconfig.8 =================================================================== --- sbin/mdconfig/mdconfig.8 +++ sbin/mdconfig/mdconfig.8 @@ -287,17 +287,6 @@ mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt .Pp .Ed -Create a file-backed device from a hard disk image that begins -with 512K of raw header information. -.Xr gnop 8 -is used to skip over the header information, positioning -.Pa md1.nop -to the start of the filesystem in the image. -.Bd -literal -offset indent -mdconfig -f diskimage.img -u md1 -gnop create -o 512K md1 -mount /dev/md1.nop /mnt -.Ed .Sh SEE ALSO .Xr md 4 , .Xr ffs 7 ,