From 7509bf360eba1461ac6059e4cacfbc29c9d2d4c7 Mon Sep 17 00:00:00 2001 From: Alessio Balsini Date: Wed, 26 Jun 2019 15:04:20 +0100 Subject: docs/linux/qemu-arm64: fix copy/paste with non-ASCII character MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sneaky '“' character causes errors when copy-pasting snapshots of the documentation. Solved with s/“/"/g. Signed-off-by: Alessio Balsini --- docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/linux') diff --git a/docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md b/docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md index 0199e8d97..1c2e2dd8f 100644 --- a/docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md +++ b/docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md @@ -52,7 +52,7 @@ Change the following options : CONFIG_KCOV=y CONFIG_KASAN=y CONFIG_DEBUG_INFO=y - CONFIG_CMDLINE=”console=ttyAMA0” + CONFIG_CMDLINE="console=ttyAMA0" CONFIG_KCOV_INSTRUMENT_ALL=y CONFIG_DEBUG_FS=y CONFIG_NET_9P=y @@ -131,8 +131,8 @@ A sample config file that exercises the required options are shown below. Modify "name": "QEMU-aarch64", "target": "linux/arm64", "http": ":56700", - "workdir": "/path/to/a/dir/to/store/syzkaller/corpus”, - "kernel_obj": “/path/to/linux/build/dir", + "workdir": "/path/to/a/dir/to/store/syzkaller/corpus", + "kernel_obj": "/path/to/linux/build/dir", "syzkaller": "/path/to/syzkaller/arm64/", "image": "/path/to/rootfs.ext3", "sshkey": "/path/to/ida_rsa", @@ -142,7 +142,7 @@ A sample config file that exercises the required options are shown below. Modify "count": 1, "qemu": "/path/to/qemu-system-aarch64", "cmdline": "console=ttyAMA0 root=/dev/vda", - "kernel": “/path/to/Image", + "kernel": "/path/to/Image", "cpu": 2, "mem": 2048 } -- cgit mrf-deployment