本文介绍: 安装 Eclipse IDE for C/C++ Developer。在内核的start_kernel 处设置断点。将跳转到断点 start_kernelchu。通过1234端口远程连接到qemu虚拟机。图形界面下载和调试较慢,后期不使用了。在qemu和Ubuntu之间共享文件。下载x86_64 Linux安装包。安装 Eclipse-CDT插件。安装支持不同处理器架构的gdb。下载Eclipse-CDT插件。运行脚本启动qemu和GDB。下载Linux-5.0源码。安装java运行环境。
参考书籍《奔跑吧Linux内核》–笨叔
下载Linux-5.0源码
https://benshushu.coding.net/public/runninglinuxkernel_5.0/runninglinuxkernel_5.0/git/files
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
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
/kernel/runninglinuxkernel_5.0$ ./run_debian_arm64.sh run
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
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
Ctrl +a x
ps -e | grep qemu
kill -9 48977
sudo apt install gdb-multiarch
:~/kernel/runninglinuxkernel_5.0$ ./run_debian_arm64.sh run debug
:~/kernel/runninglinuxkernel_5.0$ gdb-multiarch --tui vmlinux
(gdb)set architecture aarch64
(gdb)target remote localhost:1234
(gdb)b start_kernel
(gdb)c
退出 GDB
(gdb)q/quit
方法二:图形化界面调试工具
安装 Eclipse-CDT插件
下载Eclipse-CDT插件
https://projects.eclipse.org/projects/tools.cdt
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
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
图形界面下载和调试较慢,后期不使用了。
原文地址:https://blog.csdn.net/u010584870/article/details/134618139
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_15637.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。