aboutsummaryrefslogtreecommitdiffstats
path: root/docs/linux
diff options
context:
space:
mode:
authorAlessio Balsini <balsini@android.com>2019-06-26 15:04:20 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-06-26 16:35:33 +0200
commit7509bf360eba1461ac6059e4cacfbc29c9d2d4c7 (patch)
tree14ae7bda67c77ba319dfa53aa25d52826557ec18 /docs/linux
parentc2c0d4d6ae3a27d3c4457df81a03c06ddbe72282 (diff)
docs/linux/qemu-arm64: fix copy/paste with non-ASCII character
The sneaky '“' character causes errors when copy-pasting snapshots of the documentation. Solved with s/“/"/g. Signed-off-by: Alessio Balsini <balsini@android.com>
Diffstat (limited to 'docs/linux')
-rw-r--r--docs/linux/setup_linux-host_qemu-vm_arm64-kernel.md8
1 files changed, 4 insertions, 4 deletions
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
}