Configure tftp server – Avalue BFC-10R1 User Manual
Page 46
RSC-IMX51
46 RSC-IMX51 User
’s Manual
3) $ ./run.sh linux
–j4 (for the j parameter, you can refer your PC`s CPU performance to
insert it, for this example, mine is
“Quad Core CPU” , so insert “j4” )
4) Then you can find
“uImage” from the path “core/kernel_linux/arch/arm/boot”
4.4 Configure TFTP Server
1) Install tftp and required packages
sudo apt-get install xinetd tftpd tftp
2) Create /etc/xinetd.d/tftp and put the following inside that text file
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /home/user/Documents/tftpboot
(Please note this is path of your TFTP folder) Do not copy this Line!!
disable = no
}
3) Make /tftpboot directory
$ cd ~
$ mkdir tftpboot
$ sudo chmod -R 777 /tftpboot
$ sudo chown -R nobody /tftpboot
4) Stop and start xinetd to apply changes
$ sudo /etc/init.d/xinetd stop
$ sudo /etc/init.d/xinetd start
You should now be able to use /home/user/tftpboot as your TFTP root and start
serving TFTP!