Post
Topic
Board Mining (Altcoins)
Re: Innosilicon A4+ setup tutorial (or A5)
by
chadl2
on 29/12/2017, 02:54:09 UTC
I also have some Innosilicon A5's I've been trying to get in Awesome Miner and was finally successful tonight. You need to edit three lines in the /home/inno_py/inno_config.py file. It looks like it generates a new run.sh file for each pool/pool change. I highlighted the lines and the adds below:

gInnoInitCmdStr = 'innominer_%s -o %s -u %s -p %s --A1Pll1 %s --A1Pll2 %s --A1Pll3 %s --A1Pll4 %s --A1Vol %s --api-listen --api-network --api-allow W:0/0 > /dev/null 2>&1'
gInnoBtcName    = 'T1'
gInnoBtcPool    = 'stratum+tcp://btc.s.innomining.com:1800'
gInnoBtcUser    = 'inno.btc'
gInnoBtcPwd     = 'x'
gInnoBtcFreq    = 1332
gInnoBtcVid     = 10
gInnoInitBtcCmd = gInnoInitCmdStr % (gInnoBtcName, gInnoBtcPool, gInnoBtcUser, gInnoBtcPwd, gInnoBtcFreq, gInnoBtcFreq, gInnoBtcFreq, gInnoBtcFreq, gInnoBtcVid)
gInnoLtcName    = 'T2'
gInnoLtcPool    = 'stratum+tcp://ltc.s.innomining.com:1900'
gInnoLtcUser    = 'inno.ltc'
gInnoLtcPwd     = 'x'
gInnoLtcFreq    = 1044
gInnoLtcVid     = 25
gInnoInitLtcCmd = gInnoInitCmdStr % (gInnoLtcName, gInnoLtcPool, gInnoLtcUser, gInnoLtcPwd, gInnoLtcFreq, gInnoLtcFreq, gInnoLtcFreq, gInnoLtcFreq, gInnoLtcVid)
gInnoDashName   = 'T3'
gInnoDashPool   = 'stratum+tcp://dash.s.innomining.com:2000'
gInnoDashUser   = 'inno.dash'
gInnoDashPwd    = 'x'
gInnoDashFreq   = 1100
gInnoDashVid    = 12
gInnoInitDashCmd= gInnoInitCmdStr % (gInnoDashName, gInnoDashPool, gInnoDashUser, gInnoDashPwd, gInnoDashFreq, gInnoDashFreq, gInnoDashFreq, gInnoDashFreq, gInnoDashVid)
gInnoXmrName    = 'T4'
gInnoXmrPool    = 'stratum+tcp://a8.s.innomining.com:19333'
gInnoXmrUser    = 'inno.001'
gInnoXmrPwd     = 'x'
gInnoXmrFreq    = 1000
gInnoXmrVid     = 175
gInnoInitXmrCmd = gInnoInitCmdStr % (gInnoXmrName, gInnoXmrPool, gInnoXmrUser, gInnoXmrPwd, gInnoXmrFreq, gInnoXmrFreq, gInnoXmrFreq, gInnoXmrFreq, gInnoXmrVid)
gInnoCmd1Pool   = gInnoInitCmdStr
gInnoCmd2Pool   = 'innominer_%s -o %s -u %s -p %s -o %s -u %s -p %s --A1Pll1 %s --A1Pll2 %s --A1Pll3 %s --A1Pll4 %s --A1Vol %s --api-listen --api-network --api-allow W:0/0 >/dev/null 2>&1'
gInnoCmd3Pool   = 'innominer_%s -o %s -u %s -p %s -o %s -u %s -p %s -o %s -u %s -p %s --A1Pll1 %s --A1Pll2 %s --A1Pll3 %s --A1Pll4 %s --A1Vol %s --api-listen --api-network --api-allow W:0/0 >/dev/null 2>&1'