microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/SecurePartitions/MsSecurePartitionRust/README.md
12lines · modecode
| 1 | # QEMU Inter-Partition Secure Partition |
| 2 | |
| 3 | An implementation of Inter-Partition secure partition based on QEMU haf-ec-service. |
| 4 | |
| 5 | - `aarch64-rt` for the entry point and exception handling. |
| 6 | |
| 7 | ## Building |
| 8 | |
| 9 | ```bash |
| 10 | cargo build --target=aarch64-unknown-none |
| 11 | cargo objcopy --target=aarch64-unknown-none -- -O binary target/aarch64-unknown-none/debug/msft-sp.bin |
| 12 | ``` |
| 13 | |