Autorun.gpu - To Script Or Not To Script


kaygroth

Still Fresh
Joined
May 10, 2006
Messages
24
Hi,

I need a hand making up a autorun.gpu script to enable TV-out and then start CraigAmp. This is what i have so far, but all I get (even just launching CraigAmp) is a black screen, i have triple checked the case of everything. The other thing i have noticed (might just be me) is the tvon works fine on the TV-out ext. but does'nt seem to work on the cradle? Can anybody confirm or dismiss this?



#!/bin/sh
cd /mnt/sd/tvonoff/
exec ./tvon.gpe
cd /mnt/sd/craigamp
exec ./CraigAmp.gpe
 
exec replaces the current program so the script will only run to
exec ./tvon.gpe

Assuming ./tvon.gpe returns just remove the exec

keep the last exec though
 
Back
Top