802.11 linux STA driver安裝問題(已解決) - Linux

Table of Contents

我在http://www.broadcom.com/support/802.11/linux_sta.php

下載網卡的驅動程式,請問各位下載完後要怎麼在ubuntu安裝他?

我剛用linux系統,無線網路一直抓不到,來是各位有其他好的方

法可以幫助我,感謝。

抱歉沒說清楚,我問題出在make後會出現

make: *** /lib/modules/"release"/build: No such file or directory. Stop

我也有照他說的執行
# apt-get install build-essential linux-headers-generic
# apt-get build-dep linux

但還是出現這錯誤,不知道有沒有人有遇過這種情況,或是知道問題出在哪。

我有用ls看過,還是沒有他要的目錄。





搞定了,找不到目錄的問題要用

sudo apt-get install linux-headers-$(uname -r) 來解決

然後我是用ubuntu12.10,在make的時候會出現找不到 asm/system.h

所以要到 src/wl/sys/wl_linux.c 把 wl_linux.c 這c檔裡面的

#include <asm/system.h> 刪除掉,然後再搜尋 .ndo_set_multicast_list

會找到 .ndo_set_multicast_list = wl_set_multicast_list

把它改成 .ndo_set_rx_mode = wl_set_multicast_list

這樣就可以成功make了。(這個broadcom的說明檔沒提到)

--

All Comments

Delia avatarDelia2013-03-15
人家有個README的文件有先看過了嗎...??
Oscar avatarOscar2013-03-17
header generic應該會帶入headers-(uname)吧?