diff options
-rw-r--r-- | sbin/mount/mount.8 | 5 | ||||
-rw-r--r-- | share/man/man5/fstab.5 | 6 | ||||
-rw-r--r-- | share/man/man8/compat_linux.8 | 11 | ||||
-rw-r--r-- | sys/conf/files | 10 | ||||
-rw-r--r-- | usr.bin/man/man.1 | 5 | ||||
-rw-r--r-- | usr.sbin/procmap/procmap.1 | 5 |
6 files changed, 12 insertions, 30 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index b9a2c94a084..3a2e9e63fce 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mount.8,v 1.76 2014/07/15 11:25:22 jmc Exp $ +.\" $OpenBSD: mount.8,v 1.77 2014/09/08 04:40:30 doug Exp $ .\" $NetBSD: mount.8,v 1.11 1995/07/12 06:23:21 cgd Exp $ .\" .\" Copyright (c) 1980, 1989, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)mount.8 8.7 (Berkeley) 3/27/94 .\" -.Dd $Mdocdate: July 15 2014 $ +.Dd $Mdocdate: September 8 2014 $ .Dt MOUNT 8 .Os .Sh NAME @@ -392,7 +392,6 @@ with option .Xr mount_msdos 8 , .Xr mount_nfs 8 , .Xr mount_ntfs 8 , -.Xr mount_procfs 8 , .Xr mount_tmpfs 8 , .Xr mount_udf 8 , .Xr mount_vnd 8 , diff --git a/share/man/man5/fstab.5 b/share/man/man5/fstab.5 index 36ec7ba2b73..a103777631e 100644 --- a/share/man/man5/fstab.5 +++ b/share/man/man5/fstab.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fstab.5,v 1.51 2014/07/13 17:39:57 jmc Exp $ +.\" $OpenBSD: fstab.5,v 1.52 2014/09/08 04:40:30 doug Exp $ .\" $NetBSD: fstab.5,v 1.5.2.1 1995/11/16 20:11:11 pk Exp $ .\" .\" Copyright (c) 1980, 1989, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)fstab.5 8.1 (Berkeley) 6/5/93 .\" -.Dd $Mdocdate: July 13 2014 $ +.Dd $Mdocdate: September 8 2014 $ .Dt FSTAB 5 .Os .Sh NAME @@ -119,8 +119,6 @@ FAT filesystem. A Sun Microsystems compatible Network File System. .It ntfs An NTFS filesystem. -.It procfs -A local filesystem containing process information. .It swap A disk partition to be used for swapping. .It tmpfs diff --git a/share/man/man8/compat_linux.8 b/share/man/man8/compat_linux.8 index fead2cee268..a308c495f75 100644 --- a/share/man/man8/compat_linux.8 +++ b/share/man/man8/compat_linux.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: compat_linux.8,v 1.47 2014/02/17 21:06:31 juanfra Exp $ +.\" $OpenBSD: compat_linux.8,v 1.48 2014/09/08 04:40:30 doug Exp $ .\" $NetBSD: compat_linux.8,v 1.2 1995/10/16 20:17:59 fvdl Exp $ .\" .\" Copyright (c) 1995 Frank van der Linden @@ -30,7 +30,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 17 2014 $ +.Dd $Mdocdate: September 8 2014 $ .Dt COMPAT_LINUX 8 .Os .Sh NAME @@ -110,13 +110,6 @@ Only the DSP device is emulated, the following link should be created: CD-ROM support requires a link to the CD-ROM device, similar to: .Pp .D1 /emul/linux/dev/cdrom -> /dev/cd0a (first CD-ROM) -.Ss File systems -Many Linux binaries expect -.Pa /proc -to have procfs mounted on it. -Some binaries will require it to be mounted using the -.Fl o Ar linux -option. .Sh BUGS .Nm is incomplete and currently only supported on the i386. diff --git a/sys/conf/files b/sys/conf/files index 4c19a1d36ff..4220371887a 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1,4 +1,4 @@ -# $OpenBSD: files,v 1.576 2014/08/20 06:23:03 mikeb Exp $ +# $OpenBSD: files,v 1.577 2014/09/08 04:40:30 doug Exp $ # $NetBSD: files,v 1.87 1996/05/19 17:17:50 jonathan Exp $ # @(#)files.newconf 7.5 (Berkeley) 5/10/93 @@ -715,7 +715,7 @@ file kern/subr_userconf.c boot_config file kern/subr_xxx.c file kern/sys_generic.c file kern/sys_pipe.c -file kern/sys_process.c ptrace | procfs | systrace +file kern/sys_process.c ptrace | systrace file kern/sys_socket.c file kern/syscalls.c syscall_debug file kern/sysv_ipc.c sysvshm | sysvsem | sysvmsg @@ -755,12 +755,6 @@ file kern/vfs_getcwd.c file kern/spec_vnops.c file miscfs/deadfs/dead_vnops.c file miscfs/fifofs/fifo_vnops.c fifo -file miscfs/procfs/procfs_cmdline.c procfs -file miscfs/procfs/procfs_linux.c procfs -file miscfs/procfs/procfs_status.c procfs -file miscfs/procfs/procfs_subr.c procfs -file miscfs/procfs/procfs_vfsops.c procfs -file miscfs/procfs/procfs_vnops.c procfs file msdosfs/msdosfs_conv.c msdosfs file msdosfs/msdosfs_denode.c msdosfs file msdosfs/msdosfs_fat.c msdosfs diff --git a/usr.bin/man/man.1 b/usr.bin/man/man.1 index 57af0dd4173..f691bede8f7 100644 --- a/usr.bin/man/man.1 +++ b/usr.bin/man/man.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: man.1,v 1.55 2014/04/03 06:15:18 jmc Exp $ +.\" $OpenBSD: man.1,v 1.56 2014/09/08 04:40:30 doug Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" @(#)man.1 8.2 (Berkeley) 1/2/94 .\" -.Dd $Mdocdate: April 3 2014 $ +.Dd $Mdocdate: September 8 2014 $ .Dt MAN 1 .Os .Sh NAME @@ -130,7 +130,6 @@ mount_ffs (8) \(en mount a Berkeley Fast File System mount_msdos (8) \(en mount an MS-DOS file system mount_nfs (8) \(en mount NFS file systems mount_ntfs (8) \(en mount an NTFS file system -mount_procfs (8) \(en mount the process file system mount_udf (8) \(en mount a UDF filesystem mount_vnd, vnconfig (8) \(en configure vnode disks mountd (8) \(en service remote NFS mount requests diff --git a/usr.sbin/procmap/procmap.1 b/usr.sbin/procmap/procmap.1 index b0c7b9951dd..932ad7607d7 100644 --- a/usr.sbin/procmap/procmap.1 +++ b/usr.sbin/procmap/procmap.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: procmap.1,v 1.17 2014/02/13 21:17:13 tedu Exp $ +.\" $OpenBSD: procmap.1,v 1.18 2014/09/08 04:40:30 doug Exp $ .\" $NetBSD: pmap.1,v 1.6 2003/01/19 21:25:43 atatat Exp $ .\" .\" Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -28,7 +28,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 13 2014 $ +.Dd $Mdocdate: September 8 2014 $ .Dt PROCMAP 1 .Os .Sh NAME @@ -342,7 +342,6 @@ as previously described. .Xr mmap 2 , .Xr kvm 3 , .Xr ddb 4 , -.Xr mount_procfs 8 , .Xr namei 9 , .Xr vnode 9 .Sh HISTORY |