├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── amd.rs └── intel.rs └── src ├── amd ├── directory │ ├── bios.rs │ ├── mod.rs │ └── psp.rs ├── flash.rs └── mod.rs ├── intel ├── file.rs ├── flash.rs ├── mod.rs ├── section.rs └── volume.rs ├── lib.rs └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | /target/ 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/README.md -------------------------------------------------------------------------------- /examples/amd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/examples/amd.rs -------------------------------------------------------------------------------- /examples/intel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/examples/intel.rs -------------------------------------------------------------------------------- /src/amd/directory/bios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/amd/directory/bios.rs -------------------------------------------------------------------------------- /src/amd/directory/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/amd/directory/mod.rs -------------------------------------------------------------------------------- /src/amd/directory/psp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/amd/directory/psp.rs -------------------------------------------------------------------------------- /src/amd/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/amd/flash.rs -------------------------------------------------------------------------------- /src/amd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/amd/mod.rs -------------------------------------------------------------------------------- /src/intel/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/intel/file.rs -------------------------------------------------------------------------------- /src/intel/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/intel/flash.rs -------------------------------------------------------------------------------- /src/intel/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/intel/mod.rs -------------------------------------------------------------------------------- /src/intel/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/intel/section.rs -------------------------------------------------------------------------------- /src/intel/volume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/intel/volume.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/system76/romulan/HEAD/src/main.rs --------------------------------------------------------------------------------