aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGuang Zhu <guangzhu@google.com>2021-09-24 12:28:50 -0700
committerGuang Zhu <guangzhu@google.com>2021-09-24 12:41:08 -0700
commit70f1408c0410e36a25adac7922edd13dcd9b758f (patch)
tree638f1d596d4483de6f325257380cba8303e6b4bb /README.md
parent6ec9478dcc21a4a43b180e1acd7739bd745bc743 (diff)
downloadcuttlefish-70f1408c0410e36a25adac7922edd13dcd9b758f.tar.gz
update package build doc to include arm specific steps
Bug: 199537750 Test: inspect rendered document Change-Id: Id5888511f7b1f167a4b8df0df7220853311b38c1
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 222089801..7ef8d6234 100644
--- a/README.md
+++ b/README.md
@@ -12,15 +12,25 @@
take cloud-vendor-specific steps to enable. For Google Compute Engine
specifically, see the [GCE guide].
- [GCE guide]: https://cloud.google.com/compute/docs/instances/enable-nested-virtualization-vm-instances
+ [GCE guide]: https://cloud.google.com/compute/docs/instances/enable-nested-virtualization-vm-instances
-2. Download, build, and install the host debian package:
+*** promo
+ ARM specific steps:
+ - When running on an ARM machine, the most direct way is to check
+ for the existence of `/dev/kvm`. Note that this method can also be used to
+ confirm support of KVM on any environment.
+ - Before proceeding to the next step, please first follow
+ [the guide](multiarch-howto.md) to adjust APT sources.
+***
+
+ 2. Download, build, and install the host debian package:
```bash
git clone https://github.com/google/android-cuttlefish
cd android-cuttlefish
debuild -i -us -uc -b
sudo dpkg -i ../cuttlefish-common_*_amd64.deb || sudo apt-get install -f
+ sudo usermod -aG kvm,cvdnetwork $USER
sudo reboot
```