From 0e386581e01693f0ff13817598f75d31f1405239 Mon Sep 17 00:00:00 2001 From: zbleness <77726616+zbleness@users.noreply.github.com> Date: Fri, 21 Oct 2022 18:45:40 +0200 Subject: [PATCH] README.md: Add missing backslash to example code Signed-off-by: zbleness <77726616+zbleness@users.noreply.github.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b00f320a0..e42ecef4d 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ $ sudo setcap cap_net_admin+ep ./cloud-hypervisor $ ./create-cloud-init.sh $ ./cloud-hypervisor \ --kernel ./hypervisor-fw \ - --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img + --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img \ --cpus boot=4 \ --memory size=1024M \ --net "tap=,mac=,ip=,mask=" @@ -161,7 +161,7 @@ GRUB) is required then it necessary to switch to the serial console instead of ```shell $ ./cloud-hypervisor \ --kernel ./hypervisor-fw \ - --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img + --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img \ --cpus boot=4 \ --memory size=1024M \ --net "tap=,mac=,ip=,mask=" \ @@ -211,7 +211,7 @@ $ sudo setcap cap_net_admin+ep ./cloud-hypervisor $ ./create-cloud-init.sh $ ./cloud-hypervisor \ --kernel ./linux-cloud-hypervisor/arch/x86/boot/compressed/vmlinux.bin \ - --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img\ + --disk path=focal-server-cloudimg-amd64.raw path=/tmp/ubuntu-cloudinit.img \ --cmdline "console=hvc0 root=/dev/vda1 rw" \ --cpus boot=4 \ --memory size=1024M \