fixup! Add iso9660 filesystem implementation.

This commit is contained in:
Jonas 'Sortie' Termansen 2023-05-16 00:34:29 +02:00
parent 936ddeaca3
commit e4cf1113f0
3 changed files with 6 additions and 1 deletions

View File

@ -119,6 +119,9 @@ ext2 extensions.
You can make a compatible filesystem with:
.Pp
.Dl $ mkfs.ext2 -O none,large_file,filetype
.Pp
You can mount ISO 9660 filesystems for e.g. CD-ROMs using
.Xr iso9660fs 8 .
.Ss Networking
Internet Protocol version 4
.Pq Xr ip 4

View File

@ -80,6 +80,7 @@ struct command commands[] =
{LOGOUT, "logout", NULL, suggest_logout},
{MOUNT, "extfs", "system", NULL},
{MOUNT, "iso9660fs", "system", NULL},
{MOUNT, "mount", NULL, NULL},
{PAGER, "less", NULL, NULL},

View File

@ -33,4 +33,5 @@ It is not safe to shut down the computer directly after using this option.
will exit 0 on success and non-zero otherwise.
.Sh SEE ALSO
.Xr unmount 2 ,
.Xr extfs 8
.Xr extfs 8 ,
.Xr iso9660fs 8