libubootenv-sys 0.1.1

FFI bindings to libubootenv
docs.rs failed to build libubootenv-sys-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: libubootenv-sys-0.1.0

libubootenv-sys

Low-level Rust FFI bindings to the U-Boot environment library (libubootenv).

This crate exposes the raw C API for reading, writing, deleting, and iterating U-Boot environment variables. It is intended for Rust developers who need direct FFI access.


License

GPL-2.0-or-later. See the LICENSE file.


Features

  • libuboot_initialize – initialize environment context.
  • libuboot_get_env – read variable.
  • libuboot_set_env – set variable.
  • libuboot_del_env – delete variable.
  • libuboot_save – persist changes.
  • libuboot_get_next – iterate environment variables.
  • libuboot_exit – free context.

Installation

Add to your Cargo.toml:

[dependencies]
libubootenv-sys = "0.1"