summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2019-01-22 16:09:49 -0800
committerchrome-bot <chrome-bot@chromium.org>2019-01-24 00:51:35 -0800
commit7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029 (patch)
tree23ad43b1c0558cc111c1b20400b10058c2a657d0 /README.md
parent230b0cdacf6c8fa48f0d20bc52a46f1d6a972d29 (diff)
downloadcrosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar.gz
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar.bz2
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar.lz
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar.xz
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.tar.zst
crosvm-7a08fa7cd5fd5dda0ed6ed76a4492f2c95a8f029.zip
readme: default mode is multiprocess
Update the readme to indicate that crosvm starts in multiprocess mode by
default.

Also fix a few typos I spotted while skimming the rest of the document.

BUG=None
TEST=None

Change-Id: Ia3992ec7cbf27be984269f5399d48e7fd5c6fc8f
Signed-off-by: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1428339
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Zach Reizner <zachr@chromium.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index d9e5414..bde48ea 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@ The following are crosvm's default arguments and how to override them.
 * no network (set with `--host_ip`, `--netmask`, and `--mac`)
 * virtio wayland support if `XDG_RUNTIME_DIR` enviroment variable is set (disable with `--no-wl`)
 * only the kernel arguments necessary to run with the supported devices (add more with `-p`)
-* run in single process mode (run in multiprocess mode with `-u`)
+* run in multiprocess mode (run in single process mode with `--disable-sandbox`)
 * no control socket (set with `-s`)
 
 ## System Requirements
@@ -107,7 +107,7 @@ requirements:
 
 * `virtio-wayland` - The `memfd_create` syscall, introduced in Linux 3.17, and a Wayland compositor.
 * `vsock` - Host Linux kernel with vhost-vsock support, introduced in Linux 4.8.
-* `multiprocess` - Host Linux kernel with seccomp-bpf and Linux namespaceing support.
+* `multiprocess` - Host Linux kernel with seccomp-bpf and Linux namespacing support.
 * `virtio-net` - Host Linux kernel with TUN/TAP support (check for `/dev/net/tun`) and running with `CAP_NET_ADMIN` privileges.
 
 ## Emulated Devices
@@ -150,7 +150,7 @@ dependencies also must be reviewed to ensure their suitability to the crosvm
 project. Currently allowed crates are:
 
 * `byteorder` - A very small library used for endian swaps.
-* `gcc` - Build time dependency needed to build C source code used in crosvm.
+* `cc` - Build time dependency needed to build C source code used in crosvm.
 * `libc` - Required to use the standard library, this crate is a simple wrapper around `libc`'s symbols.
 
 ### Code Overview
@@ -177,5 +177,5 @@ crates are:
 * `x86_64` - Support code specific to 64 bit intel machines.
 
 The `seccomp` folder contains minijail seccomp policy files for each sandboxed
-device. Because some syscalls vary by architecturs, the seccomp policies are
+device. Because some syscalls vary by architecture, the seccomp policies are
 split by architecture.