View Single Post
Old 04-22-2012, 07:08 PM   #37
kodomo
M92 info archivist
kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.kodomo is no ebook tyro.
 
Posts: 238
Karma: 1398
Join Date: Jun 2008
Device: IRex Iliad 2nd ed., Onyx Boox M92, Onyx Boox Max Lumi
Quote:
Originally Posted by kodomo View Post
- probably will hack a small demon to address the SD-write issue next (it is sad that the closed system_manager bars us from real clean 3rd party solutions -_-')
Hrm - basically got things working, now... but adding the scripts to startup is troublesome: both adding it to appstart.sh and rc.config resulted in boot freezes which had to be solved by reflashing... did anyone successfully added stuff to the boot sequence?

Another thing I stumbled upon has me a little worried... looking at watchdog.sh, I see a check for free space on /root:
Code:
        remain_cap=`df | grep mmcblk0p2 | awk '{print $4}'`
        if [ $remain_cap -ge 1024 ]; then
        ...
...and an action to take, if internal memory's full:

Code:
root_files="web_browser.db notes_template notes"
    for i in $root_files
    do  
    ...
        rm -rf /root/$i
...They really intend to delete the user's notes to free up space!?!

Update: ok... so root is not 'the' internal memory... but then again, I think that /root is not the safe place to put the notes

Last edited by kodomo; 04-22-2012 at 07:31 PM.
kodomo is offline   Reply With Quote