Linux驱动Invalid module format错误解决

更新时间:2023-05-07 03:15:22 阅读: 评论:0

.编译错误(其实这个问题和 Makefile有很大关系)
2.Invalid module format 错误
3.insmod: error inrting './hello.ko': -1 File exists
开发环境
内核版本:2.6.22(我下载的最新版本)
gcc:gcc (GCC) 4.1.2
Makefile
gcc -D__KERNEL__ -DMODULE -DLINUX -I /usr/local/src/linux2.4/include -c -o hello.o hello.c
上面这种写法适合 2.4 版本的内核,在2.6下用这种写法很可能导致许多编译错误,即使编译通过也会产生 Invalid module format 错误。
2.6下正确的 Makefie 如下:
# Makefile2.6
ifneq ($(KERNELRELEASE),)
#kbuild syntax. dependency relationshsip of files and target modules are listed here.
mymodule-objs := hello.o
obj-m := hello.o
el
PWD := $(shell pwd)
KVER ?= $(shell uname -r)
KDIR := /lib/modules/$(KVER)/build
all:
$(MAKE) -C $(KDIR) M=$(PWD)
clean:
rm -rf .*.cmd *.o *.mod.c *.ko .tmp_versions
endif
使用上面的 Makefie 同时也解决了 Invalid module format 错误
insmod: error inrting './hello.ko': -1 File exists 错误解决
第一次insmod ./hello.ko 没有输出表示你的模块被正常载入了,后来的错误是你重复载入这个模块导致的
用命令 lsmod | grep hello 看看是不是有这个模块?
用命令 tail /var/log/messages
hello,world
module程序正常执行。

本文发布于:2023-05-07 03:15:22,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/863610.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:错误   编译   模块   导致   可能   写法   载入
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图