From d6d9b76c7ef67fef7c57094c3c16f6b4ddbec3ad Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Wed, 10 Jul 2019 07:55:11 +0200 Subject: [PATCH] README: Fix the memory parameter examples We need to give it a unit. Signed-off-by: Samuel Ortiz --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da15762fd..93daa7093 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ $ ./cloud-hypervisor/target/release/cloud-hypervisor \ --kernel ./hypervisor-fw \ --disk ./clear-29160-kvm.img \ --cpus 4 \ - --memory 512 \ + --memory 1024M \ --net "tap=,mac=,ip=,mask=" \ --rng $ popd @@ -170,7 +170,7 @@ $ ./cloud-hypervisor/target/release/cloud-hypervisor \ --disk ./clear-29160-kvm.img \ --cmdline "console=ttyS0 reboot=k panic=1 nomodules i8042.noaux i8042.nomux i8042.nopnp i8042.dumbkbd root=/dev/vda3" \ --cpus 4 \ - --memory 512 \ + --memory 1024M \ --net "tap=,mac=,ip=,mask=" \ --rng ```