- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
19 lines
523 B
Plaintext
19 lines
523 B
Plaintext
# default: off
|
|
# description: The tftp server serves files using the trivial file transfer \
|
|
# protocol. The tftp protocol is often used to boot diskless \
|
|
# workstations, download configuration files to network-aware printers, \
|
|
# and to start the installation process for some operating systems.
|
|
service tftp
|
|
{
|
|
socket_type = dgram
|
|
protocol = udp
|
|
wait = yes
|
|
user = root
|
|
server = /usr/sbin/in.tftpd-hpa
|
|
server_args = -s /var/lib/tftpboot
|
|
disable = yes
|
|
per_source = 11
|
|
cps = 100 2
|
|
flags = IPv6
|
|
}
|