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

Description

This library has two purposes:

  1. to allow the easy preparation of bootable disk images containing mirage kernels
  2. to provide a simple key=value layer for MirageOS applications

Tags

org:mirage org:xapi-project

Published: 26 Nov 2020

README

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!

Dependencies (14)

  1. astring
  2. cmdliner
  3. re >= "1.7.2"
  4. io-page >= "2.0.0"
  5. io-page-unix >= "2.0.0"
  6. mirage-kv < "5.0.0"
  7. mirage-block-unix >= "2.5.0" & < "2.13.0"
  8. mirage-block >= "2.0.0"
  9. lwt >= "2.4.3"
  10. rresult
  11. ppx_cstruct
  12. cstruct >= "3.0.0"
  13. dune >= "1.0"
  14. ocaml >= "4.06.0"

Dev Dependencies (2)

  1. alcotest with-test
  2. mirage-block-combinators with-test

Used by (2)

  1. mirage-www >= "1.1.0"
  2. xe-unikernel-upload

Conflicts

None