当前位置:   article > 正文

基于VSCode的Linux内核调试环境搭建以及start_kernel跟踪分析_vscode配置linux内核

vscode配置linux内核

1.安装开发工具

  1. sudo apt install build-essential
  2. sudo apt install qemu
  3. sudo apt install libncurses5-dev bison flex libssl-dev libelf-dev

2.下载内核源码

  1. sudo apt install axel
  2. axel -n 20 https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.4.34.tar.xz
  3. xz -d linux-5.4.34.tar.xz
  4. tar -xvf linux-5.4.34.tar
  5. cd linux-5.4.34

3.配置内核选项

  1. Kernel hacking --->
  2. Compile-time checks and compiler options --->
  3. [*] Compile the kernel with debug info
  4. [*] Provide GDB scripts for kernel debugging
  5. [*] Kernel debugging
  6. Processor type and features ---->
  7. [] Randomize the address of the kernel image (KASLR)

4.制作根文件系统

首先从https://www.busybox.net下载 busybox源代码解压,解压完成后,跟内核一样先配置编译,并安装。

  1. axel -n 20 https://busybox.net/downloads/busybox-1.31.1.tar.bz2
  2. tar -jxvf busybox-1.31.1.tar.bz2
  3. cd busybox-1.31.1
  4. make menuconfig
  5. #记得要编译成静态链接,不用动态链接库。
  6. Settings --->
  7. [*] Build static binary (no shared libs)
  8. #然后编译安装,默认会安装到源码目录下的 _install 目录中。
  9. make -j$(nproc) && make install
  10. mkdir rootfs
  11. cd rootfs
  12. cp ../busybox-1.31.1/_install/* ./ -rf
  13. mkdir dev proc sys home
  14. sudo cp -a /dev/{null,console,tty,tty1,tty2,tty3,tty4} dev/
  15. find . -print0 | cpio --null -ov --format=newc | gzip -9 > ../rootfs.cpio.gz
  16. qemu-system-x86_64 -kernel linux-5.4.34/arch/x86/boot/bzImage -initrd rootfs.cpio.gz

5、在.vscode中添加配置文件

6、跟踪Linux内核的启动过程

  • 在start-kernel中先进行了内存初始化,VFS初始化,调度初始化等,最后执行到了rest_init。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/239884
推荐阅读
相关标签
  

闽ICP备14008679号