Difference between revisions of "IoTGateway/BSP/Android/Android BSP User Guide 6.0.1 for rk"

From ESS-WIKI
Jump to: navigation, search
Line 34: Line 34:
 
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ../bin/repo
 
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ../bin/repo
 
$ chmod a+x ../bin/repo
 
$ chmod a+x ../bin/repo
$ ../bin/repo init -u https://github.com/ADVANTECH-Rockchip/android-rk-manifest.git -b android-6.0.1 release_version.xml
+
$ ../bin/repo init -u https://github.com/ADVANTECH-Rockchip/android-rk-manifest.git -b android-6.0.1 [ release_version.xml ]
 
$ ../bin/repo sync
 
$ ../bin/repo sync
  
=== The release_version.xml  please refer :  https://github.com/ADVANTECH-Rockchip/android-rk-manifest/tree/android-6.0.1 ====
+
=== The release_version.xml  is an option, the default value is default.xml        please refer :  https://github.com/ADVANTECH-Rockchip/android-rk-manifest/tree/android-6.0.1 ====
 
</syntaxhighlight><syntaxhighlight lang="bash">_</syntaxhighlight>
 
</syntaxhighlight><syntaxhighlight lang="bash">_</syntaxhighlight>
 
== <span style="color:#0070c0">Building Android 6.0.1 image</span> ==
 
== <span style="color:#0070c0">Building Android 6.0.1 image</span> ==
Line 55: Line 55:
 
  <big><small>$ source build/envsetup.sh</small></big>
 
  <big><small>$ source build/envsetup.sh</small></big>
  
<span style="font-size: small"><span style="font-family: times new roman,times,serif">Execute the Android lunch command. In this example, the setup is for the production image of Advantech RISC platfrom device with user type. &nbsp;If you devices is RSB4680, &nbsp;you will be send command "&nbsp;lunch rsb4680-user</span></span>
+
<span style="font-size: small"><span style="font-family: times new roman,times,serif">Execute the Android lunch command. In this example, the setup is for the production image of Advantech RISC platfrom device with user type. &nbsp;If you devices is RSB4680, &nbsp;you will be send command "&nbsp;lunch rsb4680-userdebug</span></span>
  
 
  <big><small>$ lunch $PRODUCT-user</small></big>
 
  <big><small>$ lunch $PRODUCT-user</small></big>
Line 85: Line 85:
 
  <big><small>$ make -j4</small></big>
 
  <big><small>$ make -j4</small></big>
  
 +
<span style="color:#FF0000">''<u><span style="font-size: medium"><span style="font-family: times new roman,times,serif">'''Problems and Solutions'''</span></span></u>''</span>
 +
 +
<span style="font-family:times new roman,times,serif"></span>Compiled kernel<span style="font-family:times new roman,times,serif"></span>
 +
 +
<big><small>$ </small></big>&nbsp;chmod 555 kernel/scripts/gcc-wrapper.py
 +
 +
Compiled android
 +
'''<span style="font-size: small"><span style="font-family: times new roman,times,serif"></span></span>'''
 +
<big><small>$ </small></big>cp .repo/manifests/default.xml manifest.xml
 +
'''<span style="font-size: small"><span style="font-family: times new roman,times,serif"></span></span>'''
 
== <span style="color:#0070c0">Flash SD Card /EMMC</span> ==
 
== <span style="color:#0070c0">Flash SD Card /EMMC</span> ==
  
 
reference:{android_source}/RKDocs/ and {android_source}/RKTools/
 
reference:{android_source}/RKDocs/ and {android_source}/RKTools/
 +
 +
<u></u>'''''SD_Firmware_Tool.v1.46 ;AndroidTool_Release_v2.33 ; DriverAssitant_v4.2'''''<u>''<br/>''</u>
  
 
== <span style="color:#0070c0">Bootimg from MMC/SD on the Advantech RISC board</span> ==
 
== <span style="color:#0070c0">Bootimg from MMC/SD on the Advantech RISC board</span> ==
  
 
reference:{android_source}/RKDocs/ and {android_source}/RKTools/
 
reference:{android_source}/RKDocs/ and {android_source}/RKTools/

Revision as of 03:51, 11 April 2018

Android BSP Version

Android 6.0.1

Introduction

This document describes how to work with the RISC and ELAA Android 6.0.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.

Setup Ubuntu Host Computer

Required equipment and software

  • Ubuntu 14.04 LTS 64bit for Android build host OS
  • 80G bytes free disk spaces for build image

Install Ubuntu

  • IMPORTANT! You must be able to log in as root or use sudo to have root permissions during the installation.

Go to http://releases.ubuntu.com/14.04/ and download 64-bit PC (AMD64) desktop image: http://releases.ubuntu.com/14.04/ubuntu-14.04.3-desktop-amd64.iso for the installation.

Getting Android Source Code

Related version information:

  • Android 6.0.1
  • kernel 3.10.0
  • U-Boot 2014-10

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-Rockchip/android-rk-manifest.git -b android-6.0.1 [ release_version.xml ]
$ ../bin/repo sync

=== The release_version.xml  is an option, the default value is default.xml        please refer :  https://github.com/ADVANTECH-Rockchip/android-rk-manifest/tree/android-6.0.1 ====
_

Building Android 6.0.1 image

If your product is RSB-4680, the product name is rsb4680

$PRODUCT = rsb4680

Build Instructions

Set the $JAVA_HOME environment variable

$ export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/

Set up the environment for building. This only configures the current terminal.

$ source build/envsetup.sh

Execute the Android lunch command. In this example, the setup is for the production image of Advantech RISC platfrom device with user type.  If you devices is RSB4680,  you will be send command " lunch rsb4680-userdebug

$ lunch $PRODUCT-user

To build boot loader

Perform the following command in terminal console

$ cd u-boot/
$ make rk3288_rsb4680a2_2G_defconfig
$ make -j4

The one file, RK3288UbootLoader_V2.30.10.bin, will be located in directory

To build kernel image

Perform the following command in terminal console

$ cd kernel/ 
$ make rk3288_adv_defconfig
$ make -j4 rk3288-rsb4680-a2.img

To build system image

Perform the following command in terminal console

$ make -j4

Problems and Solutions

Compiled kernel

$  chmod 555 kernel/scripts/gcc-wrapper.py

Compiled android

$ cp .repo/manifests/default.xml manifest.xml

Flash SD Card /EMMC

reference:{android_source}/RKDocs/ and {android_source}/RKTools/

SD_Firmware_Tool.v1.46 ;AndroidTool_Release_v2.33 ; DriverAssitant_v4.2

Bootimg from MMC/SD on the Advantech RISC board

reference:{android_source}/RKDocs/ and {android_source}/RKTools/