Primi fix su macchina Xubuntu 18.04. Il fix del wireless dovrebbe funzionare anche su altre piattaforme.

This commit is contained in:
SmartMatic User 2018-04-23 22:59:00 +02:00
commit 7fbe9838ac
2 changed files with 23 additions and 0 deletions

12
README.md Normal file
View 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
View 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
}
$@