मेरा पहला ड्राइवर लिखने के लिए इस ट्यूटोरियल का अनुसरण करें ।
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
कहा गया है:
प्रतीक के संस्करण के बारे में असहमत मॉड्यूल_ऑलआउट
uname -r
रिटर्न '3.8.0-38-जेनेरिक' और कर्नेल स्रोत भी 3.8।modprobe -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
क्या हो रहा है?