In this tutorial, I will show you the full process about setup a develop environment and compile/run a “hello world” on VoCore, step by step.
1. Prepare Linux
a) Download and install VirtualBox. VirtualBox is a famous open source VM software, I like it. If you are using Linux OS already, just ignore this.
https://www.virtualbox.org/wiki/Downloads
Click on the links, you will get the install package, run it to install VirtualBox into your computer. If you have VoCore you can not be a newbie to such thing.
b) Download Ubuntu. Ubuntu is the first UI Linux I used. I like the font 🙂
http://www.ubuntu.com/download/
After download, you will get the ubuntu install iso file.
c) Setup VirtualBox and install ubuntu into it.
Better to have 30GB free disk space(at least 20GB).
Click “Create”, then double click the new item in VBox.
It will popup a window request you to select the iso.
Now select your downloaded ubuntu iso, then click Start.
Rest is the install Ubuntu, I will not post here, please check ubuntu.com for the install instruction.
d) Install VirtualBox driver to ubuntu.
After ubuntu installed and startup successfully, we have to install VirtualBox driver so we can use the network, etc in VM.
Details is here: https://www.virtualbox.org/manual/UserManual.html
Now we have a Linux system in VM.
2. Prepare OpenWrt.(http://vocore.io/wiki/index/id:15)
a) Install necessary tools:
sudo apt-get install zlib1g-dev libncurses5-dev gawk subversion libssl-dev git
b) Download openwrt
git clone git://git.openwrt.org/openwrt.git
c) Make & Compile
goto openwrt folder(git create that), for example: cd ~/openwrt
make menuconfig
make sure the config is like upper picture.
call make to compile openwrt, or make -jX for faster speed.(X is your CPU core number +1, for my macbook pro, it is -j9)
3. Write your first application.
use vi or any text edit, create main.c.
#include <stdio.h>
int main(void)
{
return printf("hello world\n");
}
Now there are two ways to compile your main.c
One is to write a makefile, put the file to openwrt package folder, I will show this way in later tutorial.
Another way is super simple 🙂 Just make sure main.c is in current folder.
`find . -name mipsel-openwrt-linux-gcc` -g main.c -o hello
Now you have the compiled application, hello.
Note: you might get this warning, just ignore that.
mipsel-openwrt-linux-gcc: warning: environment variable 'STAGING_DIR' not defined
4. Upload to VoCore
a) Connect to your VoCore.
Here is the tutoral
VoCore: Simple Start Tutorial 1
VoCore: Simple Start Tutorial 2
b) scp the file to VoCore, password vocore.
scp ./hello root@192.168.61.1:/tmp/
c) ssh to VoCore.
ssh root@192.168.61.1
d) Try to run your first app.
Works well 🙂
Next tutorial, I will show how to remote control GPIO.