maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   SailfishOS (https://talk.maemo.org/forumdisplay.php?f=52)
-   -   SailfishOS 2.0 Nexus5 based on CM13 alpha release (https://talk.maemo.org/showthread.php?t=99377)

mautz 2017-09-22 12:14

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
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.

mautz 2017-09-22 13:28

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
@Blueslee

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

BluesLee 2017-09-22 14:39

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
Quote:

Originally Posted by mautz (Post 1534918)
@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?

mautz 2017-09-25 07:41

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
Sorry, i think i was wrong, Here is my battery usage over 8 hours with low usage and a very bad cellular signal.

http://up.picr.de/30457857xi.jpg

bomo 2017-09-25 16:15

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
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 ?

mautz 2017-09-26 08:12

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
Quote:

Originally Posted by bomo (Post 1535127)
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.

monkeyisland 2017-09-28 14:24

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
1 Attachment(s)
Hi there the wikis are all down ? :(

mautz 2017-09-30 03:15

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
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

mautz 2017-10-01 22:13

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
Why doesn't someone tell me, that i forgot to post the download link...

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

mautz 2017-10-03 00:24

Re: SailfishOS 2.0 Nexus5 based on CM13 alpha release
 
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.


All times are GMT. The time now is 18:45.

vBulletin® Version 3.8.8