link to from hurd/libdiskfs.mdwn page. --- hurd/libdiskfs.mdwn | 8 +++++++- hurd/translator/iso9660fs.mdwn | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 hurd/translator/iso9660fs.mdwn
diff --git a/hurd/libdiskfs.mdwn b/hurd/libdiskfs.mdwn index dd499785..c16c7589 100644 --- a/hurd/libdiskfs.mdwn +++ b/hurd/libdiskfs.mdwn @@ -1,4 +1,4 @@ -[[!meta copyright="Copyright © 2011 Free Software Foundation, Inc."]] +[[!meta copyright="Copyright © 2011, 2026 Free Software Foundation, Inc."]] [[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable id="license" text="Permission is granted to copy, distribute and/or modify this @@ -8,6 +8,12 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled [[GNU Free Documentation License|/fdl]]."]]"""]] +Libdiskfs is the foundational library for building filesystems on the +Hurd. The Hurd's current filesystems [[hurd/translator/ext2fs]], +[[hurd/translator/fatfs]], and [[hurd/translator/iso9660fs]] all use +it. Some Hurd developers wish to +[[merge|open_issues/libnetfs_vs_libdiskfs]] [[hurd/libnetfs]] with +libdiskfs into one unified library. # Paging diff --git a/hurd/translator/iso9660fs.mdwn b/hurd/translator/iso9660fs.mdwn new file mode 100644 index 00000000..1426520f --- /dev/null +++ b/hurd/translator/iso9660fs.mdwn @@ -0,0 +1,14 @@ +[[!meta copyright="Copyright © 2026 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +ISO 9660 is a filesystem that was designed to run on optical disks +like CDs or DVDs (but it can run on USB drives as well). Many people +will burn an iso image to disk and then install the Hurd via that CD +or DVD. `iso9660fs` is how the Hurd reads those images. -- 2.51.0
