hi i would appreciate your help. i'm running bfgminer on a Pi. i have 3 icarus boards, 1 cm1 and 1 bfl single fpga
i did the following (made it a script so as to build it every so often):
#!/bin/bash
git clone https://github.com/luke-jr/bfgminer.git
cd bfgminer
./autogen.sh
./configure
make
no errors on build
also on boot:
modprobe ftdi_sio vendor=0x0403 product=0x8350
sleep 1
echo "0403 8350" > /sys/bus/usb-serial/drivers/ftdi_sio/new_id
sleep 1
#BFL
modprobe ftdi_sio vendor=0x0403 product=0x6014
#Lancelot
modprobe ftdi_sio vendor=0x0403 product=0x6001
#Cairnsmore1
modprobe ftdi_sio product=0x8350 vendor=0x0403
i run it with either
bfgminer -c ../miner.txt -S all
or
bfgminer -c ../miner.txt -S /dev/ttyUSB0 -S /dev/ttyUSB1 -S /dev/ttyUSB2 -S /dev/ttyUSB3 -S /dev/ttyUSB4 -S /dev/ttyUSB5 -S /dev/ttyUSB6 -S /dev/ttyUSB7
and the bfl is not detected or bfgminer stays in a blank screen.
even though all 0 to 7 ttyUSB exist
any ideas?
edit:
if i use bfgminer -c ../miner.txt it starts ok but no ICA start.
by the way i've mined with them before but not all together.