http://wiki.samygo.tv/index.php5/How_to ... rt_ScriptsThat page gives example of modified /mtd_rwarea/SamyGO.sh, which runs 2 other scripts if they are present:
if [ -f /mtd_rwarea/mtd_rwarea.sh ];then
/mtd_rwarea/mtd_rwarea.sh # Run normal startup script
fi
if [ -f /mtd_rwarea/mount.sh ];then
/mtd_rwarea/mount.sh # Run mount script
fi
Then it gives an example for /mtd_rwarea/mount.sh, which is great; but nothing for /mtd_rwarea/mtd_rwarea.sh, a place where I can possible put a command to launch a SamyGo app on start-up. Couldn't find an example anywhere, the only way to launch I know so far is via the content library, not via script.
This is the last piece in the puzzle for me. Probably a trivial step for some, but a hurdle for me, please help.