我正在尝试安装UML linux。内核是2.6.28。
我链接到Linux文件,这样我就有了一个可以恢复的只读副本。
然后我运行以下命令:
make defconfig ARCH=um # works
make ARCH=um # errors out at the very end:
final close failed: Input/output error
make: *** [vmlinux.o] Error 1
由于这个错误,我的二进制vmlinux永远不会被创建,所以我不能运行我自己的UML Linux。有什么想法吗?
我正在尝试为我的xperia zl(odin)编译cm11内核。我能够编译Image (带有一些警告),但在Image准备好之后,我得到:
Kernel: arch/arm/boot/Image is ready
LZO arch/arm/boot/compressed/piggy.lzo
AS arch/arm/boot/compressed/piggy.lzo.o
CC arch/arm/boot/compressed/misc.o
CC arch/arm/boot/compressed/decompress.o
CC arch/arm/boot/compressed/string.o
S
我一直在使用oprofile试图找出为什么我的程序在内核上花费了这么多时间。我现在有了来自内核的符号,但显然我的程序和内核之间没有链接来告诉我程序的哪些部分花费了这么长的时间。
samples % image name app name symbol name
-------------------------------------------------------------------------------
201 0.8911 vmlinux-3.0.0-30-generic vmlinu
我正在为Centos 8.4.2105编写内核5.13.7
我有以下错误
MODPOST vmlinux.symvers
MODINFO modules.builtin.modinfo
GEN modules.builtin
BTF: .tmp_vmlinux.btf: pahole (pahole) is not available
Failed to generate BTF for vmlinux
Try to disable CONFIG_DEBUG_INFO_BTF
make: *** [Makefile:1205: vmlinux] Error 1
我试着在Go
在尝试使用支持Ftrace和调试信息构建内核(4.15)时,我得到了以下错误:
FAILED: load BTF from vmlinux: No such file or directory
Makefile:1160: recipe for target 'vmlinux' failed
这就是我想要做的:
$ ./scripts/config -e CONFIG_FTRACE
$ ./scripts/config -e CONFIG_DEBUG_INFO
$ ./scripts/config -e CO
编译内核版本时出现此错误:5.7-rc4
BTF: .tmp_vmlinux.btf: pahole (pahole) is not available
Failed to generate BTF for vmlinux
Try to disable CONFIG_DEBUG_INFO_BTF
make: *** [Makefile:1106: vmlinux] Error 1
我正在使用google ndk工具链为我的Samsung Note3 SM-N900P模型交叉编译图像。我下载了Kitkat版本的三星源代码,我相信我已经按照内核自述文件中的说明进行了操作。它声明使用4.7工具链,我在NDK版本8d中找到了它。但我得到以下错误:
ERROR: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
To build the kernel despite the
我正在尝试使用gdb从vmlinux读取内存。确切的语法是
sudo gdb vmlinux-4.18.0-rc1+ /proc/kcore
我使用这个文件是因为vmlinux是这个文件的符号链接。结果如下
Reading symbols from vmlinux-4.18.0-rc1+...(no debugging symbols found)...done.
warning: core file may not match specified executable file.
[New process 1]
Core was generated by `root=/dev/mapper
我正在尝试用自定义补丁构建ubuntu5.3.0内核。我下载了源代码,并使用
patch -p1 < patch_name.patch
并使用
make config
然后我用
make -j6
这给了我vmlinux和vmlinux.o文件。我不知道如何使用它们,所以我尝试将内核变成一个.deb文件。我用
make deb-pkg
fakeroot make-kpkg -j N --initrd --append-to-version=my-very-own-kernel kernel-image kernel-headers
make bindeb-pkg
但是在编译完整个内核之
我试图使用kdump和崩溃实用程序来分析openSUSE 11.3上的Linux内核恐慌。系统正在成功地创建vmcore文件,但是当我去分析它时,crash抱怨缺少符号。
# crash -s vmlinux-2.6.34-12-desktop.gz vmcore
crash: vmlinux-2.6.34-12-desktop.gz: no debugging data available
crash: vmlinux-2.6.34-12-desktop.debug: debuginfo file not found
crash: either install the appropriat
我想知道在C代码中执行printf时调用哪个内核模块。我怎么能找到那个?比方说,当我使用ldd时,我可以找到哪些库附加到我的二进制文件中。我在找类似的东西。基本上,我想研究负责printf的文件的结构。
考虑以下代码
#include <stdio.h>
int main()
{
int i = 0;
int N = 100;
while (i++ <= N) {
printf("%d ", i);
}
return 0;
}
当我运行perf命令perf record -e cycles -j any -a -o perf.dat
在构建openwrt时,我遇到了这个问题:
Command line marker not found!
make[5]: *** [kernel_prepare] Error 255
经过分析,我发现问题来自于tools/patch-image/src/patch-cmdline.c:
for (p = ptr; p < (ptr + search_space); p += 4) {
if (memcmp(p, "CMDLINE:", 8) == 0) {
found = 1;
p += 8;
break;
我正在尝试将postmarketOS连接到三星Galaxy S3 Neo。在编译linux内核的过程中,我得到了一个错误: ERROR: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
To build the kernel despite the mismatches, build with:
'make CONFIG_NO_ERROR_ON_MISMATCH=y'