Quote:
Originally Posted by kodomo
- 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