From 0303f6017de0315e3c49f181f7691f8bbd62271f Mon Sep 17 00:00:00 2001 From: Elliot Killick Date: Wed, 1 Jan 2020 19:16:27 +0000 Subject: [PATCH] Fix typos Format `new` does not exist. Probably meant `newc` as also used later. Missed a `$` for variable. --- developer/debugging/windows-debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer/debugging/windows-debugging.md b/developer/debugging/windows-debugging.md index 1c964523..d1b2dd18 100644 --- a/developer/debugging/windows-debugging.md +++ b/developer/debugging/windows-debugging.md @@ -225,7 +225,7 @@ $ mkdir stubroot $ cp /usr/lib/xen/boot/stubdom-linux-rootfs stubroot/stubdom-linux-rootfs.gz $ cd stubroot $ gunzip stubdom-linux-rootfs.gz -$ cpio -i -d -H new --no-absolute-filenames < stubdom-linux-rootfs +$ cpio -i -d -H newc --no-absolute-filenames < stubdom-linux-rootfs $ rm stubdom-linux-rootfs ``` 2. Edit Init script to remove last loop and to add "-serial /dev/hvc0" to the qemu command line. @@ -249,7 +249,7 @@ id2=$(xl domid "$debugname2-dm") tty1=$(xenstore-read /local/domain/${id1}/console/tty) tty2=$(xenstore-read /local/domain/${id1}/console/tty) -socat tty1,raw $tty2,raw +socat $tty1,raw $tty2,raw ``` Happy debugging!