mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
e81ef5153c
1. integrate rexec, rlogin, rsh, telnet, tftpd xinetd startup scripts 2. inherit update-alternatives bbclass, not call update-alternatives directly. 3. package all commands into subpackages Signed-off-by: Roy.Li <rongqing.li@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
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 = /usr/sbin/in.tftpd
|
|
server_args = /tftpboot
|
|
}
|
|
|