Primi fix su macchina Xubuntu 18.04. Il fix del wireless dovrebbe funzionare anche su altre piattaforme.
This commit is contained in:
commit
7fbe9838ac
2 changed files with 23 additions and 0 deletions
12
README.md
Normal file
12
README.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Materiale per le Voting Machine SmartMatic #
|
||||
|
||||
## Fix per Ubuntu ##
|
||||
|
||||
Eseguire lo script come segue:
|
||||
|
||||
sudo bash fixes.sh <oggetto>
|
||||
|
||||
Dove `<oggetto>` può essere uno dei seguenti fix:
|
||||
|
||||
* `wireless`: scarica il file mancante che istruisce il firmware a caricarsi,
|
||||
quindi scarica e ricarica il modulo del kernel;
|
11
fixes.sh
Normal file
11
fixes.sh
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
# vim:sts=2:sw=2
|
||||
|
||||
# Wireless
|
||||
function wireless() {
|
||||
wget http://jwrdegoede.danny.cz/brcm-firmware/brcmfmac43430-sdio.txt.ap6210.intel -O /lib/firmware/brcm/brcmfmac43430-sdio.txt
|
||||
modprobe -r brcmfmac
|
||||
modprobe brcmfmac
|
||||
}
|
||||
|
||||
$@
|
Loading…
Add table
Add a link
Reference in a new issue