Update the optimized AVR8 example implementation.
[openwrt/svn-archive/archive.git] / net / tftp-hpa / files / tftpd-hpa.init
1 #!/bin/sh /etc/rc.common
2
3 START=50
4
5 RUN_D=/var/tftpd-hpa
6
7 start() {
8 [ -d $RUN_D ] || mkdir -p $RUN_D
9 tftpd-hpa -l -s $RUN_D
10 }
11
12 stop() {
13 killall tftpd-hpa
14 }