OK, I'm attaching the picker package...
and here's what I currently use as /bin/init to start some stuff:
(considering making the VNC server only start at AC power, but haven't really noticed a need yet...)
=BEGIN=======================================
#!/bin/sh
PATH=.:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/empeg/bin
PS1=empeg:\\w\\$
/bin/mount -n -o nocheck,rw /proc
/bin/mount -n -o nocheck,ro /dev/hda4 /drive0
/bin/mount -n -o nocheck,ro /dev/hdc4 /drive1
#start some stuff
/drive1/var/bin/VNC_server > /dev/null 2>&1
/drive1/var/bin/viewer > /dev/null 2>&1
while [ 1 ] ; do
/drive1/var/bin/pick_list
echo "Press q now to terminate to a shell prompt."
echo
/drive1/var/bin/getkey q && /bin/bash
echo Running Player...
/empeg/bin/player
/bin/bash
done
=END=========================================
To use it, create a suitably modified text file, save it with unix style line feeds (if you don't have an editor capable of that, I'd recommend getting
UltraEdit)
Connect to the player, rename the original /bin/init (for instance to /bin/init.org), upload the text file and make it executable...
/Michael