fw_env
is a simple pure Rust implementation of fw_printenv
from the U-Boot bootloader tools.
Basic usage:
rust
let config = Config::init()?;
let env = FwEnv::read(&config)?;
let uboot_version = env.find_var(b"ver"[..]).expect("variable not found");
/etc/fw_env.config
) parsing