Port the whole mineros to another linux distro for the RPi (e.g. raspbian).
Why?
Bitmine's custom linux distribution (yocto) is very minimal, it doesn't have a package manager or a gcc compiler to install other software (like no-ip for remote access, cgmon for automatic restarting if cgminer hangs, screen to observe cgminer running etc.)
My steps so far:
1. Download raspbian image from http://downloads.raspberrypi.org/raspbian_latest.
2. Write raspbian to another SD card using win32diskimager.
3. Copy the whole mineros directory to the new SD.
4. Put the new SD into the CC Desk's RPi (a bit tricky )
5. After booting, run
sudo apt-get update
sudo apt-get install python-setuptools
sudo easy_install -U RPIO
sudo apt-get install python-smbus
apt-get install python-pexpect
sudo aptitude install git autoconf libtool libcurl4-openssl-dev libncurses5-dev pkg-config yasm make libusb-1.0-0-dev
git clone git://github.com/ckolivas/cgminer.git cgminer
cd cgminer
./autogen.sh
./configure --enable-bitmine_A1
make
make install
So after these steps, everything "should" have been set...
But my problems are:
A. By manually running cgminer:
cgminer --text-only --lowmem --bitmine-a1-options 16000:800000:8000 -o stratum+tcp://nl1.ghash.io:3333 -O bomberb17.worker:1234
B.
root@raspberrypi:/home/pi# python /mineros/boot.py start
start-stop-daemon: unable to stat //python (No such file or directory)
start-stop-daemon: unable to stat //cgminer (No such file or directory)
So if someone familiar with linux can help solve this, please post! I can also provide link to download the raspbian image with all of the above steps done to save your time, PM if you want it..
(I have posted the above also in the "CC Troubleshooting" thread).
Look at boot.py - what daemons does it start? Do you have them installed?
I'm not sure how to answer the question, but check this out
http://pastebin.com/jWvPLQJQ
at line 52 I think something is going on. I forgot to tell you that all this is based on the previous firmware.