Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Mar 2017 02:57:08 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r315775 - in head: sbin/mount sbin/mount_cd9660 share/man/man5
Message-ID:  <201703230257.v2N2v8Id059826@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Thu Mar 23 02:57:08 2017
New Revision: 315775
URL: https://svnweb.freebsd.org/changeset/base/315775

Log:
  Add a post-humous manpage for cd9660(5), the ISO-9660 file system
  
  Describe (briefly) how to compile the filesystem into the kernel and
  load as a module.
  
  Reference cd9660(5) in mount(8) and mount_cd9660(8).
  
  MFC after:	1 month
  Sponsored by:	Dell EMC Isilon

Added:
  head/share/man/man5/cd9660.5
     - copied, changed from r315759, head/share/man/man5/ext2fs.5
Modified:
  head/sbin/mount/mount.8
  head/sbin/mount_cd9660/mount_cd9660.8
  head/share/man/man5/Makefile

Modified: head/sbin/mount/mount.8
==============================================================================
--- head/sbin/mount/mount.8	Thu Mar 23 02:50:35 2017	(r315774)
+++ head/sbin/mount/mount.8	Thu Mar 23 02:57:08 2017	(r315775)
@@ -28,7 +28,7 @@
 .\"     @(#)mount.8	8.8 (Berkeley) 6/16/94
 .\" $FreeBSD$
 .\"
-.Dd October 13, 2015
+.Dd March 22, 2017
 .Dt MOUNT 8
 .Os
 .Sh NAME
@@ -543,6 +543,7 @@ support for a particular file system mig
 .Xr nmount 2 ,
 .Xr acl 3 ,
 .Xr mac 4 ,
+.Xr cd9660 5 ,
 .Xr devfs 5 ,
 .Xr ext2fs 5 ,
 .Xr fstab 5 ,

Modified: head/sbin/mount_cd9660/mount_cd9660.8
==============================================================================
--- head/sbin/mount_cd9660/mount_cd9660.8	Thu Mar 23 02:50:35 2017	(r315774)
+++ head/sbin/mount_cd9660/mount_cd9660.8	Thu Mar 23 02:57:08 2017	(r315775)
@@ -32,7 +32,7 @@
 .\"     @(#)mount_cd9660.8	8.3 (Berkeley) 3/27/94
 .\" $FreeBSD$
 .\"
-.Dd March 5, 2013
+.Dd March 22, 2017
 .Dt MOUNT_CD9660 8
 .Os
 .Sh NAME
@@ -138,6 +138,7 @@ The following command can be used to mou
 .Xr cdcontrol 1 ,
 .Xr mount 2 ,
 .Xr unmount 2 ,
+.Xr cd9660 5 ,
 .Xr fstab 5 ,
 .Xr mount 8
 .Sh HISTORY

Modified: head/share/man/man5/Makefile
==============================================================================
--- head/share/man/man5/Makefile	Thu Mar 23 02:50:35 2017	(r315774)
+++ head/share/man/man5/Makefile	Thu Mar 23 02:57:08 2017	(r315775)
@@ -10,6 +10,7 @@ MAN=	acct.5 \
 	ar.5 \
 	a.out.5 \
 	${_boot.config.5} \
+	cd9660.5 \
 	core.5 \
 	devfs.5 \
 	devfs.conf.5 \

Copied and modified: head/share/man/man5/cd9660.5 (from r315759, head/share/man/man5/ext2fs.5)
==============================================================================
--- head/share/man/man5/ext2fs.5	Wed Mar 22 23:47:15 2017	(r315759, copy source)
+++ head/share/man/man5/cd9660.5	Thu Mar 23 02:57:08 2017	(r315775)
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2006 Craig Rodrigues
+.\" Copyright (c) 2017 Ngie Cooper
 .\" All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without
@@ -26,64 +26,57 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd January 23, 2016
-.Dt EXT2FS 5
+.Dd March 22, 2017
+.Dt CD9660 5
 .Os
 .Sh NAME
-.Nm ext2fs
-.Nd "ext2/ext3/ext4 file system"
+.Nm cd9660
+.Nd "ISO-9660 file system"
 .Sh SYNOPSIS
 To link into the kernel:
 .Bd -ragged -offset indent
-.Cd "options EXT2FS"
+.Cd "options CD9660"
 .Ed
 .Pp
-To load as a kernel loadable module:
-.Pp
-.Dl "kldload ext2fs"
+Alternatively, to load the driver as a
+module at boot time, place the following line in
+.Xr loader.conf 5 :
+.Bd -literal -offset indent
+cd9660_load="YES"
 .Sh DESCRIPTION
 The
 .Nm
 driver will permit the
 .Fx
-kernel to access
-.Tn ext2 ,
-.Tn ext3 ,
-and
-.Tn ext4
-file systems.
-The
-.Tn ext4
-support is read-only.
+kernel to access the
+.Tn cd9660
+file system.
 .Sh EXAMPLES
 To mount a
 .Nm
 volume located on
-.Pa /dev/ada1s1 :
+.Pa /dev/cd0 :
 .Pp
-.Dl "mount -t ext2fs /dev/ada1s1 /mnt"
+.Dl "mount -t cd9660 /dev/cd0 /mnt"
 .Sh SEE ALSO
 .Xr nmount 2 ,
 .Xr unmount 2 ,
 .Xr fstab 5 ,
-.Xr mount 8
+.Xr mount 8 ,
+.Xr mount_cd9660 8
 .Sh HISTORY
 The
 .Nm
 driver first appeared in
-.Fx 2.2 .
+.Fx 4.4 Lite
 .Sh AUTHORS
 .An -nosplit
 The
 .Nm
-kernel implementation was written by
-.An Godmar Back
-or modified by him using the CSRG sources.
-.Pp
-.An John Dyson
-and others in the
-.Fx
-Project made modifications.
+kernel implementation was originally written by
+.An Pace Willisson Aq Mt pace@blitz.com
+and
+.An Atsushi Murai Aq Mt amurai@spec.co.jp .
 .Pp
 This manual page was written by
-.An Craig Rodrigues Aq Mt rodrigc@FreeBSD.org .
+.An Ngie Cooper Aq Mt ngie@FreeBSD.org .



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703230257.v2N2v8Id059826>