summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/tftpd
blob: e7ff579a6b9593af2f7a14a023f3aca571f63cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# tftpd
#
case $1 in

	start)
		echo "tftpd starting"
		/sbin/tftpd -l @ROOT@
		;;

esac