maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   SailfishOS (https://talk.maemo.org/forumdisplay.php?f=52)
-   -   2.1.4 EA / Lapuanjoki (https://talk.maemo.org/showthread.php?t=100207)

karlos devel 2018-02-19 21:40

Re: 2.1.4 EA / Lapuanjoki
 
Quote:

Originally Posted by Caluna (Post 1541382)
How to upgrade from 2.1.4.12 to 2.1.4.13? After 2.1.4.12 I changed the repos a suggested before. Now, system settings show "update" to 2.1.3, manual updateto 2.1.4.13 "works" somehow after deleting the manually added reps (jolla, hotfixes and apps), at least some packages were updated. But system settings still mentions, that update to 2.1.3 is available. Adding the previously added repos with 2.1.4.13 does not work. Any ideas?

Do not worry. It will automatically be fixed when hit the EA. ;)

aQUICK1 2018-02-19 21:44

Re: 2.1.4 EA / Lapuanjoki
 
I got back to 2.1.3 first after replacing the internals that seiichiro0185 suggested, then i manual update with terminal to the latest.

mautz 2018-02-20 06:10

Re: 2.1.4 EA / Lapuanjoki
 
No problems after manually updating to 2.1.4.13. I think CPU managment is still not working as expected. The big cores get barely used. Minimum scaling frequency is still set to 691200 and core 3 seems to e exclusively used for the camera daemon. E-Mail is still slow for me.

TMavica 2018-02-20 06:20

Re: 2.1.4 EA / Lapuanjoki
 
memory killer is too often happen, so i made a swap memory, the problem is solved

jenix 2018-02-20 08:55

Re: 2.1.4 EA / Lapuanjoki
 
Quote:

Originally Posted by TMavica (Post 1541391)
memory killer is too often happen, so i made a swap memory, the problem is solved

No sure, if this is caused by the available RAM, as there are around 800 MB free on my device:
Code:

[root@Sailfish nemo]# free -m
            total      used      free    shared    buffers    cached
Mem:  2835      2059        776          0        52        682
-/+ buffers/cache:      1325      1510
Swap:            0          0          0

Nevertheless, adding swap is no big deal, and if it prevents unwanted closing of apps, let's do it. Below, I create a swapfile in /home which is the biggest partition available. Placing it directly in /home is somewhat unaesthetic, but we have to work with what's available. Putting it on the sdcard is a dumb idea because a) access speeds are way slower and b) it would wear the sdcard quite badly.

As always: DISCLAIMER: You're doing this on your own risk, I'm not responsible if something goes wrong. This reduces the available space for the user data by the amount of swap you are adding.

Please use the method provided by TMavica here as it does not requires parts of the user data partition: https://talk.maemo.org/showpost.php?...&postcount=111

below only for reference:
You can choose the size of the swap in the first comand (fallocate), either use M (for MB) or G (for GB). In my example, I create a 2 GB swap file.
Code:

# Create the swapfile
fallocate -l 2G /home/swapfile
# Set permissions
chmod 600 /home/swapfile
# Prepare file as swap
mkswap /home/swapfile
# Enable swap
swapon /home/swapfile

# Now, you can check that swap memory is available:
free -m

# Finally, add an entry to /etc/fstab so the swap gets enabled on boot
echo "/home/swapfile none swap defaults 0 0" >> /etc/fstab

If you want to remove the swap file any time (e.g. you need the space), delete the entry in /etc/fstab, disable it with
Code:

swapoff /home/swapfile
and delete the file.



Quote:

Successfully updated from 2.1.3.7 to 2.1.4.13 on Oneplus 3T. So far: Jolla Together app is crashing on a regular basis when one starts scrolling.
Same for me. I'd suspect this is not a memory issue but maybe rather some incompatibility with the browser API!? It always crashes when you are in the middle of the loaded page (according to the scrollbar), so I'd suspect it tries to load more entries and fails.

jenix 2018-02-20 08:56

Re: 2.1.4 EA / Lapuanjoki
 
BTW: 2.1.4 was official (re-)released. Release notes: https://together.jolla.com/question/...14-lapuanjoki/

Caluna 2018-02-20 09:49

Re: 2.1.4 EA / Lapuanjoki
 
Can anyone upload or post /usr/share/ssu/repos.ini for 2.1.4.13? I think, I broke it somehow while trying to solve the update 2.1.4.12-> 2.1.4.13...
Thank you!

mautz 2018-02-20 09:56

Re: 2.1.4 EA / Lapuanjoki
 
Quote:

Originally Posted by Caluna (Post 1541396)
Can anyone upload or post /usr/share/ssu/repos.ini for 2.1.4.13? I think, I broke it somehow while trying to solve the update 2.1.4.12-> 2.1.4.13...
Thank you!

Here you go: https://pastebin.com/ij7EEbe5

Caluna 2018-02-20 10:14

Re: 2.1.4 EA / Lapuanjoki
 
Thank you: hm. looks the same: I get an error:
Critical error: unable to determine update size
pkcon refresh gives
file '/repodate/repomd.xml' on medium 'https://releases.jolla.com/releases/2.1.4.13/jolla-apps/arm7hl

clovis86 2018-02-20 10:19

Re: 2.1.4 EA / Lapuanjoki
 
what is the output of your ssu lr command ?
here is mine :
Quote:

Enabled repositories (global):
- adaptation0 ... https://store-repository.jolla.com/r...f5121/armv7hl/
- adaptation1 ... https://store-repository.jolla.com/r...1-dhd/armv7hl/
- aliendalvik ... https://store-repository.jolla.com/r...ndalvik/f5121/
- apps ... https://releases.jolla.com/jolla-apps/2.1.4.13/armv7hl/
- customer-jolla ... https://store-repository.jolla.com/f...jolla/armv7hl/
- hotfixes ... https://releases.jolla.com/releases/...fixes/armv7hl/
- jolla ... https://releases.jolla.com/releases/...jolla/armv7hl/
- sailfish-eas ... https://store-repository.jolla.com/f...h-eas/armv7hl/
- xt9 ... https://store-repository.jolla.com/f...3/xt9/armv7hl/

Enabled repositories (user):
- apps ... https://releases.jolla.com/jolla-apps/2.1.4.13/armv7hl/
- hotfixes ... https://releases.jolla.com/releases/...fixes/armv7hl/
- jolla ... https://releases.jolla.com/releases/...jolla/armv7hl/
- openrepos-CepiPerez ... https://sailfish.openrepos.net/CepiPerez/personal/main
- openrepos-Dax ... https://sailfish.openrepos.net/Dax/personal/main
- openrepos-Maledictus ... https://sailfish.openrepos.net/Maledictus/personal/main
- openrepos-Penguin ... https://sailfish.openrepos.net/Penguin/personal/main
- openrepos-Schturman ... https://sailfish.openrepos.net/Schturman/personal/main
- openrepos-Wedmer ... https://sailfish.openrepos.net/Wedmer/personal/main
- openrepos-alina ... https://sailfish.openrepos.net/alina/personal/main
- openrepos-bade866 ... https://sailfish.openrepos.net/bade866/personal/main
- openrepos-basil ... https://sailfish.openrepos.net/basil/personal/main
- openrepos-coderus ... https://sailfish.openrepos.net/coderus/personal/main
- openrepos-condo4 ... https://sailfish.openrepos.net/condo4/personal/main
- openrepos-cornerman ... https://sailfish.openrepos.net/cornerman/personal/main
- openrepos-dysko ... https://sailfish.openrepos.net/dysko/personal/main
- openrepos-edgley ... https://sailfish.openrepos.net/edgley/personal/main
- openrepos-joeysys ... https://sailfish.openrepos.net/joeysys/personal/main
- openrepos-kempe ... https://sailfish.openrepos.net/kempe/personal/main
- openrepos-lourens ... https://sailfish.openrepos.net/lourens/personal/main
- openrepos-mkiol ... https://sailfish.openrepos.net/mkiol/personal/main
- openrepos-nesnomis ... https://sailfish.openrepos.net/nesnomis/personal/main
- openrepos-nodevel ... https://sailfish.openrepos.net/nodevel/personal/main
- store ... https://store-repository.jolla.com/f...rsion=2.1.4.13

Disabled repositories (global, might be overridden by user config):

Disabled repositories (user):
- home ... https://download.jollamobile.com/hom...atest_armv7hl/


All times are GMT. The time now is 21:12.

vBulletin® Version 3.8.8