My OMAP5432 run under GLSDK 6.02.01.02. I am trying to install SSH on the board.
For version 6.00.00.07 SSH installation do the script called "first-boot.sh". For 6.02.01.02 I cannot fins this script.
Therefore I decided build SSH server manually (target # <this command is to be executed on the OMAP5432>):
1. Download SSH source:
target # cd /home/root
target # mkdir openSSH
target # cd openSSH
target # wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-5.2p1.tar.gz
target # gzip -dc < openssh-5.2p1.tar.gz | tar -xf -
target # cd openssh-5.2p1
3. Trying to build SSH:
target # ./configure --prefix=/usr --with-ssl-dir=/usr/ssl --with-4in6
On this step I have the error : no acceptable C compiler found in $PATH
What I do next.
4. Downloading Lenaro Toolchain:
target # wget http://releases.linaro.org/13.11/components/toolchain/gcc-linaro/4.8/gcc-linaro-4.8-2013.11.tar.xz
5. Trying to uncompress it:
target # tar -zxvf gcc-linaro-4.8-2013.11.tar.xz
and get the error:
tar: invalid tar magic.
I am new with the board and a bit confused if my steps are correct. Is there the sense continue to fight with that or my way is wrong at the beginning? Can I build SSH on the target or I should build it at first on the host and than copy it to the board?
Please advice.
Thank you,
Vadim