Difference between revisions of "Tftp-hpa"

From CBLFS
Jump to navigationJump to search
(Configuring)
Line 63: Line 63:
 
This section assumes that you have [[Xinetd]] installed and configured to load services in '''/etc/xinetd.d'''.
 
This section assumes that you have [[Xinetd]] installed and configured to load services in '''/etc/xinetd.d'''.
  
  cat > /etc/xinetd.d/tftp << "EOF" &&
+
  cat > /etc/xinetd.d/tftp << "EOF"
 
  # Begin /etc/xinetd.d/tftp
 
  # Begin /etc/xinetd.d/tftp
 
   
 
   

Revision as of 08:08, 5 November 2006

Download Source: http://www.kernel.org/pub/software/network/tftp/tftp-hpa-0.43.tar.bz2

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr &&
make

Install the package

make install

Configuring

This section assumes that you have Xinetd installed and configured to load services in /etc/xinetd.d.

cat > /etc/xinetd.d/tftp << "EOF"
# Begin /etc/xinetd.d/tftp

service tftp
{
   disable        = no
   socket_type    = dgram
   wait           = yes
   user           = root
   server         = /usr/sbin/in.tftpd
   server_args    = -s /srv/tftp
}

# End /etc/xinetd.d/tftp
EOF