zypper install --force sensorfw-qt5=0.9.4-1.32.1 sensorfw-qt5-configs=0.9.4-1.32.1 zypper addlock sensorfw-qt5
| The Following User Says Thank You to thetao For This Useful Post: | ||
| The Following User Says Thank You to wolke For This Useful Post: | ||
| The Following 4 Users Say Thank You to r0kk3rz For This Useful Post: | ||
| The Following 2 Users Say Thank You to wolke For This Useful Post: | ||
If you see any FM radio functionality, please let us know! It's the one feature I will miss and can't work around.
#!/usr/bin/perl
use strict;
use warnings;
sub main(@){
system "echo 2 > /sys/module/bcmdhd/parameters/op_mode";
print "turn off tethering, turn off wifi, turn on tethering\n";
print "ready?";
<STDIN>;
system "ip link set dev wlan0 master tether";
print "tethering should now work\n";
print "disable tethering? [Y/n] ";
my $ok = <STDIN>;
if($ok !~ /n/i){
system "echo 1 > /sys/module/bcmdhd/parameters/op_mode";
print "turn off tethering, turn off wifi, turn on wifi\n";
print "also, have fun entering the wifi password\n";
}else{
print "ok, leaving tethering on. wifi wont work. rerun this to fix\n";
}
print "exiting, ok? (you might want to just close the terminal) ";
<STDIN>;
}
&main(@ARGV);