tree: 016632de79f5e7417bf818032a471dfffad614b5 [path history] [tgz]
  1. meta/
  2. scripts/
  3. src/
  4. testdata/
  5. BUILD.gn
  6. OWNERS
  7. README.md
src/sys/lib/fuchsia-bootfs/README.md

Rust implementation of //src/lib/bootfs

This repository contains generated bindings for a portion of the Zircon bootfs library and bootfs.h headers to allow Rust programs to parse bootfs payloads.

Testing

To generate a test ZBI:

cd ${FUCHSIA_DIR}/garnet/public/rust/fuchsia-bootfs

# Generate an uncompressed test ZBI.
${FUCHSIA_OUT_DIR}/default.zircon/tools/zbi -u --output testdata/basic.bootfs.full testdata/input

# We don't want the ZBI item headers so remove them.
dd if=testdata/basic.bootfs.full of=testdata/basic.bootfs.uncompresssed bs=1 skip=64
rm testdata/basic.bootfs.full