Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Installing Gentoo
  • Search

e100 module problem

Having problems with the Gentoo Handbook? If you're still working your way through it, or just need some info before you start your install, this is the place. All other questions go elsewhere.
Post Reply
Advanced search
17 posts • Page 1 of 1
Author
Message
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

e100 module problem

  • Quote

Post by sardiskan » Mon Dec 20, 2004 3:00 pm

I get the following error on boot:

missing kernel or user mode driver e100
... can't load module e100

I don't know if that affects me because my network is working just fine and I don't see any problems as of right now. I would like to get rid of the problem though. I've been trying to read the forum and nothing I have read helps. The forum talks about compiling the module into the kernel, I don't know how to do that. Nor do I know if it is neccesary in my situation. I don't know how to check to see if it is compiled in it or not. I would appreciate any help.

Jason
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
nyteryda
Guru
Guru
User avatar
Posts: 337
Joined: Sat Jul 26, 2003 9:03 pm
Location: London

  • Quote

Post by nyteryda » Mon Dec 20, 2004 3:10 pm

First off at what point is it saying this ? is it saying it when it is loading the modules from your
/etc/modules.autoload.d/kernel-2.6 ?

Because if it is just open up that file and comment out the line that says "e100"



FYI about the kernel:
Also as far as the kernel goes i assume you know how to compile the kernel, (if not let me know)
Once open the driver you are looking for is:
Device Drivers -> Network support -> Ethernet (10 or 100Mbit) -> Intel(r) PRO/100+ support
Not that if you open with xconfig, if it has a tick in the tick box it is compiled into the kernel, if it has a dot, it is compiled as a module.
Not that if you open with menuconfig, if it has a * in the box it is compiled into the kernel, if it has a "M", it is compiled as a module.


note: a e100 driver made by intel can also be installed via portage, however i would stick to the kernel version your life will be that much easier.
Last edited by nyteryda on Mon Dec 20, 2004 3:20 pm, edited 1 time in total.

Code: Select all

#include "forums.h"
     int main() {while (bollox) postcount++;}
Top
addi
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 112
Joined: Thu Jun 06, 2002 6:15 am
Location: waterloo, on, canada
Contact:
Contact addi
Website

  • Quote

Post by addi » Mon Dec 20, 2004 3:19 pm

If your networking is working properly, I'd say that somewhere you're trying to load a driver that you don't need or have installed.

At the command line, as the root user, do the following (will search for references to that driver):

Code: Select all

cd /etc
grep -R e100 .
Don't forget the period. That should (hopefully) spew off some findings... If it does find something, one of them may look like this:

Code: Select all

./modules.autoload.d/kernel-2.6:e100
or something to that effect. If so, you can continue.

The modules.autoload.d directory contains a simple text file for each major kernel you have installed (2.4 and 2.6, if you have a 2.6 kernel installed... odds are, if you haven't installed a kernel before, you will only have a file called kernel-2.4.

If you edit the kernel-2.4 (or kernel-2.6) file that the 'grep' called returned and remove the e100 line from it, you shouldn't have the warning anymore. Basically, listing a module name in that file will cause Gentoo to automatically try to load the module into the kernel - commonly used for networking and video cards.

Hopefully that helps.
James Addison
http://www.pjsoft.ca
Top
addi
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 112
Joined: Thu Jun 06, 2002 6:15 am
Location: waterloo, on, canada
Contact:
Contact addi
Website

  • Quote

Post by addi » Mon Dec 20, 2004 3:22 pm

Damn, I got beat to the punch by another poster! :)
James Addison
http://www.pjsoft.ca
Top
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

  • Quote

Post by sardiskan » Mon Dec 20, 2004 3:39 pm

No I don't know how to compile the kernel, I used genkernel to compile it so I'm not educated about the manual compilation.

Also, when I run the grep -R e100 .
I get no findings. What does that mean?

Jason
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
nyteryda
Guru
Guru
User avatar
Posts: 337
Joined: Sat Jul 26, 2003 9:03 pm
Location: London

  • Quote

Post by nyteryda » Mon Dec 20, 2004 3:50 pm

sardiskan wrote:No I don't know how to compile the kernel, I used genkernel to compile it so I'm not educated about the manual compilation.

Also, when I run the grep -R e100 .
I get no findings. What does that mean?

Jason
can you post the output of theses two commands please

Code: Select all

cat /etc/modules.autoload.d/kernel-2.4
and

Code: Select all

cat /etc/modules.autoload.d/kernel-2.6
(you can ignore all like that start with a "#" symbol)

Ok I know nothing about genkernel, i think it is the devil doings, so you may have to read the man page on that.

to compile a kernel manually, i would suggest reading the gentoo handbook as that will give the instructions better than i can, if you don't understand it post back here what you don't get and i will try and explain it.

Code: Select all

#include "forums.h"
     int main() {while (bollox) postcount++;}
Top
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

  • Quote

Post by sardiskan » Mon Dec 20, 2004 4:28 pm

The first command has this output

Code: Select all

# /etc/modules.autoload.d/kernel-2.4:  kernel modules to load when system boots.
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/modules.autoload.d/kernel-2.4,v 1.1 2003/03/09 09:06:23 azarah Exp $
#
The second command has this output:

Code: Select all

# /etc/modules.autoload.d/kernel-2.6:  kernel modules to load when system boots.
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/modules.autoload.d/kernel-2.6,v 1.1 2003/07/16 18:13:45 azarah Exp $
It actually looks like every line is commented out. Let me know what else you need.
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
nyteryda
Guru
Guru
User avatar
Posts: 337
Joined: Sat Jul 26, 2003 9:03 pm
Location: London

  • Quote

Post by nyteryda » Mon Dec 20, 2004 5:05 pm

sardiskan wrote:The first command has this output

Code: Select all

# /etc/modules.autoload.d/kernel-2.4:  kernel modules to load when system boots.
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/modules.autoload.d/kernel-2.4,v 1.1 2003/03/09 09:06:23 azarah Exp $
#
The second command has this output:

Code: Select all

# /etc/modules.autoload.d/kernel-2.6:  kernel modules to load when system boots.
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/modules.autoload.d/kernel-2.6,v 1.1 2003/07/16 18:13:45 azarah Exp $
It actually looks like every line is commented out. Let me know what else you need.
Ok then that means it is not being loaded by the /etc/modules.autoload.d/kernel* files.

What kernel version are you useing ?
What is your network card ?

what is the output of

Code: Select all

emerge -vp e100
Can you say where in the boot up process the error is comming up ?

Code: Select all

#include "forums.h"
     int main() {while (bollox) postcount++;}
Top
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

  • Quote

Post by sardiskan » Mon Dec 20, 2004 5:18 pm

The output of the command you gave is:

Code: Select all

router root # emerge -vp e100

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] net-misc/e100-2.3.40  0 kB

Total size of downloads: 0 kB
I am running kernel version 2.4.26 and my network card is an Intel S82557 PCI card. The error comes up towards the end of the bootup right after is says "coldplugging pci devices" but before "coldplugging pnp devices"

Jason
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
Dana Merrick
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 84
Joined: Sat Jul 24, 2004 2:44 am
Location: Trinity College
Contact:
Contact Dana Merrick
Website

  • Quote

Post by Dana Merrick » Mon Dec 20, 2004 8:39 pm

I got this error when I used Genkernel.
Are you using genkernel? Maybe you should try compiling your own...
I'm proud of my life, and the things that I have done,
proud of myself, and the loner I've become.
you're free to whine; it will not get you far,
I do just fine, my car and my guitar.
-Say Anything
Top
nyteryda
Guru
Guru
User avatar
Posts: 337
Joined: Sat Jul 26, 2003 9:03 pm
Location: London

  • Quote

Post by nyteryda » Mon Dec 20, 2004 10:07 pm

sardiskan wrote:The output of the command you gave is:

Code: Select all

router root # emerge -vp e100

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] net-misc/e100-2.3.40  0 kB

Total size of downloads: 0 kB
I am running kernel version 2.4.26 and my network card is an Intel S82557 PCI card. The error comes up towards the end of the bootup right after is says "coldplugging pci devices" but before "coldplugging pnp devices"

Jason
try,

Code: Select all

emerge --unmerge e100
(if after you reboot, you don't have any network access then you will have to remerge it with command "emerge e100")

Code: Select all

#include "forums.h"
     int main() {while (bollox) postcount++;}
Top
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

  • Quote

Post by sardiskan » Tue Dec 21, 2004 1:00 am

I actually emerged it AFTER I was getting the error in hopes that it would solve the problem. I'll unmerge it, but I"ll still have network access but the message will not go away.

Jason
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
nyteryda
Guru
Guru
User avatar
Posts: 337
Joined: Sat Jul 26, 2003 9:03 pm
Location: London

  • Quote

Post by nyteryda » Tue Dec 21, 2004 2:39 pm

I suspect this is a genkernel thing, so i were you i would compile my own, as aragostaragazzo suggested.

Code: Select all

#include "forums.h"
     int main() {while (bollox) postcount++;}
Top
sardiskan
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 115
Joined: Thu Oct 07, 2004 4:30 pm
Location: Montgomery

  • Quote

Post by sardiskan » Tue Dec 21, 2004 4:52 pm

Ok, I'll try and compile my own.
Unless a grain of wheat falls to the ground and dies, it remains only a single seed.
Top
Dana Merrick
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 84
Joined: Sat Jul 24, 2004 2:44 am
Location: Trinity College
Contact:
Contact Dana Merrick
Website

  • Quote

Post by Dana Merrick » Tue Dec 21, 2004 5:02 pm

sardiskan wrote:Ok, I'll try and compile my own.
Don't fear, it's really not that difficult.
I'm proud of my life, and the things that I have done,
proud of myself, and the loner I've become.
you're free to whine; it will not get you far,
I do just fine, my car and my guitar.
-Say Anything
Top
dendenners
n00b
n00b
User avatar
Posts: 28
Joined: Fri Oct 17, 2003 1:38 pm
Location: Inside a shirt

  • Quote

Post by dendenners » Tue Dec 21, 2004 9:31 pm

You could always ignore the problem if its not causing any problems 8O
Top
Dana Merrick
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 84
Joined: Sat Jul 24, 2004 2:44 am
Location: Trinity College
Contact:
Contact Dana Merrick
Website

  • Quote

Post by Dana Merrick » Thu Dec 23, 2004 2:12 am

dendenners wrote:You could always ignore the problem if its not causing any problems 8O
Yeah, but, when youre booting up Linux to impress all your friends, you can't have error messages flood the pretty boot-process...
I'm proud of my life, and the things that I have done,
proud of myself, and the loner I've become.
you're free to whine; it will not get you far,
I do just fine, my car and my guitar.
-Say Anything
Top
Post Reply

17 posts • Page 1 of 1

Return to “Installing Gentoo”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic