From e502f1a6dfee2bd1716d838340b1584c05d29b60 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 28 Jun 2018 12:01:02 +0200 Subject: 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. --- docs/linux/troubleshooting.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/linux/troubleshooting.md') 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. -- cgit mrf-deployment