libcros 0.6.5

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
pub fn set_vpd_value(partition, key, value) -> ();
pub fn get_vpd_value(partition, key) -> String;
pub fn del_vpd_key(partition, key) -> ();
pub fn erase_vpd_partition(partition) -> ();
pub fn get_vpd_keys(partition) -> Vec<String>;

partition will only ever be "RO_VPD" or "RW_VPD"
we need to use libflashrom.
*/

pub mod flashrom;