Build Linux initramfs cpio archives from OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+19 -1
+12 -1
README.md
··· 9 9 10 10 ## Installation 11 11 12 + Install with opam: 13 + 14 + ```sh 15 + $ opam install initramfs 12 16 ``` 13 - opam install initramfs 17 + 18 + If opam cannot find the package, it may not yet be released in the public 19 + `opam-repository`. Add the overlay repository, then install it: 20 + 21 + ```sh 22 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 23 + $ opam update 24 + $ opam install initramfs 14 25 ``` 15 26 16 27 ## Usage
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries initramfs))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 3 4 (name initramfs) 4 5 ··· 20 21 (depends 21 22 (ocaml (>= 5.1)) 22 23 (cpio (>= 0.1)) 24 + (mdx :with-test) 23 25 (alcotest :with-test)))
+1
initramfs.opam
··· 14 14 "dune" {>= "3.21"} 15 15 "ocaml" {>= "5.1"} 16 16 "cpio" {>= "0.1"} 17 + "mdx" {with-test} 17 18 "alcotest" {with-test} 18 19 "odoc" {with-doc} 19 20 ]