Linux内核模块编译失败
发布时间:2020-12-13 19:47:56 所属栏目:Linux 来源:网络整理
导读:我的上一次内核开发是在2.6~版本中 现在我尝试编译一个模块,在内核树外编译时出现以下错误. /bin/sh: 1: /home/blabla/workspace/kernel35/linux-3.5/scripts/recordmcount: not found 目标文件是正确创建的,但是问题出在内核Makefile本身,有些东西已经改变
我的上一次内核开发是在2.6~版本中
现在我尝试编译一个模块,在内核树外编译时出现以下错误. /bin/sh: 1: /home/blabla/workspace/kernel35/linux-3.5/scripts/recordmcount: not found 目标文件是正确创建的,但是问题出在内核Makefile本身,有些东西已经改变了,我没有更新? 我正在使用来自kernel.org的vanilla内核源码,我已经做过了 make oldconfig && make prepare 我发布了我正在使用的Makefile,它是内核模块的标准makefile # Comment/uncomment the following line to disable/enable debugging #DEBUG = y # Add your debugging flag (or not) to CFLAGS ifeq ($(DEBUG),y) DEBFLAGS = -O -g -DBLABLA_DEBUG # "-O" is needed to expand inlines else DEBFLAGS = -O2 endif ccflags-y += $(DEBFLAGS) ccflags-y += -I.. ifneq ($(KERNELRELEASE),) # call from kernel build system obj-m := blabla.o else KERNELDIR ?= /home/blabla/workspace/kernel35/linux-3.5 PWD := $(shell pwd) default: $(MAKE) -C $(KERNELDIR) M=$(PWD) modules endif clean: rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions depend .depend dep: $(CC) $(CFLAGS) -M *.c > .depend ifeq (.depend,$(wildcard .depend)) include .depend endif 解决方法
好的,我想出了如何解决这个问题.
显然,这是我第一次尝试编译模块而不事先编译内核. 为了解决这个问题,我从内核源代码树运行以下命令. make modules_prepare 这将创建支持模块构建的所有必要基础架构. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |