mirror of
https://github.com/GiovanniGrieco/bcm43602-linux-workaround.git
synced 2024-11-14 13:25:25 +00:00
13 lines
224 B
Bash
13 lines
224 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
if [ "$EUID" -ne 0 ]; then
|
||
|
echo "Please give me the root power!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cp broadcomctl /usr/local/bin/
|
||
|
cp broadcom.service /etc/systemd/system/
|
||
|
|
||
|
systemctl daemon-reload
|
||
|
systemctl enable broadcom
|