Solo5_elftoolAn entry in the manifest representing a device.
type mft = {version : int;version is at the moment always 1.
entries : mft_entry list;entries in the manifest.
}The Solo5 manifest
abi taget and abi version
val pp_mft_entry : Stdlib.Format.formatter -> mft_entry -> unitval pp_mft : Stdlib.Format.formatter -> mft -> unitPretty-prints the manifest as JSON in a similar style as the Solo5 command * line tool
solo5-elftool query-manifest.
val pp_abi_target : Stdlib.Format.formatter -> abi_target -> unitval pp_abi : Stdlib.Format.formatter -> abi -> unitPretty-prints the manifest as JSON in a similar style as the Solo5 command * line tool
solo5-elftool query-abi.
val query_manifest : 'fd Cachet.t -> (mft, [> `Msg of string ]) Stdlib.resultquery_manifest cachet is the solo5 manifest of cachet, or an error message.
val query_abi : 'fd Cachet.t -> (abi, [> `Msg of string ]) Stdlib.resultquery_abi cachet is the solo5 abi of cachet, or an error message.