OTC - ETC on Organelle

well its definitely installed ok…

ok, lets try a couple of things, see if we can get some more info/progress

in OTC_Mother you will find a file called OTC_Mother/run.sh

at the bottom it looks like :

echo init fb0 >> $USER_DIR/otc_mother.log
./fsquares
cp splash /dev/fb0

export SDL_VIDEODRIVER=fbcon

python2 main.py >> $USER_DIR/otc_mother.log 2>&1 &

can you change this to:

echo init fb0 >> $USER_DIR/otc_mother.log
./fsquares >> $USER_DIR/otc_mother.log 2>&1 
echo start splash >> $USER_DIR/otc_mother.log
cp splash /dev/fb0

export SDL_VIDEODRIVER=fbcon

echo start python >> $USER_DIR/otc_mother.log
python2 main.py >> $USER_DIR/otc_mother.log 2>&1 &

so what this does, is log some statements before python starts…

as far as i can see with your setup, basically its stalls even before python is starting,
I’m guessing in ‘fsquares’

one thing ive noticed, is when I play with this starting and stopping alot… then it sometimes pauses for me there,
but it does continue (though it sometimes might be 20-30 seconds)