makefile怎么写 module不能加载

发布于 2022-09-19 12:11:17 字数 2235 浏览 13 评论 0

test1.c:

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>

#include "xiao.h"

MODULE_DESCRIPTION("My kernel module");
MODULE_AUTHOR("root (root@localhost.localdomain)");
MODULE_LICENSE("$LICENSE$");

static int test1_init_module(void)
{
int a=3,b=5;
int res;
printk( KERN_DEBUG "Module test1 init\n" );
res=xiao(a,b);
printk( KERN_DEBUG "Module test1 init res=%d \n", res);
return 0;
}

static void test1_exit_module(void)
{
printk( KERN_DEBUG "Module test1 exit\n" );
}

module_init(test1_init_module);
module_exit(test1_exit_module);

****************

xiao.c:
int xiao(int a,int b)
{
int c=a+b;
return(c);
}

***************
#ifndef _XIAO_H_
#define _XIAO_H_

int xiao(int a,int b);

#endif

**********

makefile:
TARGET = test1
OBJS = test1.o xiao.o
MDIR = drivers/misc

EXTRA_CFLAGS = -DEXPORT_SYMTAB
CURRENT = $(shell uname -r)
KDIR = /lib/modules/$(CURRENT)/build
PWD = $(shell pwd)
DEST = /lib/modules/$(CURRENT)/kernel/$(MDIR)

#obj-m := $(TARGET).o
$(TARGET).o-objs:=test1.o xiao.o
obj-m = $(TARGET).o

default:
make -C $(KDIR) SUBDIRS=$(PWD) modules

$(TARGET).o: $(OBJS)
$(LD) $(LD_RFLAG) -r -o $@ $(OBJS)

ifneq (,$(findstring 2.4.,$(CURRENT)))
install:
su -c "cp -v $(TARGET).o $(DEST) && /sbin/depmod -a"
else
install:
su -c "cp -v $(TARGET).ko $(DEST) && /sbin/depmod -a"
endif

clean:
-rm -f *.o *.ko .*.cmd .*.flags *.mod.c

-include $(KDIR)/Rules.make

**************

编译时有警告:WARNING: "xiao" [/root/test1/test1.ko] undefined!
加载时就抱怨说有不识别的标志,加不上。

大家帮我看一下,这个要怎么改

谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城旧梦 2022-09-26 12:11:17

樓主的文件目錄是怎麼放置的呀

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文