package fat-filesystem

  1. Overview
  2. Docs
Pure OCaml implementation of the FAT filesystem

Install

Dune Dependency

Authors

Maintainers

Sources

v0.15.0.tar.gz
sha256=a77048fda53d25f463f729b37e9264b72db219fdc62ab0488c1539618bb40400
sha512=d68ed3a9394fbba8bf2cb7555206bcd2a912c5fb6f1a5a18f26b217f3fc2148c42f94b0163f682173ff5db19aa145dcfc003bfdb9ba74f5a757bd372fc45ddcb

README.md.html

Pure OCaml implementation of the FAT filesystem

This library has two purposes:

  1. primary: to allow the easy preparation of bootable disk images containing Mirage kernels

  2. secondary: to provide a simple key=value store for Mirage applications

Note that "filesystems" are inherently legacy systems which modern Mirage applications will not use directly. The most likely use for this library is in booting a Mirage application via some kind of disk image.

Known limitations

  • can only make FAT16 filesystems

  • no VFAT support

  • no exFAT support (see #78)

  • corrupts under concurrent writes

PRs welcome to address any of these limitations!