mirror of
https://github.com/GiovanniGrieco/bcm43602-linux-workaround.git
synced 2024-11-14 21:35:25 +00:00
32 lines
696 B
Markdown
32 lines
696 B
Markdown
|
# Broadcom BCM43602 workaround
|
||
|
|
||
|
This is a quick and dirty trick to take control of this misbehaving network
|
||
|
card.
|
||
|
|
||
|
Scripts are tested on Fedora 29. If you have any problems, please file an issue
|
||
|
here or via email at _corsaro [AT] fedoraproject [DOT] com_.
|
||
|
|
||
|
Note that I did not want to package this workaround because it's, well, _dirty_.
|
||
|
It does not fix the problem, just makes things bearable.
|
||
|
|
||
|
## Install
|
||
|
```
|
||
|
# ./install.sh
|
||
|
```
|
||
|
|
||
|
## Control the service
|
||
|
```
|
||
|
# systemctl start broadcom
|
||
|
# systemctl stop broadcom
|
||
|
# systemctl restart broadcom
|
||
|
```
|
||
|
|
||
|
## Uninstall
|
||
|
```
|
||
|
# systemctl stop broadcom
|
||
|
# systemctl disable broadcom
|
||
|
# rm /usr/local/bin/broadcomctl
|
||
|
# rm /etc/systemd/system/broadcom.service
|
||
|
```
|
||
|
|