T
TelcoLou
Guest
* deep breath *
I was trying to make a launch script for Frodo & FrodoPC. I finally got it to work after nearly an hour of frustration using this:
What I don't understand is this; I was trying to copy a script I made for GP2Xhandy:
... I simply replaced this line:
/mnt/sd/GP2XHandy.gpe
with this:
/mnt/sd/Frodo.gpe
... when I executed the script, I got dumped back to the GP2X menu. So I changed it thusly:
cd /mnt/sd/
./FrodoPC.gpe
My question is, "What the HELL is the difference??!??" I'm not real bright, but it seems that I'm telling the script to do the same thing; run the prgram located in the root.
I just don't get it :lol:
I was trying to make a launch script for Frodo & FrodoPC. I finally got it to work after nearly an hour of frustration using this:
Code:
#!/bin/sh
/mnt/sd/cpu_speed.gpe 1 2 266
cd /mnt/sd/
./FrodoPC.gpe
sync
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
What I don't understand is this; I was trying to copy a script I made for GP2Xhandy:
Code:
#!/bin/sh
/mnt/sd/cpu_speed.gpe 1 2 266
/mnt/sd/GP2XHandy.gpe
sync
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
... I simply replaced this line:
/mnt/sd/GP2XHandy.gpe
with this:
/mnt/sd/Frodo.gpe
... when I executed the script, I got dumped back to the GP2X menu. So I changed it thusly:
cd /mnt/sd/
./FrodoPC.gpe
My question is, "What the HELL is the difference??!??" I'm not real bright, but it seems that I'm telling the script to do the same thing; run the prgram located in the root.
I just don't get it :lol: