aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-03-28 13:12:13 +0200
committerMarco Elver <me@marcoelver.com>2023-03-28 14:24:47 +0200
commit811086ce0bf9629c50ee5bf27211d9d63a193baf (patch)
treeca4c562ca3e54e23e9a0f736d94cafc5feddd5bf
parent5da37c6e74cc77f51ec7bfb207b4cf2844ee1c58 (diff)
docs: minor updates to setup_ubuntu-host_qemu-vm_x86-64-kernel.md
Recommend CONFIG_DEBUG_INFO_DWARF4 (syzkaller doesn't work with DWARF5) and bump the kernel version.
-rw-r--r--docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md
index f6a579ebb..004f07a6f 100644
--- a/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md
+++ b/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md
@@ -36,10 +36,10 @@ ls $GCC/bin/
Command:
``` bash
-git clone --branch v5.14 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git $KERNEL
+git clone --branch v6.2 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git $KERNEL
```
->We recommend to start with the latest stable version. v5.14 is an example here.
+>We recommend to start with the latest stable version. v6.2 is an example here.
### Generate default configs
@@ -69,7 +69,7 @@ It's not required to enable all of them, but at the very least you need:
CONFIG_KCOV=y
# Debug info for symbolization.
-CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_DWARF4=y
# Memory bug detector
CONFIG_KASAN=y