fix copy loader.elf to image builder and add some package lists for brcm-2.6 (fixes...
[openwrt.git] / openwrt / package / ulogd / files / ulogd.init
1 #!/bin/sh
2
3 BIN=ulogd
4 DEFAULT=/etc/default/$BIN
5 LOG_D=/var/log
6 [ -f $DEFAULT ] && . $DEFAULT
7
8 case $1 in
9 start)
10 $BIN $OPTIONS
11 ;;
12 *)
13 echo "usage: $0 (start)"
14 exit 1
15 esac
16
17 exit $?
This page took 0.042673 seconds and 5 git commands to generate.