And again all that happened was that X/QT opened, displayed the xterm and stopped there.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89287\"][{POST_SNAPBACK}][/a][/div]
I've located the problem on my 860.
I had the same behavior, basically XQt would start as if without the "debian" option.
The reason for me is these lines in .xinitrc:
# check debian location
if [ -f /etc/debroot ]; then
DEBROOT=`cat /etc/debroot`
if [ "$DEBROOT" != "" ] && [ -d $DEBROOT ]; then
DEBIAN=`mount|grep proc|grep $DEBROOT`
else
DEBIAN=""
fi
else
DEBROOT=NODEBIAN
DEBIAN=""
fi
Specifically the line:
DEBIAN=`mount|grep proc|grep $DEBROOT`
Since I installed it to /mnt/card/debroot all goes well, however when you look at "mount | grep debroot" you'll see that in the running processes list the card is actually reffered to as /usr/mnt.rom/card and not /mnt/card
And that's the problem.
After I changed the line to
DEBIAN=`mount|grep proc|grep /usr/mnt.rom/card/debroot`
all's fine in my case...