|
2018-08-04
, 05:32
|
Posts: 12 |
Thanked: 40 times |
Joined on Jul 2018
@ Pennsylvaina, USA
|
#52
|
i have accidentally upgraded sensorfw-qt5 twice now, thus breaking gyro/accel/compass (and by extension, auto-rotation), and each time not noticing until much later that all my photos are portrait..
Missing Xperia-X hardware functionality:
Fingerprint sensor does not currently function.(fixed with SFOS 2.2.0.x)
Compass does not currently function.
The Following User Says Thank You to thetao For This Useful Post: | ||
|
2018-08-04
, 16:01
|
Posts: 440 |
Thanked: 2,256 times |
Joined on Jul 2014
|
#54
|
You have the compass working on the XC? Per the Xperia X bugs list at together.jolla.com, the compass isn't supposed to work:
https://together.jolla.com/question/...ilfish-x-have/
or do I misunderstand?
The Following 4 Users Say Thank You to r0kk3rz For This Useful Post: | ||
|
2018-08-04
, 18:07
|
Posts: 986 |
Thanked: 1,526 times |
Joined on Jul 2010
|
#55
|
The Following 2 Users Say Thank You to wolke For This Useful Post: | ||
|
2018-08-07
, 05:47
|
Posts: 12 |
Thanked: 40 times |
Joined on Jul 2018
@ Pennsylvaina, USA
|
#56
|
|
2018-08-23
, 06:06
|
|
Moderator |
Posts: 199 |
Thanked: 264 times |
Joined on May 2009
@ turku, finland
|
#57
|
|
2018-08-23
, 08:09
|
Posts: 7 |
Thanked: 23 times |
Joined on Aug 2018
|
#58
|
|
2018-08-23
, 18:00
|
Posts: 986 |
Thanked: 1,526 times |
Joined on Jul 2010
|
#59
|
|
2018-08-24
, 11:47
|
Posts: 202 |
Thanked: 385 times |
Joined on Jul 2018
|
#60
|
internet sharing works!
if you have perl (i forget if its by default avail), run this as devel-su in a terminal
EDIT:Code:#!/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);
anyway, this is what you need to do as devel-su:
echo 2 > /sys/module/bcmdhd/parameters/op_mode
#turn off tethering, turn off wifi, turn on tethering
ip link set dev wlan0 master tether
#to turn it off, turn off tethering button and then run:
echo 1 > /sys/module/bcmdhd/parameters/op_mode
in case someone else has done so:
~ teleshoes ~
Last edited by wolke; 2018-08-04 at 06:29.