将设备驱动程序编译到内核

时间:2017-12-09 09:23:44

标签: c linux linux-kernel linux-device-driver

我正在尝试编译设备驱动程序,但是我收到以下错误, 以及所有后续标题的相同内容

ddd@ddd:~/Desktop$ make
make -C /lib/modules/4.13.0-19-generic/build  M=/home/ddd/Desktop  modules 
make[1]: Entering directory '/usr/src/linux-headers-4.13.0-19-generic'
  CC [M]  /home/ddd/Desktop/message_slot.o
/home/ddd/Desktop/message_slot.c:23:10: fatal error: stdio.h: No such file or directory
 #include <stdio.h>
          ^~~~~~~~~
compilation terminated.
scripts/Makefile.build:309: recipe for target '/home/ddd/Desktop/message_slot.o' failed
make[2]: *** [/home/ddd/Desktop/message_slot.o] Error 1
Makefile:1546: recipe for target '_module_/home/ddd/Desktop' failed
make[1]: *** [_module_/home/ddd/Desktop] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.13.0-19-generic'
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 2
ddd@ddd:~/Desktop$ 

我使用以下makefile编译程序:

obj-m := message_slot.o 
KDIR := /lib/modules/$(shell uname -r)/build 
PWD := $(shell pwd) 
all: 
    $(MAKE) -C $(KDIR) M=$(PWD) modules 
clean: 
    $(MAKE) -C $(KDIR) M=$(PWD) clean

问题是,通过运行小的.c代码:

#include <stdio.h>
#include <stdli.h>

int main(){
  printf("test");
 }

用命令
gcc test.c -o test
一切都编译好了。 我怀疑它是内核头文件的东西,但我已经按照指定下载了所有头文件。我正在运行lubuntu 17.10
我错过了什么吗? 非常感谢

1 个答案:

答案 0 :(得分:2)

stdio.h是用户空间头文件而不是内核空间,这就是你的make失败的原因。 在驱动程序中,我们为什么要包含所有headers,因为bcz没有main()函数,对吗?

当您执行make时,请观察makefile

 obj-m := message_slot.o 
 KDIR := /lib/modules/$(shell uname -r)/build 

这意味着您正在编译为模块,而您的源代码将在/usr/src/linux-4(某个版本)中。

例如

   #include <linux/stat.h> 

#include <stat.h>

xyz@xyz-PC:/usr/src/linux-4.1.39/include/linux$ ls -l stdio.h  
        ls: cannot access stdio.h: No such file or directory

在你的驱动程序中你为什么要包括stdio.h因为你不打算使用printf而不是printk()?

是的,在应用程序中,您可以包含stdio.h,因为您使用gcc编译器编译为file而不是module

我希望它有所帮助。