View Single Post
Old 03-15-2012, 08:47 PM   #20
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by Nyoxi View Post
I know it's not related to this thread but since it appeared here I add my word of advice to everyone. Do not rely on something else to do "mntroot ro" for you. If you want to keep your root filesystem clean do it yourself as soon as you're finished modifying. Moreover if you do that during boot. The upstart scripts have tendency to pollute the root filesystem (strangely even to the point of preventing subsequent boot).
I was not aware of the root pollution by upstart scripts. It seemed to me that because a RUNME.sh script can be called from a number of different locations, and you do not know if the partition was already writable without testing for it. If you make it ro when the startup code that indirectly launched RUNME.sh is expecting it to be rw, that could be a problem unless you check for rw first (touch /junk; [[ -f /junk ]] && rm /junk && echo "already rw"). How future firmware updates react if the rw status changes under them could be a problem.

Also, it seems counterintuitive to me that startup scripts would write junk to root while ro, or the script could fail and take down upstart.

I suppose the safest thing to do is check for rw (like above) and only do the "mntroot rw; ... other code ...; mntroot ro" if it *was* ro to begin with.

Last edited by geekmaster; 03-15-2012 at 08:51 PM.
geekmaster is offline   Reply With Quote