2011년 12월 26일 월요일

inetutil cross compile - ( telnetd )

inetutil includes various network utils
such as telnet client, telnet daemon, tftp, and so on

download  source code

http://ftp.gnu.org/gnu/inetutils/

untar inetutils-1.8.tar.gz

and configure

# ./configure --host=arm-none-linux-gnueabi --build=i686 --prefix=/usr/bin
# make

I have compile error while building ifconfig,
just disable ifconfig then succeeded

# ./configure --host=arm-none-linux-gnueabi --build=i686 --prefix=/usr/bin --disable-ifconfig
# make

if you want to find other tool that is not included in inetutils
try to find net-tools

http://sourceforge.net/projects/net-tools/