From f1419d116dee87bded0993ec28b4bc28faaad3bf Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Thu, 16 Jul 2020 14:40:08 +0800 Subject: [PATCH] docs: Update AArch64 doc to use KVM feature Updated the build instructions to adapt to new added KVM feature. Signed-off-by: Michael Zhao --- docs/arm64.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/arm64.md b/docs/arm64.md index 0d9e1d9a5..a3f19d519 100644 --- a/docs/arm64.md +++ b/docs/arm64.md @@ -27,7 +27,7 @@ For Virtio devices, you can choose MMIO or PCI as transport option. ### MMIO ```bash -cargo build --no-default-features --features "mmio" +cargo build --no-default-features --features mmio,kvm ``` ### 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. ```bash -cargo build --no-default-features --features "pci" +cargo build --no-default-features --features pci,kvm ``` ## Image