The Following 4 Users Say Thank You to Manatus For This Useful Post: | ||
|
2018-07-30
, 10:17
|
Posts: 2 |
Thanked: 8 times |
Joined on Jul 2018
|
#42
|
|
2018-07-30
, 15:12
|
|
Moderator |
Posts: 199 |
Thanked: 264 times |
Joined on May 2009
@ turku, finland
|
#43
|
The Following User Says Thank You to edgar2 For This Useful Post: | ||
|
2018-07-30
, 18:02
|
|
Moderator |
Posts: 199 |
Thanked: 264 times |
Joined on May 2009
@ turku, finland
|
#44
|
Has anyone re-build Steph Gosling's image and is willing to write a howto like https://codedream.me/2018/02/02/how-...ung-galaxy-s7/ or even a script like https://github.com/CancroSailors/sai...d-environment?
I tried for several days now, but it seems like I don't have the required knowledge to figure out how things should fit together
The Following User Says Thank You to edgar2 For This Useful Post: | ||
|
2018-07-31
, 01:34
|
Posts: 202 |
Thanked: 385 times |
Joined on Jul 2018
|
#46
|
The Following User Says Thank You to levone1 For This Useful Post: | ||
|
2018-07-31
, 03:54
|
Posts: 986 |
Thanked: 1,526 times |
Joined on Jul 2010
|
#47
|
what is the value of rebuilding, rather than flashing the available image?
The Following User Says Thank You to wolke For This Useful Post: | ||
|
2018-07-31
, 16:22
|
|
Moderator |
Posts: 199 |
Thanked: 264 times |
Joined on May 2009
@ turku, finland
|
#48
|
well, for one, mouhijoki right now instead of kymijoki
for another, if someone posts enough information for someone with reasonable technical skills but limited specific sfos-building-knowledge can build from src, then we wont have to wait for steph to rebuild it in future, either
The Following 2 Users Say Thank You to edgar2 For This Useful Post: | ||
|
2018-07-31
, 17:34
|
Posts: 986 |
Thanked: 1,526 times |
Joined on Jul 2010
|
#49
|
#!/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);
|
2018-08-02
, 21:24
|
Posts: 2 |
Thanked: 8 times |
Joined on Jul 2018
|
#50
|
All keyboards (lockscreen, virtual keyboard and fingerterm) seem to be tied to values PressWeak and ReleaseWeak, so you cannot tune them separately of each other. At least not from this file.
I'm not sure which service could be restarted instead of reboot. Mce did not seem to affect it and ngfd.service seems to be inactive.
Last edited by Manatus; 2018-03-25 at 08:44.