আমার প্রথম ড্রাইভার লিখতে এই টিউটোরিয়ালটি অনুসরণ করে Following
মেকফাইলটি হ'ল:
# 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
কি হচ্ছে?