From 811086ce0bf9629c50ee5bf27211d9d63a193baf Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 28 Mar 2023 13:12:13 +0200 Subject: 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. --- docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/linux') 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 -- cgit mrf-deployment