docs: Update AArch64 doc to use KVM feature

Updated the build instructions to adapt to new added KVM feature.

Signed-off-by: Michael Zhao <michael.zhao@arm.com>
This commit is contained in:
Michael Zhao 2020-07-16 14:40:08 +08:00 committed by Sebastien Boeuf
parent 2de4f73275
commit f1419d116d

View File

@ -27,7 +27,7 @@ For Virtio devices, you can choose MMIO or PCI as transport option.
### MMIO ### MMIO
```bash ```bash
cargo build --no-default-features --features "mmio" cargo build --no-default-features --features mmio,kvm
``` ```
### PCI ### PCI
@ -35,7 +35,7 @@ cargo build --no-default-features --features "mmio"
Using PCI devices requires GICv3-ITS for MSI messaging. GICv3-ITS is very common in modern servers, but your machine happen to be old ones with GICv2(M) (like Raspberry Pi 4) or GICv3 without ITS, MMIO can still work. Using PCI devices requires GICv3-ITS for MSI messaging. GICv3-ITS is very common in modern servers, but your machine happen to be old ones with GICv2(M) (like Raspberry Pi 4) or GICv3 without ITS, MMIO can still work.
```bash ```bash
cargo build --no-default-features --features "pci" cargo build --no-default-features --features pci,kvm
``` ```
## Image ## Image