Titousensei
Still Fresh
- Joined
- Nov 27, 2005
- Messages
- 33
Hi,
I've been trying what everybody tried lately (firmware update, etc) without much success; played music and movies, those are OK. So I figured I might as well do something different until the dust settles.
Looking at the .gpu file from patch20051117.gpu and the SDL install_libs.gpu, I noticed they are shell scripts. I would like to use that to explore the GP2X. But I have a problem: only patch20051117.gpu seems to work (at least it returns to the menu); every other script I tried gives me a black screen and I have to reboot, including the SDL install libs (so, no games for me until I figure that out).
Even the smallest script doesn't work.
Here's patch20051117.gpu:
#!/bin/sh
cp EBookViewer /usr/gp2x
cp MusicPlayer /usr/gp2x
cd /usr/gp2x
./gp2xmenu
This one returns to the menu after a few seconds. I guess the copy was successfull. Even if the files are not present it returns, so a bug is not enough to freeze the machine with a lack screen.
Now here's install_libs.gpu:
#/bin/sh
tar -zxvf /mnt/sd/install_libs.tar.gz -C /
cd /usr/gp2x
./gp2xmenu
Notice the missing she-bang (fixing #! doesn't change a thing). This script freezes my machine with a black screen. Even after several minutes, I have to reboot the machine.
These 2 scripts are already giving a few information about the filesystem: /mnt/sd and /usr/gp2x are interesting paths.
I tried the smallest script:
#/bin/sh
cd /usr/gp2x
./gp2xmenu
Nothing, I had to reboot.
I'd like to do an ls -Rl / > /mnt/sd/ls-Rl.txt to get the list of exectables. I guess ls exists because I heard the GP2X uses busybox.
Did you guys try something similar with more luck?
Thanks.
I've been trying what everybody tried lately (firmware update, etc) without much success; played music and movies, those are OK. So I figured I might as well do something different until the dust settles.
Looking at the .gpu file from patch20051117.gpu and the SDL install_libs.gpu, I noticed they are shell scripts. I would like to use that to explore the GP2X. But I have a problem: only patch20051117.gpu seems to work (at least it returns to the menu); every other script I tried gives me a black screen and I have to reboot, including the SDL install libs (so, no games for me until I figure that out).
Even the smallest script doesn't work.
Here's patch20051117.gpu:
#!/bin/sh
cp EBookViewer /usr/gp2x
cp MusicPlayer /usr/gp2x
cd /usr/gp2x
./gp2xmenu
This one returns to the menu after a few seconds. I guess the copy was successfull. Even if the files are not present it returns, so a bug is not enough to freeze the machine with a lack screen.
Now here's install_libs.gpu:
#/bin/sh
tar -zxvf /mnt/sd/install_libs.tar.gz -C /
cd /usr/gp2x
./gp2xmenu
Notice the missing she-bang (fixing #! doesn't change a thing). This script freezes my machine with a black screen. Even after several minutes, I have to reboot the machine.
These 2 scripts are already giving a few information about the filesystem: /mnt/sd and /usr/gp2x are interesting paths.
I tried the smallest script:
#/bin/sh
cd /usr/gp2x
./gp2xmenu
Nothing, I had to reboot.
I'd like to do an ls -Rl / > /mnt/sd/ls-Rl.txt to get the list of exectables. I guess ls exists because I heard the GP2X uses busybox.
Did you guys try something similar with more luck?
Thanks.