RT3070网卡移植到mini2440下,查找不到网络是什么原因

RT3070网卡移植到mini2440上,查找不到网络是什么原因
我的步骤是:
[root@Qstech/]#insmod rt3070sta.ko

插入USB网卡后:
usb 1-1: new full speed USB device using s3c2410-ohci and address 5
usb 1-1: New USB device found, idVendor=148f, idProduct=3070
usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-1: Product: 802.11 n WLAN
usb 1-1: Manufacturer: Ralink
usb 1-1: SerialNumber: 1.0
usb 1-1: configuration #1 chosen from 1 choice
=== pAd = c4f81000, size = 508592 ===
<-- RTMPAllocTxRxRingMemory, Status=0
<-- RTMPAllocAdapterBlock, Status=0



[root@Qstech/]#ifconfig ra0 192.168.0.230 netmask 255.255.255.0

(Efuse for 3062/3562/3572) Size=0x2d [2d0-2fc] 
RTMP_TimerListAdd: add timer obj c4bc38a0!
RTMP_TimerListAdd: add timer obj c4bc38cc!
RTMP_TimerListAdd: add timer obj c4bc38f8!
RTMP_TimerListAdd: add timer obj c4bc3874!
RTMP_TimerListAdd: add timer obj c4bc37f0!
RTMP_TimerListAdd: add timer obj c4bc381c!
RTMP_TimerListAdd: add timer obj c4b8e434!
RTMP_TimerListAdd: add timer obj c4b7dc4c!
RTMP_TimerListAdd: add timer obj c4b7dc80!
RTMP_TimerListAdd: add timer obj c4b8e4cc!
RTMP_TimerListAdd: add timer obj c4b8e3dc!
RTMP_TimerListAdd: add timer obj c4b8e49c!
-->RTUSBVenderReset
<--RTUSBVenderReset
Key1Str is Invalid key length(0) or Type(0)
Key2Str is Invalid key length(0) or Type(0)
Key3Str is Invalid key length(0) or Type(0)
Key4Str is Invalid key length(0) or Type(0)
1. Phy Mode = 5
2. Phy Mode = 5
NVM is Efuse and its size =2d[2d0-2fc] 
phy mode> Error! The chip does not support 5G band 5!
RTMPSetPhyMode: channel is out of range, use first channel=1 
(Efuse for 3062/3562/3572) Size=0x2d [2d0-2fc] 
3. Phy Mode = 9
AntCfgInit: primary/secondary ant 0/1
MCS Set = ff 00 00 00 01
<==== rt28xx_init, Status=0
0x1300 = 00064300

[root@Qstech/]#

[root@Qstech/]#iwconfig

lo no wireless extensions.

eth0 no wireless extensions.

ra0 Ralink STA ESSID:"11n-AP" Nickname:"RT2870STA"
  Mode:Auto Frequency=2.412 GHz Access Point: Not-Associated  
  Bit Rate:1 Mb/s  
  RTS thr:off Fragment thr:off
  Encryption key:off
  Link Quality=10/100 Signal level:0 dBm Noise level:0 dBm
  Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
  Tx excessive retries:0 Invalid misc:0 Missed beacon:0


[root@Qstech/]#iwlist ra0 scan
ra0 No scan results

我的内核是linux2.6.32.2,我试了两个相同的网卡模块,都找不到网络,想想应该不是硬件问题吧,我原来移植过RT73的网卡是可以的。以为有冲突,把内核中RT73部分去掉了,但还是不行,请问高手这大概是什么原因引起的。

------解决方案--------------------
NVM is Efuse and its size =2d[2d0-2fc]
phy mode> Error! The chip does not support 5G band 5!

感觉像是网络配置不正确
------解决方案--------------------
看这些打印信息是驱动加载跟初始化都成功了的。。是不是中间哪个步骤没操作好?
------解决方案--------------------
我觉得可以能是你没有把无线网卡启用吧!把这个命令改成
#ifconfig ra0 192.168.0.230 netmask 255.255.255.0

ifconfig ra0 192.168.0.230 netmask 255.255.255.0 up

这样启动了无线网卡才能搜索无线网络。
------解决方案--------------------
探讨

我觉得可以能是你没有把无线网卡启用吧!把这个命令改成
#ifconfig ra0 192.168.0.230 netmask 255.255.255.0

ifconfig ra0 192.168.0.230 netmask 255.255.255.0 up

这样启动了无线网卡才能搜索无线网络。