Compilation Guide A13 AllWinneR
Compilation Guide A13 AllWinneR
To compile Jelly Bean for the OLinuxino board, you need to broadly go through the following steps:
1. Setup host OS
2. Setup environment on host OS
3. Get the sources
4. Configure the sources (should you wish to change something)
5. Compile
6. Flash the image
Host OS
Host OS setup is generally easy. You either start with a brand new machine, or a VM on which you
are going to compile your Android. Minimum settings are:
Once you have assembled your machine (or created the VM), you need to install Ubuntu 12.04 LTS
64 bit on it. I used the minimal iso (as it installs quickly and does not add other stuff that will take
resources and also boots quickly). We do not need a GUI on this machine. A CLI is enough. A good
practice is to install SSH server on the machine and from then on ssh into the machine from your
desktop.
JAVA (Oracle)
To compile Jelly Bean, you need Oracle Java. This is no longer available via apt repositories. You need
java version 1.6. I downloaded the package jdk-6u45-linux-x64.bin.
If you are not on at least this version, then it is not going to compile Jelly Bean. (Instructions are
same for ICS as well).
Other essentials
Before installing any other software, upgrade your installation to the latest.
You also need to configure USB access to actually be able to adb shell into the board.
Essentially:
export CCACHE_DIR=~/ccache
SOURCES
Create a directory with the name jb.
mkdir p ~/jb/sources/
cd ~/jb/sources/
wget http://emicrotec.at/public/ANDROID/android4.1-v1.2.tar.gz
wget http://emicrotec.at/public/ANDROID/lichee-4.1-v1.2.tar.gz
wget http://emicrotec.at/public/ANDROID/A13.txt
ls
Unpack them.
cd ~/jb/
mkdir exdroid
cd exdroid
In folder ~/jb/exdroid, you will now find two folders: android4.1 & lichee.
Configure
The directory android4.1 contains the android code that you might is wish to change. Configurations
are in devices/softwinner/nuclear-evb/ directory.
lichee contains the kernel, where you might want to add other modules. To configure:
cd ~/jb/exdroid/lichee/linux-3.0
Compile
Execute the following commands in order.
cd ~/jb/exdroid/android4.1
source build/envsetup.sh
cd ../lichee/
lunch
extract-bsp
make i j4
pack
~/jb/exdroid/lichee/tools/pack/sun5i_android_a13-evb.img
Flash
Flash the image using Live Suit v1.09 for Windows. Prefer Windows 7 for this job. If you are stuck
with Windows 8 (and cant revert to Windows 7), reboot Windows 8 into Test Mode. Otherwise, Live
Suit will not install or work. The Linux Live Suit does not work and cannot flash the image. The Live
Suit available from linux-sunxi is old and will not even recognize the image as correct. Download
Live Suit from cubieboard site. Live Suit on Linux will not work.