Hikey is a one of the first 96Boards compliant development board manufactured by either LeMaker in China and CircuitCo in the US, and while the hardware requirements of 96Boards specifications are rather easy to meet, the software requirements including “bootloader (open source), accelerated graphics support (binary or open source), a Linux kernel buildable from source code based from mainline, or the latest Google-supported Android kernel version” are much harder to comply with. Linaro had a very good news for Linaro Connect Bangkok as they announced Hikey board was supported in Android Open Source Project (AOSP). So that means Hikey board will run the latest version of Android like Google Nexus devices, with the advantage of also getting more recent devices. If you want to build an Android image from AOSP just retrieve the source code:
1 2 |
repo init -u https://android.googlesource.com/platform/manifest repo sync -j8 |
Grab & extract vendors binaries for Hikey from Google.com. and complete the build:
1 2 3 |
source build/envsetup.sh lunch hikey-userdebug make -j8 droidcore |
[…]