diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/hurd.texi | 4 | ||||
-rw-r--r-- | isofs/ChangeLog | 5 | ||||
-rw-r--r-- | isofs/Makefile | 2 | ||||
-rw-r--r-- | isofs/main.c | 2 |
6 files changed, 17 insertions, 7 deletions
@@ -32,9 +32,9 @@ IP tunnel interface respectively. It also supports all common network ioctls now. The Hurd can now access CD-ROMs containing an ISO9660 file format with -the new isofs translator. Rock Ridge extensions are supported, as well -as some GNU extensions to store GNU specific file system attributes in -such filesystems. +the new iso9660fs translator. Rock Ridge extensions are supported, as +well as some GNU extensions to store GNU specific file system +attributes in such filesystems. Two new translators, hello and hello-mt, illustrate how to implement simple trivfs based filesystems in the Hurd. diff --git a/doc/ChangeLog b/doc/ChangeLog index 4b9924ad..8b0b0142 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2002-09-29 Marcus Brinkmann <marcus@gnu.org> + + * hurd.texi (Translators): Change isofs to iso9660fs + (ISO-9660 CD-ROM FS): Likewise. + 2002-04-20 Marcus Brinkmann <marcus@gnu.org> * hurd.texi: Fix section nesting in last change. diff --git a/doc/hurd.texi b/doc/hurd.texi index 818a2e34..599325c9 100644 --- a/doc/hurd.texi +++ b/doc/hurd.texi @@ -2067,7 +2067,7 @@ existing translators: @itemize @bullet @item Disk-based filesystem formats, such as @code{ext2fs}, @code{ufs}, and -@code{isofs} (@pxref{Stored Filesystems}). +@code{iso9660fs} (@pxref{Stored Filesystems}). @item Network filesystems, such as @code{nfs} and @code{ftpfs} @@ -3725,7 +3725,7 @@ FIXME: finish @node ISO-9660 CD-ROM FS @section ISO-9660 CD-ROM FS -@pindex isofs +@pindex iso9660fs FIXME: finish diff --git a/isofs/ChangeLog b/isofs/ChangeLog index 2d76e1ae..0a3abe2d 100644 --- a/isofs/ChangeLog +++ b/isofs/ChangeLog @@ -1,3 +1,8 @@ +2002-09-29 Marcus Brinkmann <marcus@gnu.org> + + * Makefile (target): Change to iso9660fs. + * main.c (diskfs_server_name): Change to iso9660fs. + 2002-08-06 Marcus Brinkmann <marcus@gnu.org> * inode.c (use_file_start_id): Use file_start for directories, so diff --git a/isofs/Makefile b/isofs/Makefile index 05c1a61f..3eecdc0e 100644 --- a/isofs/Makefile +++ b/isofs/Makefile @@ -18,7 +18,7 @@ dir := isofs makemode := server -target = isofs +target = iso9660fs SRCS = inode.c main.c lookup.c pager.c rr.c LCLHDRS = iso9660.h isofs.h rr.h DIST_FILES = EXTENSIONS diff --git a/isofs/main.c b/isofs/main.c index e9b9f022..05b50d7e 100644 --- a/isofs/main.c +++ b/isofs/main.c @@ -30,7 +30,7 @@ struct store *store = 0; struct store_parsed *store_parsed = 0; char *diskfs_disk_name = 0; -char *diskfs_server_name = "isofs"; +char *diskfs_server_name = "iso9660fs"; char *diskfs_server_version = HURD_VERSION; char *diskfs_extra_version = "GNU Hurd"; int diskfs_synchronous = 0; |