Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-27-2004, 06:56 AM
|
#1
|
|
LQ Newbie
Registered: Jul 2004
Distribution: SUSE
Posts: 8
Rep:
|
'Invalid module format' loading simple module on Suse Linux Professional 9.1
--- I actually have 2 issues ---
1) Whenever I try to load a simple module on Suse Linux Professional 9.1 I get the following message:
insmod: error inserting 'mydev.o': -1 Invalid module format
2) In my source why do I have to have CONFIG_M486 defined? With my RedHat installation at the office I do not have to do this.
Thanks,
Rocket
Below is the source for the simple module followed by the gcc command line:
#include <linux/kernel.h>
#define CONFIG_M486
#include <linux/module.h>
int init_module()
{
/* code to init the module */
return 0;
}
void cleanup_module()
{
/* code to close the module */
}
gcc -D__KERNEL__ -DMODULE -c mydev.c
|
|
|
|
07-27-2004, 09:25 AM
|
#2
|
|
Member
Registered: May 2004
Location: Vienna, Austria
Distribution: Open SuSE 11, Mac OS X 10.5
Posts: 299
Rep:
|
The error message indicates that your module was not build properly.
The compiler call like you have given it, is the one used for 2.4.x kernels.
With the 2.6.x kernels (SuSE 9.1 has an 2.6.x kernel) things are a little bit different, although easier.
The kernel modules with 2.6.x have a .ko (Kernel Object) ending, and
not .o .
First of all you shall add the Licence Macro to your module source.
MODULE_LICENSE("GPL");
Otherwise you will get a error message when loading the module, telling that the
module is tainted.
You *need* to have write access to the kernel source tree. So compile as root.
cd into the directory with the module source
Create a Makefile
with following entry:
obj-m := mydev.o
e.g.
cat "obj-m := mydev.o" > Makefile
then compile the module with
make -C /lib/modules/$(uname -r)/build SUBDIRS=$PWD modules
After that you can try to load the module with
insmod mydev.ko
Check with lsmod if the module is loaded.
Wirth
modprobe -r mydev
you can remove the module.
Last edited by Vlad-A; 07-27-2004 at 11:52 AM.
|
|
|
|
07-27-2004, 08:46 PM
|
#3
|
|
LQ Newbie
Registered: Jul 2004
Distribution: SUSE
Posts: 8
Original Poster
Rep:
|
Hi Vlad,
You're my hero! Thanks!
I searched a couple of days for this answer before posting. Can you point me to where this is documented?
Regards,
Rocket
|
|
|
|
07-27-2004, 11:40 PM
|
#4
|
|
Member
Registered: May 2004
Location: Vienna, Austria
Distribution: Open SuSE 11, Mac OS X 10.5
Posts: 299
Rep:
|
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:56 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|