Installing SSH onto a Embedded System

Has anyone gotten ssh to run on an embedded build of QNX 6.1. I have tried using a binary build I found at (www.openssh.com with no success. So now I have moved to a thinking of coping the files from a full install of QNX 6.1, but I am not sure of all the files I need, or am I approaching this from a entirely wrong angle. Any ideas on what files I need or how I should proceed would be great.

Thanks in advance.

What is an embed build? You must not have enough required stuff for running ssh. Do you need the server sshd, or just the client ssh.
Do you have the below stuff on your system?
random generator
pseudo ttys.
and of course, all shared libs needed.

I would like to get both the sshd and ssh up an running, but I am not sure if I have enough of the stuff setup to make this work. I have also tried to install things from the pkg-installer after it boots, but I have been unable to connect to QNX Online. This is really making me pull my hair. I hope that someone can help me get this straightened out.

Here is my build file, it is a modified ifs file provided by Ampro.

ifs file

[virtual=x86,bios +compress] .bootstrap = {
startup-bios
PATH=/proc/boot LD_LIBRARY_PATH=/proc/boot:/lib/dll:/lib:/phembed/lib: procnto
}

[+script] .script = {
display_msg …
devc-ser8250 -b115200 &
devc-pty &

    devb-fdc cam quiet blk auto=partition,cache=100k         &

    seedres
    pci-bios &
    waitfor /dev/pci

    HOME=/
    SYSNAME=nto
    pipe &
    devb-eide blk automount=/dev/hd0t77:/,automount=/dev/hd1t77:/fs/hd2-qnx4 &

waitfor /lb700.qfs

devb-eide blk automount=/dev/hd1t77:/fs/hd2-qnx4 &

    io-net -dspeedo -ptcpip -pqnet &

    waitfor /dev/socket
    waitfor /dev/io-net/en0

    ######################################################
    ifconfig en0 inet 192.168.1.14
    ifconfig en1 inet 192.168.2.15
    route add default 192.168.1.1
    ######################################################

io-audio -dvia686 ioport=220,irq=5,dma=1,dma1=5 &

mount /lb700.qfs / &

waitfor /phembed

    qconn &

    devc-con -n2 &
reopen /dev/con1

[+session pri=10r]  PATH=/proc/boot sh &

/phembed/phstartlb700 &

}

[type=link] /usr/lib/ldqnx.so.2 = /proc/boot/libc.so
[type=link] /dev/console=/dev/con1
[type=link] /bin/esh=/proc/boot/esh
[type=link] /bin/sh=/proc/boot/sh
[type=link] /lib/dll/devn-speedo.so=/proc/boot/devn-speedo.so
[type=link] /usr/lib/libz.so.2=/lib/libz.so.2
libc.so
libc.so.2
libsocket.so.1
libsocket.so.2
devn-speedo.so
deva-ctrl-via686.so
deva-mixer-ac97.so
npm-qnet.so
npm-tcpip.so

libcam.so.2
cam-disk.so
io-blk.so
fs-qnx4.so

[data=c]
devc-ser8250
devc-pty
devb-eide
devb-fdc
devc-con
devb-ram
swapctl
seedres
pci-bios
pidin
io-net
io-audio
ifconfig
route
ping
sh
cat
vi
find
esh
ls
cp
mv
rm
slay
/sbin/pipe
mount
umount
shutdown
qconn
pdebug
ps

*** end ifs file ***

Thanks for your time, I hope someone here can send me straight.