mittens
Member
It seems the menu of GP2X is just the collection of the filters - more specifically, the list of 'ls' commands of Linux like:
ls *.avi for Movie
ls *.gpe for Game
So if you change the file extention name, it might be show on that menu.
And though one of the GP2X excutable, the .gpe file is the elf format binary,
the other one, the .gpu file is simple text shell script.
Here are two .gpu file already post on Korean webpage.
1. Change background & icon image of GP2x - imgall.gpu (gpain.com)
#/bin/sh
cp -f ./imgbattery/*.* /usr/gp2x/imgbattery/
cp -f ./imgcommon/*.* /usr/gp2x/imgcommon/
cp -f ./imgebook/*.* /usr/gp2x/imgebook/
cp -f ./imgexplorer/*.* /usr/gp2x/imgexplorer/
cp -f ./imggame/*.* /usr/gp2x/imggame/
cp -f ./imgimage/*.* /usr/gp2x/imgimage/
cp -f ./imgmain/*.* /usr/gp2x/imgmain/
cp -f ./imgmovie/*.* /usr/gp2x/imgmovie/
cp -f ./imgmusic/*.* /usr/gp2x/imgmusic/
cp -f ./imgsetting/*.* /usr/gp2x/imgsetting/
cp -f ./imgtestmode/*.* /usr/gp2x/imgtestmode/
cp -f ./imgutil/*.* /usr/gp2x/imgutil/
cd /usr/gp2x
./gp2xmenu
2. Sync program before shutdown your GP2X after receiving files via USB - sync.gpu by gp2xCool (www.gpain.com)
#/bin/sh
sync
cd /usr/gp2x
./gp2xmenu
It means, you can download all GP2X file system as a tar ball with shell script
(maybe somewhat meaningless, though)
ls *.avi for Movie
ls *.gpe for Game
So if you change the file extention name, it might be show on that menu.
And though one of the GP2X excutable, the .gpe file is the elf format binary,
the other one, the .gpu file is simple text shell script.
Here are two .gpu file already post on Korean webpage.
1. Change background & icon image of GP2x - imgall.gpu (gpain.com)
#/bin/sh
cp -f ./imgbattery/*.* /usr/gp2x/imgbattery/
cp -f ./imgcommon/*.* /usr/gp2x/imgcommon/
cp -f ./imgebook/*.* /usr/gp2x/imgebook/
cp -f ./imgexplorer/*.* /usr/gp2x/imgexplorer/
cp -f ./imggame/*.* /usr/gp2x/imggame/
cp -f ./imgimage/*.* /usr/gp2x/imgimage/
cp -f ./imgmain/*.* /usr/gp2x/imgmain/
cp -f ./imgmovie/*.* /usr/gp2x/imgmovie/
cp -f ./imgmusic/*.* /usr/gp2x/imgmusic/
cp -f ./imgsetting/*.* /usr/gp2x/imgsetting/
cp -f ./imgtestmode/*.* /usr/gp2x/imgtestmode/
cp -f ./imgutil/*.* /usr/gp2x/imgutil/
cd /usr/gp2x
./gp2xmenu
2. Sync program before shutdown your GP2X after receiving files via USB - sync.gpu by gp2xCool (www.gpain.com)
#/bin/sh
sync
cd /usr/gp2x
./gp2xmenu
It means, you can download all GP2X file system as a tar ball with shell script