当前位置: 首页 > article >正文

使用qemu调试arm内核

参考书籍《奔跑吧Linux内核》–笨叔
下载Linux-5.0源码

https://benshushu.coding.net/public/runninglinuxkernel_5.0/runninglinuxkernel_5.0/git/files

或者直接git源码

git clone https://e.coding.net/benshushu/runninglinuxkernel_5.0/runninglinuxkernel_5.0.git

安装必要的包

sudo apt-get install qemu libncurses5-dev gcc-aarch64-linux-gnu build-essential bison flex libssl-dev qemu-system-arm

切换到rlk_5.0分支

git checkout rlk_5.0

编译内核

~/kernel/runninglinuxkernel_5.0$ ./run_debian_arm64.sh build_kernel

编译文件系统

~/kernel/runninglinuxkernel_5.0$ sudo ./run_debian_arm64.sh build_rootfs

使用qemu运行Debian系统

/kernel/runninglinuxkernel_5.0$ ./run_debian_arm64.sh run

running:
或者使用:

qemu-system-aarch64 -m 1024 -cpu max,sve=on,sve256=on -M virt,gic-version=3,its=on,iommu=smmuv3 -nographic -smp 4 -kernel arch/arm64/boot/Image -append "noinitrd nokaslr loglevel=8 sched_debug root=/dev/vda rootfstype=ext4 rw crashkernel=256M vfio.dyndbg=+pflmt irq_gic_v3_its.dyndbg=+pflmt iommu.dyndbg=+pflmt irqdomain.dyndbg=+pflmt" -drive if=none,file=/home/book/kernel/runninglinuxkernel_5.0/rootfs_debian_arm64.ext4,id=hd0 -device virtio-blk-device,drive=hd0 --fsdev local,id=kmod_dev,path=./kmodules,security_model=none -device virtio-9p-pci,fsdev=kmod_dev,mount_tag=kmod_mount

进入虚拟机界面

登录
用户名:root或benshushu
密码:123

成功进入qemu

benshushu:~# ifconfig
benshushu:~# gcc -v

如果没有可以在线安装

在qemu和Ubuntu之间共享文件
:~/kernel$ cp test.txt runninglinuxkernel_5.0/kmodules/
benshushu:~# ls /mnt/
README arm64_virt.dts rlk_lab test.txt
benshushu:~# vi /mnt/test.txt

退出qemu

Ctrl +a  x

或者之间结束qemu

ps -e | grep qemu
 kill -9 48977

使用GDB调试
安装支持不同处理器架构的gdb

 sudo apt install gdb-multiarch

运行脚本启动qemu和GDB

:~/kernel/runninglinuxkernel_5.0$ ./run_debian_arm64.sh run debug

开启另外一个终端:
远程调用GDB调试

:~/kernel/runninglinuxkernel_5.0$ gdb-multiarch --tui  vmlinux

设置 aarch64架构

(gdb)set architecture aarch64

通过1234端口远程连接到qemu虚拟机。

(gdb)target remote localhost:1234

在内核的start_kernel 处设置断点

(gdb)b start_kernel

运行测试

(gdb)c 

将跳转到断点 start_kernelchu

退出 GDB

(gdb)q/quit

方法二:图形化界面调试工具
安装 Eclipse-CDT插件
下载Eclipse-CDT插件

https://projects.eclipse.org/projects/tools.cdt

Download Packages

https://projects.eclipse.org/projects/iot.embed-cdt

下载x86_64 Linux安装包
Download
Linux x86_64 | AArch64
https://www.eclipse.org/downloads/download.php?file=/oomph/epp/2023-09/R/eclipse-inst-jre-linux64.tar.gz

安装java运行环境。

sudo apt-get install openjdk-13-jre

安装

hudahua@VirtualBox:~/workspace/tools$ tar xzf eclipse-inst-jre-linux64.tar.gz
hudahua@VirtualBox:~/workspace/tools/eclipse-installer$ ./eclipse-inst

安装 Eclipse IDE for C/C++ Developer
在这里插入图片描述
图形界面下载和调试较慢,后期不使用了。


http://www.kler.cn/a/146308.html

相关文章:

  • MySQL、HBase、ES的特点和区别
  • AI编程工具横向评测--Cloudstudio塑造完全态的jupyter notebook助力数据分析应用开发
  • ComfyUI-PromptOptimizer:文生图提示优化节点
  • AI在SEO中的关键词优化策略探讨
  • DETRs with Collaborative Hybrid Assignments Training论文阅读与代码
  • 【C++篇】红黑树的实现
  • 初始React
  • 【Linux】第二十一站:文件(一)
  • MySQL三范式
  • Django中间件
  • 网络安全面试经历
  • FreeImage 编译安装
  • 基于单片机寻迹巡线避障智能小车系统设计
  • Linux4.5、进程状态
  • 网络爬虫(Python:Selenium、Scrapy框架;爬虫与反爬虫笔记)
  • URL参数提取,代码复制即用
  • C++基础 -4- C/C++混合编程
  • CloudCompare 源码编译
  • 快速掌握Pyqt5的10种容器(Containers)
  • 平衡二叉树(AVL)
  • list的总结
  • 【nlp】4.4 Transformer库的使用(管道模式pipline、自动模式auto,具体模型BertModel)
  • Redis面试题:Redis的数据过期策略有哪些?
  • Centos7上面部署redis
  • 计算机组成原理-Cache替换算法
  • 【Cisco Packet Tracer】电子邮箱仿真搭建