diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-06-28 12:01:02 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-06-28 13:42:04 +0200 |
| commit | e502f1a6dfee2bd1716d838340b1584c05d29b60 (patch) | |
| tree | 1830f87856fa251b0ef7949b158074d0225e6ec7 /docs/linux/troubleshooting.md | |
| parent | dba0b50e7863cf82c29969caed47da4b8c99ee05 (diff) | |
docs: remove mentions of vmlinux
vmlinux is deprecated in favor of kernel_obj.
Remove all mentions of it.
Also warn in syz-manager/mgrconfig if vmlinux is set.
Diffstat (limited to 'docs/linux/troubleshooting.md')
| -rw-r--r-- | docs/linux/troubleshooting.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/linux/troubleshooting.md b/docs/linux/troubleshooting.md index 7f172304f..76f780fa4 100644 --- a/docs/linux/troubleshooting.md +++ b/docs/linux/troubleshooting.md @@ -7,7 +7,7 @@ Here are some things to check if there are problems running syzkaller. and `KERNEL` is set to the test kernel (as per the `kernel` config value) then something like the following command should start the VM successfully: - ```shell + ```shell qemu-system-x86_64 -hda $IMAGE -m 256 -net nic -net user,host=10.0.2.10,hostfwd=tcp::23505-:22 -enable-kvm -kernel $KERNEL -append root=/dev/sda ``` @@ -15,7 +15,7 @@ Here are some things to check if there are problems running syzkaller. a VM running and with `SSHKEY` set to the SSH identity (as per the `sshkey` config value) the following command should connect: - ```shell + ```shell ssh -i $SSHKEY -p 23505 root@localhost ``` @@ -35,7 +35,7 @@ Here are some things to check if there are problems running syzkaller. - Check that debug information (from the `CONFIG_DEBUG_INFO` option) is available - Pass the hex output from the kcov test program to `addr2line -a -i -f -e $VMLINUX` (where - `VMLINUX` is the vmlinux file, as per the `vmlinux` config value), to confirm + `VMLINUX` is the vmlinux file, as per the `kernel_obj` config value), to confirm that symbols for the kernel are available. Also see [this](/docs/troubleshooting.md) for generic troubleshooting advice. |
