Reply
Thread Tools
Community Council | Posts: 4,920 | Thanked: 12,867 times | Joined on May 2012 @ Southerrn Finland
#711
Originally Posted by Eztran View Post
Does this include the apps crashing on app install thing? I kinda assumed that was related to this problem, but a successful back-to-back flash didn't help. Sorry for offtopic'ing.
I have been told the "apps crashing when installing something" problem is due to running low on memeory on the device, but cannot verify that as I have not ever encountered that problem myself.

I would be intrested in knowing what are the apps that people see crashing anyway? Are those some self-installed applications or the defult set that come with N9 and are always running (grob, fenix,...?)
 

The Following User Says Thank You to juiceme For This Useful Post:
Posts: 138 | Thanked: 144 times | Joined on Oct 2012 @ Devon, England
#712
Originally Posted by juiceme View Post
I have been told the "apps crashing when installing something" problem is due to running low on memeory on the device, but cannot verify that as I have not ever encountered that problem myself.
Seems a little unlikely to me; I rarely have many apps open, and I've seen the Store crash itself with nothing else open at all. OOM would also surely happen with a closed kernel too, and I've never seen these crashes outside openmode.

Originally Posted by juiceme View Post
Are those some self-installed applications or the defult set that come with N9 and are always running (grob, fenix,...?)
Certainly grob, as I said the Store dies a lot (and didn't do so without openmode), built-in settings apps, etc. I can't think if anything non-Nokia crashes for this reason offhand, will experiment.

EDIT: Wait, yes I can. Warehouse has the same problem, and I'm pretty sure that doesn't have a preloader.


Further info, after testing with a fresh flash. This may be old news to many, but I'm just pooling all the info I can collect.

These crashes always happen in the actual install, not while downloading or unpacking (unsurprisingly). They can also happen when uninstalling apps.

Unless the app killer is extremely overzealous, or memory usage spikes faster than I can check, OOM is not the only problem here - I managed to get Warehouse and grob to crash with >300MB of RAM free.

Some apps don't crash at all, despite everything else doing so. I also haven't seen anything running directly from Terminal crash yet (Fingerterm, however, will crash), including apps which do normally.

Can't test any further as it's mysteriously stopped happening for a bit.

Last edited by Eztran; 2013-11-14 at 14:40.
 

The Following 2 Users Say Thank You to Eztran For This Useful Post:
Posts: 12 | Thanked: 3 times | Joined on Dec 2011 @ Beijing
#713
I have installed ubiboot-02_0.3.5_301013.tar successfully on black n9. However, I found
/usr/bin/show_png /usr/share/themes/blanco/meegotouch/images/system-services/booting.png (which is in /sbin/preinit_harmattan) didn't work, it didn't show my customized png file.
 
TMavica's Avatar
Posts: 2,021 | Thanked: 1,060 times | Joined on Apr 2010 @ Hong Kong
#714
Originally Posted by Eztran View Post
Seems a little unlikely to me; I rarely have many apps open, and I've seen the Store crash itself with nothing else open at all. OOM would also surely happen with a closed kernel too, and I've never seen these crashes outside openmode.


Certainly grob, as I said the Store dies a lot (and didn't do so without openmode), built-in settings apps, etc. I can't think if anything non-Nokia crashes for this reason offhand, will experiment.

EDIT: Wait, yes I can. Warehouse has the same problem, and I'm pretty sure that doesn't have a preloader.


Further info, after testing with a fresh flash. This may be old news to many, but I'm just pooling all the info I can collect.

These crashes always happen in the actual install, not while downloading or unpacking (unsurprisingly). They can also happen when uninstalling apps.

Unless the app killer is extremely overzealous, or memory usage spikes faster than I can check, OOM is not the only problem here - I managed to get Warehouse and grob to crash with >300MB of RAM free.

Some apps don't crash at all, despite everything else doing so. I also haven't seen anything running directly from Terminal crash yet (Fingerterm, however, will crash), including apps which do normally.

Can't test any further as it's mysteriously stopped happening for a bit.
me too. Apps self closing after install or uninstall, but not everytimes, this only happened in open mode, but not in normal mode
__________________
The Glorious Lady T.Mavica
Twitter https://twitter.com/TMavica
 
Community Council | Posts: 4,920 | Thanked: 12,867 times | Joined on May 2012 @ Southerrn Finland
#715
Originally Posted by gemfield View Post
I have installed ubiboot-02_0.3.5_301013.tar successfully on black n9. However, I found
/usr/bin/show_png /usr/share/themes/blanco/meegotouch/images/system-services/booting.png (which is in /sbin/preinit_harmattan) didn't work, it didn't show my customized png file.
You checked that it was the "/sbin/preinit_harmattan" for sure, and not "/sbin/preinit" for example?
What did get shown when your boot picture should have loaded, nothing or just the pulsing "NOKIA" logo?
To make sure you really ran code in the preinit to the place where you show the picture, you could add something like;
Code:
echo "testing" >> /root/my_test_file
or something next to the place where you show the bootup picture.
Then, after the boot go and check that the statement had executed.
 
Community Council | Posts: 4,920 | Thanked: 12,867 times | Joined on May 2012 @ Southerrn Finland
#716
Originally Posted by TMavica View Post
me too. Apps self closing after install or uninstall, but not everytimes, this only happened in open mode, but not in normal mode
After that happens, I'd like to see a snip off your syslog, if something can be seen from there...?
 
Posts: 12 | Thanked: 3 times | Joined on Dec 2011 @ Beijing
#717
Originally Posted by juiceme View Post
You checked that it was the "/sbin/preinit_harmattan" for sure, and not "/sbin/preinit" for example?
What did get shown when your boot picture should have loaded, nothing or just the pulsing "NOKIA" logo?
To make sure you really ran code in the preinit to the place where you show the picture, you could add something like;
Code:
echo "testing" >> /root/my_test_file
or something next to the place where you show the bootup picture.
Then, after the boot go and check that the statement had executed.
Yes, it is /sbin/preinit_harmattan.
Code:
echo "gemfield2" > /root/gemfield2.log     
        if [  -f /usr/share/themes/blanco/meegotouch/images/system-services/booting.png -a -x /usr/bin/show_png ]; then
            /usr/bin/show_png /usr/share/themes/blanco/meegotouch/images/system-services/booting.png
            echo "gemfield3" > /root/gemfield3.log      
        # fallback to bmp 
        elif [  -f /usr/share/themes/blanco/meegotouch/images/system-services/booting.bmp -a -x /usr/sbin/show_bmp ]; then
            /usr/sbin/show_bmp -i /usr/share/themes/blanco/meegotouch/images/system-services/booting.bmp
        fi
And I put echo "gemfield2" > /root/gemfield2.log in front of showpng and also put echo "gemfield3" > /root/gemfield3.log behind showpng, turned out both are excuted. But still, the customized png didn't show on screen when boot N9.
 
Posts: 12 | Thanked: 3 times | Joined on Dec 2011 @ Beijing
#718
Hi, juiceme, another question:
As long as I didn't flash /dev/mtd0, then N9 can always be recovered by flasher tool?
 

The Following User Says Thank You to gemfield For This Useful Post:
Community Council | Posts: 4,920 | Thanked: 12,867 times | Joined on May 2012 @ Southerrn Finland
#719
Originally Posted by gemfield View Post
Hi, juiceme, another question:
As long as I didn't flash /dev/mtd0, then N9 can always be recovered by flasher tool?
Well, almost always. Unless you trash your cal and/or mess with your MTD you will most propably be able to fix your device with a reflash.
 

The Following User Says Thank You to juiceme For This Useful Post:
Posts: 138 | Thanked: 144 times | Joined on Oct 2012 @ Devon, England
#720
Originally Posted by juiceme View Post
After that happens, I'd like to see a snip off your syslog, if something can be seen from there...?
Here's one (why I haven't looked at the syslog yet, I can only explain with 'whoops'). Can't tell exactly where it happens as I forgot to get the time, but it was definitely within this (could be line 13 onwards? Certainly after this you can see apps exiting/restarting)
Attached Files
File Type: txt n9-syslog-cut.txt (7.6 KB, 100 views)
 
Reply


 
Forum Jump


All times are GMT. The time now is 02:59.