Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on...
Note: An (*) indicates there is no official participation from that distribution here at LQ. |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
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:
|
|
|
|
All times are GMT -5. The time now is 07:55 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
|
|