http://www.jpilot.org/
I compiled this just over a year ago in Puppy 2.??
This is just updating the old dotpups with a new start script, desktop file, & icon and turning them into dotpets. I couldn't get the most recent pilot-link to compile correctly (can't get the shared libraries that Jpilot needs) but this package works fine in Puppy 4. The "jpilot-start" script that is called by the menu is thanks to Indy in this thread:
http://www.murga-linux.com/puppy/viewtopic.php?t=14107
I've just revised it a bit to look like this:
Code: Select all
#!/bin/bash
if [ "`lsmod | grep usbserial`" = "" ]; then
modprobe usbserial
fi
if [ "`lsmod | grep visor`" = "" ]; then
modprobe visor
fi
if [ "`ls /dev/ttyUSB0 2>/dev/null`" = "" ]; then
mknod /dev/ttyUSB0 c 188 0
fi
if [ "`ls /dev/ttyUSB1 2>/dev/null`" = "" ]; then
mknod /dev/ttyUSB1 c 188 1
fi
chmod 0666 /dev/ttyUSB?
if ! [ -f /dev/pilot ]; then
ln -s /dev/ttyUSB1 /dev/pilot
fi
jpilot &
exit 0