tips
Linux Kernel 如何得到某一个 .c 对应的 .o/.i/.s/.lst 文件?
.c 对应的 .o/.i/.s/.lst 文件?$ make some/path/file.o
$ make some/path/file.i
$ make some/path/file.s
$ make some/path/file.lst ## assembler code with the C sourceprintk 打印格式
通过 GDB 调试 Linux 内核
通过 trace 调试 Linux 内核
只打印应用层目标源码对应 Linux 内核调试信息
Last updated