mirror of
https://github.com/GiovanniGrieco/bcm43602-linux-workaround.git
synced 2024-11-14 05:25:24 +00:00
12 lines
224 B
Bash
12 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
|