system("mount -o ro $dev /mnt");
if (-f $firmware_tarball) {
system("tar -C /lib/firmware/ -xf $firmware_tarball");
- system('rmmod brcmfmac');
- system('rmmod brcmutil');
- sleep(1);
- system('modprobe brcmfmac');
- sleep(1);
- system('rmmod brcmfmac');
- sleep(1);
+ unlink('/etc/modprobe.d/blacklist.conf');
system('modprobe brcmfmac');
}
system('umount /mnt');
-
}