LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > *BSD
User Name
Password
*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc.

Notices


Reply
  Search this Thread
Old 02-13-2008, 07:25 AM   #1
OBcecado
LQ Newbie
 
Registered: Mar 2006
Distribution: *BSD
Posts: 12

Rep: Reputation: 0
Wifi card not recognised properly on freebsd 6.2


Hello.
I have googled but couldn't find any appropriate answer, maybe you could shred some light on this.

The wifi card is edimax ew-7128, which is supported according to this:
http://www.freebsd.org/cgi/man.cgi?q...SE&format=html

pciconf -lv:
Code:
agp0@pci0:0:0:  class=0x060000 card=0x00000000 chip=0x07301039 rev=0x02 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS 730 Host-to-PCI Bridge'
    class    = bridge
    subclass = HOST-PCI
atapci0@pci0:0:1:       class=0x010180 card=0x55131039 chip=0x55131039 rev=0xd0 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS5513 EIDE Controller (A,B step)'
    class    = mass storage
    subclass = ATA
isab0@pci0:1:0: class=0x060100 card=0x00000000 chip=0x00081039 rev=0x00 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS PCI to ISA Bridge (LPC Bridge)'
    class    = bridge
    subclass = PCI-ISA
sis0@pci0:1:1:  class=0x020000 card=0x09001039 chip=0x09001039 rev=0x82 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS900 Fast Ethernet/Home Networking Ctrlr'
    class    = network
    subclass = ethernet
ohci0@pci0:1:2: class=0x0c0310 card=0x70011039 chip=0x70011039 rev=0x07 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS5597/8 Universal Serial Bus Controller'
    class    = serial bus
    subclass = USB
ohci1@pci0:1:3: class=0x0c0310 card=0x70001039 chip=0x70011039 rev=0x07 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS5597/8 Universal Serial Bus Controller'
    class    = serial bus
    subclass = USB
none0@pci0:1:4: class=0x040100 card=0x70181039 chip=0x70181039 rev=0x02 hdr=0x00
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS7018 PCI Audio Accelerator'
    class    = multimedia
    subclass = audio
pcib1@pci0:2:0: class=0x060400 card=0x00000000 chip=0x00011039 rev=0x00 hdr=0x01
    vendor   = 'Silicon Integrated Systems (SiS)'
    device   = 'SiS 630 Virtual PCI-to-PCI bridge (AGP)'
    class    = bridge
    subclass = PCI-PCI
none1@pci0:9:0: class=0x028000 card=0x25611814 chip=0x03011814 rev=0x00 hdr=0x00
    vendor   = 'Ralink Technology, Corp'
    class    = network
ed0@pci0:11:0:  class=0x020000 card=0x0026a0a0 chip=0x802910ec rev=0x00 hdr=0x00
    vendor   = 'Realtek Semiconductor'
    device   = 'RTL8029 NE2000 compatible Ethernet'
    class    = network
    subclass = ethernet
none2@pci1:0:0: class=0x030000 card=0x00000000 chip=0x011010de rev=0xb2 hdr=0x00
    vendor   = 'NVIDIA Corporation'
    device   = 'NV11 GeForce2 MX / MX 400'
    class    = display
    subclass = VGA

I also pasted the dmesg boot message here: http://pastebin.ca/902375
as it outputs some errors, i was hoping this would be the main issue.

Thanks in advance.

Last edited by OBcecado; 02-13-2008 at 07:32 AM. Reason: added pciconf -lv output
 
Old 02-13-2008, 11:37 AM   #2
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
Code:
none1@pci0:9:0: class=0x028000 card=0x25611814 chip=0x03011814 rev=0x00 hdr=0x00
    vendor   = 'Ralink Technology, Corp'
    class    = network
You card is recognised as having a Ralink chipset and these tend to be well supported in Linux and FreeBSD. Try running "pciconf -lvv" and see if the exact chipset is printed out (mine is listed as 2573 Ralink on Linux, meaning I can use the rt2573 driver or rt73). Once you know the chipset, you can then use this info when looking for the appropriate driver.
 
Old 02-13-2008, 12:47 PM   #3
OBcecado
LQ Newbie
 
Registered: Mar 2006
Distribution: *BSD
Posts: 12

Original Poster
Rep: Reputation: 0
Hi, thanks for the fast reply.
The output from lspci -vv is:
Code:
none1@pci0:9:0: class=0x028000 card=0x25611814 chip=0x03011814 rev=0x00 hdr=0x00
    vendor   = 'Ralink Technology, Corp'
    class    = network
Doesn't bring in any new information, any other hint ?
 
Old 02-13-2008, 06:49 PM   #4
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
I think your card is based on the ralink 2561 chipset. Earlier on, I missed card=0x25611814 which gives a clue about the card type. The card is recognised so to load the right driver as a module, edit /boot/loader.conf and add
Code:
if_ral_load="YES"
You will need to reboot your computer. To load the driver immediately without rebooting, you can do "kldload if_ral".
 
Old 02-14-2008, 06:24 AM   #5
OBcecado
LQ Newbie
 
Registered: Mar 2006
Distribution: *BSD
Posts: 12

Original Poster
Rep: Reputation: 0
Hi once more.

Code:
# kldload if_ral
kldload: can't load if_ral: File exists
Any other tip, please ?
 
Old 02-14-2008, 09:49 AM   #6
anomie
Senior Member
 
Registered: Nov 2004
Location: Texas
Distribution: RHEL, Scientific Linux, Debian, Fedora
Posts: 3,935
Blog Entries: 5

Rep: Reputation: Disabled
There's an entire handbook chapter on wireless networking. Substitute if_ath from the reading with your if_ral.

Also see the manpages for ral(4) for information/limitations about that driver. As far as I can tell there is only WEP (not WPA) support. (I'm looking on a FBSD 6.3 box.)
 
  


Reply

Tags
freebsd, wifi



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
WiFi Only Connects Using Shell, GUI Fails on Fiesty 7.04 / Dell 1350 WiFi Card pr0gr4mm3r Linux - Wireless Networking 1 07-10-2007 08:43 PM
Card recognised but how do i connect? crw128 Linux - Wireless Networking 1 01-17-2007 01:03 AM
Best WiFi PCI (or else) card in general for Linux and WiFi network experimentation? ICEMANII Linux - Wireless Networking 2 09-21-2006 04:50 PM
Broadcom card not recognised? scompa Slackware 4 05-19-2006 05:06 PM
Nvidia card not recognised? plonking SUSE / openSUSE 2 02-05-2005 04:11 PM

LinuxQuestions.org > Forums > Other *NIX Forums > *BSD

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