Installing and enabling multiple modules from backports -


i modifying wlan card driver modules linux backports. currently, i've modified ath9k_htc , iwlwifi.

apparently, remember both dirvers have been working when have not modified dirvers @ all. can't make both drivers work simultaneously after modifying drivers.

here's problem have:

1: install ath9k_htc:

make defconfig-ath9k make sudo make install sudo reboot lsmod 

there no iwlwifi listed

2: install iwlwifi:

make defconfig-iwlwifi make sudo make install sudo reboot lsmod 

there no ath9k* listed

3: install both (i not sure if i've done on right way):

make defconfig-ath9k defconfig-iwlwifi make sudo make install sudo reboot lsmod 

then, 1 of 2 drivers listed in lsmod.

suppose ath9k_htc working, iwlwifi throws such messages in dmesg:

[   22.563631] iwldvm: disagrees version of symbol ieee80211_start_tx_ba_cb_irqsafe [   22.563637] iwldvm: unknown symbol ieee80211_start_tx_ba_cb_irqsafe (err -22) [   22.563645] iwldvm: disagrees version of symbol ieee80211_report_wowlan_wakeup [   22.563647] iwldvm: unknown symbol ieee80211_report_wowlan_wakeup (err -22) [   22.563657] iwldvm: disagrees version of symbol ieee80211_chswitch_done [   22.563660] iwldvm: unknown symbol ieee80211_chswitch_done (err -22) [   22.563718] iwldvm: disagrees version of symbol ieee80211_alloc_hw [   22.563720] iwldvm: unknown symbol ieee80211_alloc_hw (err -22) [   22.563801] iwldvm: disagrees version of symbol ieee80211_find_sta [   22.563803] iwldvm: unknown symbol ieee80211_find_sta (err -22) [   22.563809] iwldvm: disagrees version of symbol ieee80211_iter_keys [   22.563811] iwldvm: unknown symbol ieee80211_iter_keys (err -22) [   22.563852] iwldvm: disagrees version of symbol ieee80211_enable_rssi_reports [   22.563854] iwldvm: unknown symbol ieee80211_enable_rssi_reports (err -22) [   22.563862] iwldvm: disagrees version of symbol ieee80211_stop_tx_ba_cb_irqsafe [   22.563865] iwldvm: unknown symbol ieee80211_stop_tx_ba_cb_irqsafe (err -22) [   22.563873] iwldvm: disagrees version of symbol ieee80211_ave_rssi [   22.563875] iwldvm: unknown symbol ieee80211_ave_rssi (err -22) [   22.563992] iwldvm: disagrees version of symbol ieee80211_resume_disconnect [   22.563995] iwldvm: unknown symbol ieee80211_resume_disconnect (err -22) [   22.564004] iwldvm: disagrees version of symbol ieee80211_beacon_get_tim [   22.564006] iwldvm: unknown symbol ieee80211_beacon_get_tim (err -22) [   22.564021] iwldvm: disagrees version of symbol ieee80211_request_smps [   22.564023] iwldvm: unknown symbol ieee80211_request_smps (err -22) [   22.564070] iwldvm: disagrees version of symbol ieee80211_disable_rssi_reports [   22.564072] iwldvm: unknown symbol ieee80211_disable_rssi_reports (err -22) 

vice versa ath9k_htc when iwlwifi working.

could give me adivce make both drivers work together?

i'm not sure if still relevant try

make defconfig-wifi make menuconfig // select drivers want (atheros, intel, etc.) make & make install 

you drivers selected installed.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -