mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 09:59:39 +01:00
In order to have more robust stand-alone network tools in oe-core, bring in inetutils from meta-openembedded/meta-networking. This imports the recipes as of git commit: commit 408204073e6bdcd8ac586e05d5b75213417673f2 Author: Martin Jansa <martin.jansa@gmail.com> Date: Thu Aug 16 20:39:15 2018 +0000 inetutils: fix build with glibc-2.28 (From OE-Core rev: ace6911e663709f07ca73aa72f6bb4f4111b2749) Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
538 B
Plaintext
20 lines
538 B
Plaintext
# default: off
|
|
# description:
|
|
# Tftpd is a server which supports the Internet Trivial File Transfer
|
|
# Pro-tocol (RFC 783). The TFTP server operates at the port indicated
|
|
# in the tftp service description; see services(5).
|
|
#
|
|
service tftp
|
|
{
|
|
disable = yes
|
|
socket_type = dgram
|
|
protocol = udp
|
|
flags = IPv6
|
|
wait = yes
|
|
user = root
|
|
group = root
|
|
server = @SBINDIR@/in.tftpd
|
|
server_args = /tftpboot
|
|
}
|
|
|