diff options
-rw-r--r-- | .gitattributes | 2 | ||||
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | bindings/rust/libflashrom-sys/.cargo/config.toml | 2 | ||||
-rw-r--r-- | bindings/rust/libflashrom-sys/Cargo.toml | 10 | ||||
-rw-r--r-- | bindings/rust/libflashrom-sys/build.rs | 32 | ||||
-rw-r--r-- | bindings/rust/libflashrom-sys/src/lib.rs | 5 |
6 files changed, 53 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 10f89626..a663df71 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,7 @@ .gitattributes export-ignore .gitignore export-ignore +/bindings export-ignore +/bindings/** export-ignore /util/getrevision.sh export-ignore /util/git-hooks export-ignore /util/git-hooks/** export-ignore @@ -16,3 +16,5 @@ /util/ich_descriptors_tool/ich_descriptors_tool.exe /util/ich_descriptors_tool/.dep /util/ich_descriptors_tool/.obj + +target/ diff --git a/bindings/rust/libflashrom-sys/.cargo/config.toml b/bindings/rust/libflashrom-sys/.cargo/config.toml new file mode 100644 index 00000000..8af59dd8 --- /dev/null +++ b/bindings/rust/libflashrom-sys/.cargo/config.toml @@ -0,0 +1,2 @@ +[env] +RUST_TEST_THREADS = "1" diff --git a/bindings/rust/libflashrom-sys/Cargo.toml b/bindings/rust/libflashrom-sys/Cargo.toml new file mode 100644 index 00000000..54e016d3 --- /dev/null +++ b/bindings/rust/libflashrom-sys/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "libflashrom-sys" +version = "0.1.0" +links = "flashrom" +build = "build.rs" +edition = "2021" + +[build-dependencies] +pkg-config = "0.3.19" +bindgen = "0.59.2" diff --git a/bindings/rust/libflashrom-sys/build.rs b/bindings/rust/libflashrom-sys/build.rs new file mode 100644 index 00000000..43e7cf6c --- /dev/null +++ b/bindings/rust/libflashrom-sys/build.rs @@ -0,0 +1,32 @@ +fn main() { + pkg_config::probe_library("flashrom").unwrap(); + let bindings = bindgen::Builder::default() + .header("../../../include/libflashrom.h") + // Tell cargo to invalidate the built crate whenever any of the + // included header files changed. + .parse_callbacks(Box::new(bindgen::CargoCallbacks)) + // only generate the flashrom functions and used types. + .allowlist_function("flashrom_.*") + // newtype enums provide type checking without the UB potential of rust enums. + .default_enum_style(bindgen::EnumVariation::NewType { is_bitfield: false }) + // We use constified enum for flashrom_log_level to allow '<' comparison. + .constified_enum("flashrom_log_level") + .prepend_enum_name(false) + .derive_copy(false) + .must_use_type("flashrom_wp_result") + // Avoid some va_list related functionality that is not easy to use in rust. + .blocklist_function("flashrom_set_log_callback") + .blocklist_type("flashrom_log_callback") + .blocklist_type("va_list") + .blocklist_type("__builtin_va_list") + .blocklist_type("__va_list_tag") + .size_t_is_usize(true) + .generate() + .expect("Unable to generate bindings"); + + // Write the bindings to the $OUT_DIR/bindings.rs file. + let out_path = std::path::PathBuf::from(std::env::var("OUT_DIR").unwrap()); + bindings + .write_to_file(out_path.join("bindings.rs")) + .expect("Couldn't write bindings!"); +} diff --git a/bindings/rust/libflashrom-sys/src/lib.rs b/bindings/rust/libflashrom-sys/src/lib.rs new file mode 100644 index 00000000..4dc82827 --- /dev/null +++ b/bindings/rust/libflashrom-sys/src/lib.rs @@ -0,0 +1,5 @@ +#![allow(non_upper_case_globals)] +#![allow(non_camel_case_types)] +#![allow(non_snake_case)] +#![allow(deref_nullptr)] +include!(concat!(env!("OUT_DIR"), "/bindings.rs")); |