mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 07:37:29 +02:00
18 lines
426 B
Bash
Executable File
18 lines
426 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
START=99
|
|
|
|
POOL1="-o http://us.ozco.in:8331 -O xiangfu.0:x"
|
|
POOL2="-o http://pool.ABCPool.co:8332 -O xiangfu.0:x"
|
|
POOL3="-o http://pit.deepbit.net:8332 -O xiangfu.z@gmail.com_0:x"
|
|
|
|
POOLS="$POOL1 $POOL2 $POOL3"
|
|
|
|
start() {
|
|
DEVS=`find /dev/ -type c -name "ttyUSB*" | sed 's/^/-S/' | sed ':a;N;$!ba;s/\n/ /g'`
|
|
cgminer -q -T --api-network --api-listen $POOLS $DEVS &
|
|
}
|
|
|
|
stop() {
|
|
killall -s 9 cgminer
|
|
}
|