PDA

View Full Version : 3com 3c590 / Kernel 2.6.8.1


traveler
January 27th, 2005, 12:18 PM
Hi Community,

now after searching the web I could not find a successfull solution to my problem:
I've istalled Ubuntu Warty successfully on my Laptop (Thinkpad x20). After installation, where several updates were installed from the web (?) I booted into the GUI. Unfortunally I have no working Network now.
I suspect Kernel 2.6.8 to not support the 3com card in the Notebook. Why? Well, when I issue
lsmod I can see, that the 3c59x is loaded but not used. Another "hint" for the Kernel was, that after rebooting during system loadup I get a handfull of messages stating:
localhost kernel: eth0: command 0x5800 did not complete! Status=0xffff

Now I know that the Laptop is supportet by the complete Kernel 2.2.x and 2.4.x series since I use Slackware on that Laptop too.

Now my question is: is there anyone who could tell me how to get close to the problem? Or better: solve it :)

Take care
-traveler (from freezing cold Germany *shivvvver*)


http://lists.debian.org/debian-user/2004/09/msg03615.html
Seems to be a known (reported), but yet unsolved problem...

traveler
January 28th, 2005, 08:28 AM
Hi Community,

now after searching the web I could not find a successfull solution to my problem:
I've istalled Ubuntu Warty successfully on my Laptop (Thinkpad x20). After installation, where several updates were installed from the web (?) I booted into the GUI. Unfortunally I have no working Network now.
I suspect Kernel 2.6.8 to not support the 3com card in the Notebook. Why? Well, when I issue
lsmod I can see, that the 3c59x is loaded but not used. Another "hint" for the Kernel was, that after rebooting during system loadup I get a handfull of messages stating:
localhost kernel: eth0: command 0x5800 did not complete! Status=0xffff

Now I know that the Laptop is supportet by the complete Kernel 2.2.x and 2.4.x series since I use Slackware on that Laptop too.

Now my question is: is there anyone who could tell me how to get close to the problem? Or better: solve it :)

Take care
-traveler (from freezing cold Germany *shivvvver*)


http://lists.debian.org/debian-user/2004/09/msg03615.html
Seems to be a known (reported), but yet unsolved problem...



OK. I solved it myself:
Version a: recompile the Kernel and EXCLUDE acpi support.
Version b: get the latest mm-patch, patch the Kernel, recompile it, be done.
Both variantes work fine - I used Version a because my Notebook doesn't support acpi at all :->

Cet la.

Regards
-traveler

class_A
February 1st, 2005, 04:35 AM
OK. I solved it myself:
Version a: recompile the Kernel and EXCLUDE acpi support.
Version b: get the latest mm-patch, patch the Kernel, recompile it, be done.
Both variantes work fine - I used Version a because my Notebook doesn't support acpi at all :->

Cet la.

Regards
-travelerWould you be able to provide a link to your kernel for me please? I'm suffering the same problems, but I'm very much a n00b with kernel compiling, so a drop in replacement would be ideal :)

Cheers!
Alex

traveler
February 2nd, 2005, 08:08 AM
Cheers Alex,

now I found an easyer way to get rid of that "naughty" and buggy ACPI support:
boot with the following flags:
linux acpi=off
and implement that also into the grub-configuration:

## ## End Default Options ##

title Ubuntu, kernel 2.6.8.1-4-386
root (hd0,0)
kernel /boot/vmlinuz-2.6.8.1-4-386 root=/dev/hda1 ro acpi=off quiet splash
initrd /boot/initrd.img-2.6.8.1-4-386
savedefault
boot

That should do the job!

If you are realy interested in the ACPI-off Kernel I can only provide Kernel 2.6.10 - i486 plus all modules packaged nicly for Slackware (TM) Linux :)

Take care, and the best of luck
-traveler

Grub-HowTo:
http://www.linuxorbit.com/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid=539&page=1

class_A
February 6th, 2005, 09:56 AM
traveler,

Many thanks! acpi=off was all I needed :D

Alex