Difference between revisions of "IoTGateway/BSP/Android/Android BSP User Guide 7.1.1 1.0.0"
From ESS-WIKI
| Line 14: | Line 14: | ||
If you don't know much about Docker, please refer to [[IoTGateway/Docker|IoTGateway/Docker]] for details. | If you don't know much about Docker, please refer to [[IoTGateway/Docker|IoTGateway/Docker]] for details. | ||
| + | |||
| + | == <span style="color:#0070c0">Getting Android Source Code</span> == | ||
| + | |||
| + | Related version information: === | ||
| + | |||
| + | *Android 6.0.1_2.1.0 | ||
| + | *kernel Yocto-2.0 | ||
| + | *U-Boot Yocto-2.0 | ||
| + | |||
| + | <span style="font-size:medium">'''<span style="font-family: times new roman,times,serif"><small>Step1 : To pull down the Android source tree to your working directory from the repositories as specified in the default manifest</small></span>'''</span> | ||
| + | <syntaxhighlight lang="bash">$ mkdir myandroid | ||
| + | $ mkdir bin | ||
| + | $ cd myandroid/ | ||
| + | $ curl https://storage.googleapis.com/git-repo-downloads/repo > ../bin/repo | ||
| + | $ chmod a+x ../bin/repo | ||
| + | $ ../bin/repo init -u https://github.com/ADVANTECH-Corp/android-manifest.git -b n7.1.1_1.0.0-ga -m release_version.xml | ||
| + | $ ../bin/repo sync | ||
| + | |||
| + | === The release_version.xml please refer : https://github.com/ADVANTECH-Corp/android-manifest/tree/n7.1.1_1.0.0-ga ==== | ||
| + | |||
| + | </syntaxhighlight><span style="font-size:medium">'''<span style="font-family: times new roman,times,serif"><small>Step2 : Patch to Android M6.0.1_2.1.0</small></span>'''</span><syntaxhighlight lang="bash">$ cd myandroid/bootable/bootloader/uboot-imx/ | ||
| + | $ patch -p1 <../../../patches_android_7.1.1/7001-Uboot_Yocto_4.1.15_1.2.0-to-Android_N7.1.1_1.0.0.patch | ||
| + | $ cd myandroid/kernel_imx/ | ||
| + | $ patch -p1 <../patches_android_7.1.1/7001-Linux_Yocto_4.1.15_1.2.0-to-Android_N7.1.1_1.0.0.patch | ||
| + | $ cd myandroid / | ||
| + | </syntaxhighlight> | ||
Revision as of 07:47, 20 May 2017
Contents
Android BSP Version
Android 7.1.1_1.0.0
Introduction
This document describes how to work with the RISC Android 7.1.1 Board Support Package (BSP) release. The BSP includes bootloaders; the Android Linux kernel and root file system; and tools and documentation to ease development, deployment, and execution of Android-based systems.
Build Environment on Host
Currently, we adopt Docker as build environment.
You can get the latest version of advrisc/u16.04-imx6abv5 Docker image for developing imx6 risc projects.
If you don't know much about Docker, please refer to IoTGateway/Docker for details.
Getting Android Source Code
Related version information: ===
- Android 6.0.1_2.1.0
- kernel Yocto-2.0
- U-Boot Yocto-2.0
Step1 : To pull down the Android source tree to your working directory from the repositories as specified in the default manifest
$ mkdir myandroid
$ mkdir bin
$ cd myandroid/
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ../bin/repo
$ chmod a+x ../bin/repo
$ ../bin/repo init -u https://github.com/ADVANTECH-Corp/android-manifest.git -b n7.1.1_1.0.0-ga -m release_version.xml
$ ../bin/repo sync
=== The release_version.xml please refer : https://github.com/ADVANTECH-Corp/android-manifest/tree/n7.1.1_1.0.0-ga ====
$ cd myandroid/bootable/bootloader/uboot-imx/
$ patch -p1 <../../../patches_android_7.1.1/7001-Uboot_Yocto_4.1.15_1.2.0-to-Android_N7.1.1_1.0.0.patch
$ cd myandroid/kernel_imx/
$ patch -p1 <../patches_android_7.1.1/7001-Linux_Yocto_4.1.15_1.2.0-to-Android_N7.1.1_1.0.0.patch
$ cd myandroid /