I have a bitcoin miner, Spondoolies SP30
http://www.spondoolies-tech.com/prod...n-second-batch
which uses embedded linux, does not include a compiler (gcc), only has basic commands from busybox.
I am trying to install no-ip DDNS service for remote administration purposes. They don't officially support messing with their OS, but they sent me some instructions on installing a development environment on ubuntu.
These steps according to them would be as follows:
(from
http://www.docdroid.net/v1k4/install...4-lts.pdf.html )
prebuilt steps:
Code:
sudo apt-get update
sudo apt-get install git build-essential
sudo apt-get install autoconf
sudo apt-get install unzip
sudo apt-get install libtool
sudo apt-get install whois
sudo apt-get install pkg-config
sudo apt-get install ncurses-dev
sudo apt-get install libssl-dev
create working folders
Code:
mkdir workspace
cd workspace
get spoondolies package setup
Code:
git clone https://github.com/Spondoolies-Tech/sp30-top.git
download entire solution
Code:
cd sp30-top
make get
install toolchain
Code:
cd /opt
tar xf /home/ubuntu/workspace/sp30-top/toolchain/arm2013.05-CodeSourcery.tar.xz
cd -
add path to binaries in .bashrc
Code:
echo "export PATH=/opt/arm-2013.05/bin/:$PATH" >> ~/.bashrc
. ~/.bashrc
init projects configuration
build binaries
prepare uImage spondoolies.dtb
What would be the next steps to install no-ip to my machine?
Thanks!