Reply
Thread Tools
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#151
Have you enabled tethering in Settings->USB? The usb connection must be established after changing the mode. You'll get a message like usb-tethering is enabled or something like that.
 

The Following 2 Users Say Thank You to mautz For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#152
@Blueslee

The battery drain seems to be caused by something waking up the phone more often since 2.0.x. Not again...
 

The Following 2 Users Say Thank You to mautz For This Useful Post:
BluesLee's Avatar
Posts: 411 | Thanked: 1,105 times | Joined on Jan 2010 @ Europe
#153
Originally Posted by mautz View Post
@Blueslee

The battery drain seems to be caused by something waking up the phone more often since 2.0.x. Not again...
Is this issue port specific or do others encounter the same issue?
 

The Following User Says Thank You to BluesLee For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#154
Sorry, i think i was wrong, Here is my battery usage over 8 hours with low usage and a very bad cellular signal.


Last edited by mautz; 2017-09-25 at 07:51.
 

The Following User Says Thank You to mautz For This Useful Post:
Posts: 68 | Thanked: 147 times | Joined on Dec 2016
#155
I have the issue that the lock screen sometimes gets unresponsive (noticed after calls, but may just be a coincidence). Does anyone else have that issue or know a solution ?
 

The Following User Says Thank You to bomo For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#156
Originally Posted by bomo View Post
I have the issue that the lock screen sometimes gets unresponsive (noticed after calls, but may just be a coincidence). Does anyone else have that issue or know a solution ?
This is a known bug, a solution can be found when you look at the first post and read the section under UI freeze.
 

The Following User Says Thank You to mautz For This Useful Post:
Posts: 191 | Thanked: 271 times | Joined on Mar 2015 @ Germany
#157
Hi there the wikis are all down ?
Attached Images
 
 

The Following User Says Thank You to monkeyisland For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#158
Custom kernel alpha release

Do not flash if you are not using 2.1.1.x version of my SFOS image.

Explanation about included features can be expected in the next days, you'll get a hint about the tuneables of my custom kernel post on the front page.

If yo want to use another CPU hotplug governor disable mpdecison:
Code:
devel-su mv /system/bin/mpdecision /system/bin/mpdecision.bak
To make changes in sysfs permanent take a look at https://together.jolla.com/question/...-battery-life/
For example this is my rc.local file:

Code:
#!/bin/sh

# Change CPU governor
echo 'zzmoove' > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 'zzmoove' > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
echo 'zzmoove' > /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor
echo 'zzmoove' > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor

#Set Min/Max CPU frequency
echo '300000' > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo '300000' > /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq
echo '300000' > /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq
echo '300000' > /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq

echo '1497600' > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo '1497600' > /sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq
echo '1497600' > /sys/devices/system/cpu/cpu2/cpufreq/scaling_max_freq
echo '1497600' > /sys/devices/system/cpu/cpu3/cpufreq/scaling_max_freq

# Change GPU settings
echo '320000000' > /sys/class/kgsl/kgsl-3d0/devfreq/max_freq

# Undervolt
echo '650 650 650 650 670 715 730 750 760 770 805 820 850 870 900 945 1025' > /sys/devices/system/cpu/cpu0/cpufreq/UV_mV_table

# Enable USB fast charge
#sudo echo '2' > /sys/kernel/fast_charge/force_fast_charge 

# Tune ZZmoove settings
echo 3 > /sys/devices/system/cpu/cpufreq/zzmoove/profile_number
echo 1 > /sys/devices/system/cpu/cpufreq/zzmoove/disable_hotplug
echo 0 > /sys/devices/system/cpu/cpufreq/zzmoove/disable_sleep_mode
echo 1 > /sys/devices/system/cpu/cpufreq/zzmoove/disable_hotplug_sleep

#Enable msm_hotplug
echo 1 > /sys/module/msm_hotplug/msm_enabled
echo 1 > /sys/module/msm_hotplug/cpus_boosted
echo 1 > /sys/module/msm_hotplug/boost_lock_duration
echo 960000 > /sys/module/msm_hotplug/fast_lane_min_freq
echo 90 > /sys/module/msm_hotplug/fast_lane_load
echo 15 > /sys/module/msm_hotplug/history_size
echo 500 > /sys/module/msm_hotplug/down_lock_duration

#Kcal settings
echo 1 > /sys/devices/platform/kcal_ctrl.0/kcal_enable
echo 230 232 255 > /sys/devices/platform/kcal_ctrl.0/kcal
echo 274 > /sys/devices/platform/kcal_ctrl.0/kcal_sat
echo 268 > /sys/devices/platform/kcal_ctrl.0/kcal_cont
echo 247 > /sys/devices/platform/kcal_ctrl.0/kcal_val
echo 0 > /sys/devices/platform/kcal_ctrl.0/kcal_hue

#Enable Sound Hax
echo 1 > /sys/kernel/sound_control_3/gpl_sound_control_enabled

#Change I/O scheduler
echo fiops > /sys/block/mmcblk0/queue/scheduler

#Change Minimum Brightness
echo 1 > /sys/module/lm3630_bl/parameters/backlight_dimmer
echo 3 > /sys/module/lm3630_bl/parameters/min_brightness
For some more explanation about the tuneables in sysfs take a look at the link in my signature.

I'm not respomsible for bricked systems.

Download here

Source can be found here: https://github.com/mautz-kernel/sfos-cm13-custom

Last edited by mautz; 2017-10-01 at 22:14.
 

The Following 6 Users Say Thank You to mautz For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#159
Why doesn't someone tell me, that i forgot to post the download link...

http://www.mediafire.com/file/h27qp1...x-build-01.zip
 

The Following 5 Users Say Thank You to mautz For This Useful Post:
Posts: 635 | Thanked: 1,535 times | Joined on Feb 2014 @ Germany
#160
SailfishOS 2.1.2.3 Early Access release:

Haven't tested this version much, only checked if it boots and if some basic stuff is working, so feedback would be welcome.

EDIT: See first post for download link.

Last edited by mautz; 2017-10-07 at 17:38.
 

The Following 5 Users Say Thank You to mautz For This Useful Post:
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 06:58.