LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-18-2003, 03:52 PM   #1
MrSmee
Member
 
Registered: Sep 2003
Location: Plano, TX
Distribution: Slack
Posts: 84

Rep: Reputation: 15
ADM8211 Help, Please!!!


OK...... I've finally gotten the latest kernel up and running, on my machine, now I think I've got better than average odds of getting my iblitzz BW1605 card to work ( I know, it's cheap, but hey... so am I) So, I downloaded the installer from their website, and whaddya know, it won't install unless you're running RH 7.3 or 8.0 which is great, but I'm running mandy 9.1 on this comp. So.... downloaded and compiled the sources for the module 8211.o : when I tried to insmod it, I get this
8211.o: unresolved symbol cpu_raise_softirq_Rd01f3ee8
8211.o: unresolved symbol alloc_skb_R37701013
8211.o: unresolved symbol __kfree_skb_R9f577077
8211.o: unresolved symbol __out_of_line_bug_R8b0fd3c5
8211.o: unresolved symbol __const_udelay_Reae3dfd6
8211.o: unresolved symbol kmalloc_R93d4cfe6
8211.o: unresolved symbol skb_over_panic_R96dfe3a9
8211.o: unresolved symbol pci_read_config_byte_R90c21225
8211.o: unresolved symbol __generic_copy_to_user_Rd523fdd3
8211.o: unresolved symbol __request_region_R1a1a4f09
8211.o: unresolved symbol pci_drv_unregister
8211.o: unresolved symbol get_random_bytes_R79aa04a2
8211.o: unresolved symbol netif_rx_R61b6a4ab
8211.o: unresolved symbol ioport_resource_R865ebccd
8211.o: unresolved symbol eth_type_trans_R8099d0b4
8211.o: unresolved symbol add_timer_Ra19eacf8
8211.o: unresolved symbol unregister_netdev_R5766c6b2
8211.o: unresolved symbol jiffies_R0da02d67
8211.o: unresolved symbol init_etherdev_R11e5929d
8211.o: unresolved symbol free_irq_Rf20dabd8
8211.o: unresolved symbol del_timer_Rfc62f16d
8211.o: unresolved symbol dev_close_Ra406195e
8211.o: unresolved symbol kfree_R037a0cba
8211.o: unresolved symbol __release_region_Rd49501d4
8211.o: unresolved symbol printk_R1b7d4074
8211.o: unresolved symbol iounmap_R5fb196d4
8211.o: unresolved symbol request_irq_R0c60f2e0
8211.o: unresolved symbol softnet_data_R21a8786f
8211.o: unresolved symbol pci_drv_register
8211.o:
Hint: You are trying to load a module without a GPL compatible license
and it has unresolved symbols. Contact the module supplier for
assistance, only they can help you.


I've had shorter warnings from my bank when I bounce checks!!
I know it's something I've done wrong, I just dunno what..... somebody help me. PLEASE!!
thanks
Smee
 
Old 09-18-2003, 11:22 PM   #2
tonyg_2
LQ Newbie
 
Registered: Sep 2003
Posts: 2

Rep: Reputation: 0
I don't know if you tried or if it will help, but the Makefile on the ADM8211 links the kernel directory as "/usr/src/linux-2.4". If you change the first or second line to "/usr/src/linux" or whatever your kernel source dir is, you shouldn't have any problems (methinks). If I remember correctly, the driver compiles without complaining even if the kernel source dir is wrong.

As for me, I have successfully compiled my driver, and am able to insmod it no problem. dmesg happily reports my ADM8211 registered as "eth0: ADMtek Wireless rev 32 at 0x4800". When I ifconfig my eth0, the light blinks, and dmesg happily reports "set channel 1" through "set channel 11". but when I dhcpcd eth0, it times out. I am able to ping the interface when I force an IP on it, but it isn't connecting to anything (I'm just forcing an IP).

iwconfig and iwpriv claim that there are no wireless extentions and no ioctls on eth0.

What am I doing wrong? Does anyone have any ideas?

Thanx a bunch,
Tony G.
 
Old 09-20-2003, 12:09 AM   #3
moosport
Member
 
Registered: Sep 2003
Posts: 50

Rep: Reputation: 15
8211.o problems

I got one of the new SMC 2635W card and spend close to 3 nights to get it working..

You have to force the module to load but it still issue warning due to the lack of license.

insmod -f 8211.o

Next you have type "ifconfig", you should see your MAC address

Next step is to configure your machine's IP address using

ifconfig eth? [your machine IP address]

Add your router to the firewall using

route add default gw [router IP address]
 
Old 10-08-2003, 07:08 AM   #4
nikoon
LQ Newbie
 
Registered: Oct 2003
Distribution: mandrake
Posts: 8

Rep: Reputation: 0
Hello i also have lots of unresolved symbols in my module

but only detected by depmod -ae.....

Is it also you case????
Please Help
 
Old 10-12-2003, 05:25 PM   #5
izer
LQ Newbie
 
Registered: Oct 2003
Location: San Diego, CA
Posts: 1

Rep: Reputation: 0
I am having some of the same problems you guys are seeing with my Belkin P56768-A v.2101 (ADMtek chipset) wireless card.

When I run "depmod -e", I get a bunch of unresolved symbols spat back at me. Also, during boot time, I get an "**** unresolved symbols in ...../8211.o" error.

However, when I "insmod 8211.o" manually, I don't get any complaints. Everything appears to be working fine. Neither iwconfig nor ifconfig complain when I configure wireless and networking parameters. But no dice pinging anything.

I did a bit of digging and found that my kernel (default RH9 kernel: 2.4.20-8) was built with "CONFIG_MODVERSIONS=y". This means that kernel symbols are suffixed with a 'version' hash. So instead of a kernel symbol being called e.g. "jiffies" (like my 8211.o module would expect), it is called "jiffies_R0da02d67". Hence the unresolved symbols. I can recommend http://www.tldp.org/HOWTO/Module-HOWTO/ for anyone who's interested in reading up on how modules work. Also grep through /proc/ksyms for some insight.

I don't know if there is anything I can do when compiling 8211.o to get it to look for the version-hash-suffixed symbols instead of the plain-old symbols. The only thing I can think of is recompiling my kernel with CONFIG_MODVERSIONS set to "n"... but that will take 500 years on my P1-150MHz machine!

If anyone comes up with a solution to this problem, please let me know.
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
adm8211 installed but nothing happens? mepasha Linux - Wireless Networking 3 04-14-2005 01:41 AM
ADM8211 and Fedora carlolin Linux - Wireless Networking 23 09-18-2004 06:13 PM
adm8211 problems (again) impic Linux - Wireless Networking 2 03-20-2004 05:25 PM
ADM8211 with Slackware 9 luclima Linux - Wireless Networking 2 01-14-2004 05:56 PM
ADM8211 and Redhat 9 MrSmee Linux - Networking 1 11-17-2003 11:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 02:39 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