ทำตามบทช่วยสอนนี้เพื่อเขียนไดรเวอร์แรกของฉัน
Makefile คือ:
# Makefile – makefile of our first driver
# if KERNELRELEASE is defined, we've been invoked from the
# kernel build system and can use its language.
ifneq (${KERNELRELEASE},)
obj-m := ofd.o
# Otherwise we were called directly from the command line.
# Invoke the kernel build system.
else
KERNEL_SOURCE := /usr/src/linux 3.8
PWD := $(shell pwd)
default:
${MAKE} -C ${KERNEL_SOURCE} SUBDIRS=${PWD} modules
clean:
${MAKE} -C ${KERNEL_SOURCE} SUBDIRS=${PWD} clean
endif
และรหัสไดรเวอร์คือ:
* ofd.c – Our First Driver code */
#include <linux/module.h>
#include <linux/version.h>
#include <linux/kernel.h>
static int __init ofd_init(void) /* Constructor */
{
printk(KERN_INFO "Namaskar: ofd registered");
return 0;
}
static void __exit ofd_exit(void) /* Destructor */
{
printk(KERN_INFO "Alvida: ofd unregistered");
}
module_init(ofd_init);
module_exit(ofd_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Anil Kumar Pugalia <email_at_sarika-pugs_dot_com>");
MODULE_DESCRIPTION("Our First Driver");
ไม่มีข้อผิดพลาดระหว่างการทำ แต่เมื่อฉันใช้insmod ofd.ko
ฉันไม่สามารถโหลดได้ ในdmesg
นั้นพูดว่า:
ไม่เห็นด้วยเกี่ยวกับรุ่นของสัญลักษณ์ module_layout
uname -r
ส่งคืน '3.8.0-38-generic' และที่มาของเคอร์เนล 3.8modprobe -f ofd.ko
ยังล้มเหลว
นอกจากนี้:
#56~precise1-Ubuntu SMP Thu Mar 13 16:23:47 UTC 2014
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 12.04.4 LTS
Release: 12.04
Codename: precise
เกิดอะไรขึ้น?