LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-01-2004, 12:59 PM   #1
Musikolo
Member
 
Registered: Jul 2003
Distribution: Arch Linux x64
Posts: 115

Rep: Reputation: 15
Kernel 2.6.0 <=> QM_MODULES: Function not implemented


Hi mates, I've been struggling for getting a free-bug kernel instalation, but I haven't been able to do it so far. I get :

QM_MODULES: Function not implemented

when booting or everytime I try to recompile the kernel. It appears as well when I execute the command:


Quote:
depmod -V
depmod version 2.4.22
depmod: QM_MODULES: Function not implemented
I've read a lot about it and it seems I have to install a new package called 'module_init_tools' which substitutes the package 'modutils', but I have found neither the place where to download the right package nor the way of installing it. Is there anybody who might help me to solve that?, I would really appreciate it.

Thanks to all.
 
Old 01-01-2004, 01:06 PM   #2
@@@
Member
 
Registered: Dec 2003
Posts: 30

Rep: Reputation: 15
Read the Readme in the Kernel sources. This should always be done before even doing a make config...
 
Old 01-01-2004, 08:29 PM   #3
r4BBiT
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 9.0
Posts: 2

Rep: Reputation: 0
you need to install mod-init package, u can find it here:
ftp://ftp.kernel.org/pub/linux/kerne...rusty/modules/
 
Old 01-01-2004, 11:28 PM   #4
thegeekster
Member
 
Registered: Dec 2003
Location: USA (Pacific coast)
Distribution: Vector 5.8-SOHO, FreeBSD 6.2
Posts: 513

Rep: Reputation: 34
For future reference, look at the 'Changes' document in the Documentation directory (linux-2.6.0/Documentation/Changes) for the minimum requirements and also where to get the upgrades
 
Old 01-06-2004, 11:06 AM   #5
pfcit
LQ Newbie
 
Registered: Jan 2004
Posts: 2

Rep: Reputation: 0
re: QM_MODULES: Function not implemented

which version of module utils should be installed. ?
what documentation addresses this problem?
please do not post vague unhelpful replies.
if you know the solution but are too arogant to
give details then please at least quote the specific
documented solution with a full valid url.
 
Old 01-06-2004, 06:47 PM   #6
szymon
LQ Newbie
 
Registered: May 2003
Posts: 28

Rep: Reputation: 15
hmmm i`m using slackware 9.0. Today i`ve compiled 2.6.0 - patched to 2.6.1 kernel. And i was very suprised with this QM_modules error . So first thing i did was taking a look here on linuxquestions. I`ve installed

module-init-tools-0.9.13.tar.gz --> this

and when i do lsmod i still get this QM_modules error :-/. Acording to instructions here on forum everything should be fine, am i right?

best regards
 
Old 01-07-2004, 08:48 AM   #7
pfcit
LQ Newbie
 
Registered: Jan 2004
Posts: 2

Rep: Reputation: 0
i installed module-init-tools-3.0-pre5.tar on kernel 2.6.0 and have got rid of the
problem.
 
Old 01-07-2004, 09:07 AM   #8
szymon
LQ Newbie
 
Registered: May 2003
Posts: 28

Rep: Reputation: 15
yep i read and did excacly what was said in readme file and lsmod works correctly, everything is ok :> i hope :]
 
Old 01-07-2004, 12:53 PM   #9
dinningc
LQ Newbie
 
Registered: Dec 2003
Posts: 2

Rep: Reputation: 0
i installed module-init-tools-0.9.14.tar on kernel 2.6.0, but

> lsmod
Module Size Used by
eepro100 27756 --

In the Modules and Size section are normal, but the Used by section is all -. I was wondering if anyone could help. Thanks, Chen
 
Old 01-08-2004, 04:19 PM   #10
ttilt
Member
 
Registered: Dec 2003
Location: Campinas, Brasil
Distribution: slackware 10
Posts: 150

Rep: Reputation: 15
mod-init-tools compilation fails

I tried to install module-init-tools-3.0-pre5.tar.bz2 from ftp://ftp.kernel.org/pub/linux/kerne...rusty/modules/ and received the following error during compilation:

[root@bla module-init-tools-3.0-pre5]# make
gcc -g -O2 -Wunused -Wall -Wcast-align -o insmod.static -static insmod.o
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
make: ** [insmod.static] Erro 1

I had already run ./configure and it didn't present any error messages. Does anyone know what this means?

Also: on the README for the 2.6.0 kernel it says:

"
Module-Init-Tools
-----------------

A new module loader is now in the kernel that requires module-init-tools
to use. It is backward compatible with the 2.4.x series kernels.
"

Then if it is backward compatible, shouldn't modutils from 2.4 work fine w/ 2.6.0?
 
Old 01-09-2004, 01:26 PM   #11
ttilt
Member
 
Registered: Dec 2003
Location: Campinas, Brasil
Distribution: slackware 10
Posts: 150

Rep: Reputation: 15
Quote:
Originally posted by dinningc
i installed module-init-tools-0.9.14.tar on kernel 2.6.0, but

> lsmod
Module Size Used by
eepro100 27756 --

In the Modules and Size section are normal, but the Used by section is all -. I was wondering if anyone could help. Thanks, Chen
I got it working now too but I get this exact same problem as dinningc. Heres a sample output from lsmod:

Module Size Used by
snd_pcm_oss 49060 -
snd_mixer_oss 16704 -
snd_intel8x0 28356 -
snd_ac97_codec 51972 -
snd_pcm 85860 -
snd_timer 20516 -


Anyone knows what could be causing this?
 
Old 01-09-2004, 04:03 PM   #12
@@@
Member
 
Registered: Dec 2003
Posts: 30

Rep: Reputation: 15
Re: mod-init-tools compilation fails

Quote:
Originally posted by ttilt
I tried to install module-init-tools-3.0-pre5.tar.bz2 from ftp://ftp.kernel.org/pub/linux/kerne...rusty/modules/ and received the following error during compilation:

[root@bla module-init-tools-3.0-pre5]# make
gcc -g -O2 -Wunused -Wall -Wcast-align -o insmod.static -static insmod.o
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
make: ** [insmod.static] Erro 1

I had already run ./configure and it didn't present any error messages. Does anyone know what this means?

Also: on the README for the 2.6.0 kernel it says:

"
Module-Init-Tools
-----------------

A new module loader is now in the kernel that requires module-init-tools
to use. It is backward compatible with the 2.4.x series kernels.
"

Then if it is backward compatible, shouldn't modutils from 2.4 work fine w/ 2.6.0?
No, backward compatible means that the new system understands the old one, ie you can load 2.4 modules with the new module-init-tools.
 
Old 01-11-2004, 02:20 PM   #13
oobe
Member
 
Registered: Sep 2003
Distribution: slackware
Posts: 85

Rep: Reputation: 16
Quote:
hmmm i`m using slackware 9.0. Today i`ve compiled 2.6.0 - patched to 2.6.1 kernel. And i was very suprised with this QM_modules error . So first thing i did was taking a look here on linuxquestions. I`ve installed

module-init-tools-0.9.13.tar.gz --> this

and when i do lsmod i still get this QM_modules error :-/. Acording to instructions here on forum everything should be fine, am i right?
identical amazing exactly the same problem i am downloading 2.6.1 now incase it is the patch also module-init-tools-0.9.13 might not work well it says in Documentatyion/Changes that the kernel only requires module-init-tools-0.9.10 so might try that instead
 
Old 01-11-2004, 03:04 PM   #14
oobe
Member
 
Registered: Sep 2003
Distribution: slackware
Posts: 85

Rep: Reputation: 16
yep i read and did excacly what was said in readme file and lsmod works correctly, everything is ok :> i hope :] what what was in the readme lol i have read it
 
Old 10-04-2004, 09:51 AM   #15
monogramma
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Rep: Reputation: 0
Re: mod-init-tools compilation fails

Quote:
Originally posted by ttilt
I tried to install module-init-tools-3.0-pre5.tar.bz2 from ftp://ftp.kernel.org/pub/linux/kerne...rusty/modules/ and received the following error during compilation:

[root@bla module-init-tools-3.0-pre5]# make
gcc -g -O2 -Wunused -Wall -Wcast-align -o insmod.static -static insmod.o
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
make: ** [insmod.static] Erro 1

I had already run ./configure and it didn't present any error messages. Does anyone know what this means?
You should have some glibc libraries installed. I had the same problem and I managed to bypass it that way.

Good luck
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
QM_MODULES function not implemented pike Linux - General 4 12-22-2005 06:03 AM
QM_MODULES: Function not implimented edman007 Linux - General 4 01-17-2005 06:13 PM
Kernel 2.6.3 QM_MODULES not implemented rajan_kanwar Linux - Software 1 04-28-2004 10:11 AM
2.6.3 swapon - function not implemented Sammy2ooo Linux - General 3 03-10-2004 07:08 AM
nfssvc: Function not implemented SiliconBadger Linux - Networking 5 05-14-2002 01:20 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration