blob: 8e849a3cb222e16df8baaad9410554ecaf4e04d4 [file] [log] [blame] [view] [edit]
# Linux UAPI Bindings
This library provides raw bindings to the Linux UAPI generated by Rust's
`bindgen` tool.
Currently, we need to run the `bindgen` tool manually. To add more bindings,
include an additional header in `wrapper` and re-run `bindgen.sh` from the
root of your Fuchsia source tree.
For the `bindgen.sh` script to work, you will need to install `bindgen` and
add it to your path:
```sh
cargo install bindgen
```
Ideally we would be able to run `bindgen` as part of the build to remove this
manual step.