/*************************************************************************
* I.MX6 Android 5.1.1 下载、编译
* 说明:
* 这里要提到的就是4.2版本,编译中断了,你接着编好像是没事的,但是这个
* 5.1.1版本貌似就得从头再编,这个有点郁闷。
*
* 2016-9-9 深圳 南山平山村 曾剑锋
************************************************************************/ 一、购买VPN(为什么要买VPN?因为要去和Google打交道):
https://www.expressvpn.xyz 二、下载参考文档:
http://www.nxp.com/zh-Hans/products/microcontrollers-and-processors/arm-processors/i.mx-applications-processors/i.mx-6-processors/i.mx6qp/i.mx-6duallite-processors-dual-core-3d-graphics-hd-video-arm-cortex-a9-core:i.MX6DL?fpsp=1&tab=Documentation_Tab 三、下载补丁包:
http://www.nxp.com/zh-Hans/products/software-and-tools/hardware-development-tools/sabre-development-system/sabre-platform-for-smart-devices-based-on-the-i.mx-6-series:RDIMX6SABREPLAT?fpsp=1&tab=Design_Tools_Tab 四、安装lib依赖:
sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z-dev ccache libgl1-mesa-dev libxml2-utils xsltproc unzip uuid uuid-dev zlib1g-dev liblz-dev liblzo2- liblzo2-dev lzop git-core curl u-boot-tools mtd-utils android-tools-fsutils 五、安装JDK:
sudo apt-get install openjdk--jdk 六、下载Android源代码:
$ cd ~
$ mkdir myandroid
$ mkdir bin
$ cd myandroid
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ ~/bin/repo init -u https://android.googlesource.com/platform/manifest -b android-5.1.1_r1
$ ~/bin/repo sync # this command loads most needed repos. Therefore, it can take several hours to load.
$ cd ~/myandroid/prebuilts/gcc/linux-x86/arm
$ git clone https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/armeabi-4.6
$ cd arm-eabi-4.6
$ git checkout android-4.4.3_r1 七、下载kernel:
$ cd ~/myandroid
$ git clone git://git.freescale.com/imx/linux-2.6-imx.git kernel_imx # the kernel repo is large. Therefore, this process can take a while.
$ cd kernel_imx
$ git checkout l5..1_2.1.0-ga 八、下载u-boot:
$ cd ~/myandroid/bootable
$ cd bootloader
$ git clone git://git.freescale.com/imx/uboot-imx.git uboot-imx
$ cd uboot-imx
$ git checkout l5..1_2.1.0-ga 九、在home目录解压补丁包:
. tar xvf IMX6_L5.1_2..0_AND_SOURCE_BSP.tar.gz
. cd android_L5..1_2.1.0-ga_core_source/code/
. tar xvf L5..1_2.1.0-ga.tar.gz
. source ~/android_L5..1_2.1.0-ga_core_source/code/L5..1_2.1.0-ga/and_patch.sh 十、开始打补丁,出现warning:
$ c_patch ~/android_L5..1_2.1.0-ga_core_source/code/L5..1_2.1.0-ga/ imx_L5..1_2.1.0-ga
......
Applying patch to hardware/broadcom/libbt
/home/zengjf/myandroid/hardware/broadcom/libbt/.git/rebase-apply/patch:: new blank line at EOF.
+
warning: line adds whitespace errors.
/home/zengjf/myandroid/hardware/broadcom/libbt/.git/rebase-apply/patch:: new blank line at EOF.
+
warning: line adds whitespace errors.
/home/zengjf/myandroid/hardware/broadcom/libbt/.git/rebase-apply/patch:: new blank line at EOF.
+
warning: line adds whitespace errors.
Applying patch to hardware/broadcom/wlan
Applying patch to packages/wallpapers/MusicVisualization
Applying patch to external/aac
Applying patch to external/tremolo
Applying patch to external/libpng
Applying patch to external/sonivox
Applying patch to packages/apps/DeskClock
*************************************************************
Success: Now you can build android code for FSL i.MX platform
************************************************************* 十一、编译:
. export JAVA_HOME=/usr/lib/jvm/java--openjdk-amd64/
. cd ~/myandroid
. source build/envsetup.sh
. lunch sabresd_6dq-user
. make >& | tee build-log.txt 十二、编译完成最后输出信息:
......
host C: libbz_32 <= external/bzip2/compress.c
host C: libbz_32 <= external/bzip2/decompress.c
host C: libbz_32 <= external/bzip2/bzlib.c
host StaticLib: libbz_32 (out/host/linux-x86/obj32/STATIC_LIBRARIES/libbz_intermediates/libbz.a)
Export includes file: bootable/recovery/applypatch/Android.mk -- out/host/linux-x86/obj32/EXECUTABLES/imgdiff_intermediates/export_includes
host Executable: imgdiff (out/host/linux-x86/obj32/EXECUTABLES/imgdiff_intermediates/imgdiff)
Notice file: bootable/recovery/applypatch/NOTICE -- out/host/linux-x86/obj/NOTICE_FILES/src//bin/imgdiff.txt
Notice file: external/bzip2/NOTICE -- out/host/linux-x86/obj/NOTICE_FILES/src//lib/libbz.a.txt
Install: out/host/linux-x86/bin/imgdiff
Import includes file: out/host/linux-x86/obj32/EXECUTABLES/bsdiff_intermediates/import_includes
host C: bsdiff <= external/bsdiff/bsdiff.c
external/bsdiff/bsdiff.c: In function 'main':
external/bsdiff/bsdiff.c::: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
Export includes file: external/bsdiff/Android.mk -- out/host/linux-x86/obj32/EXECUTABLES/bsdiff_intermediates/export_includes
host Executable: bsdiff (out/host/linux-x86/obj32/EXECUTABLES/bsdiff_intermediates/bsdiff)
Install: out/host/linux-x86/bin/bsdiff
Construct recovery from boot
mkdir -p out/target/product/sabresd_6dq/obj/PACKAGING/recovery_patch_intermediates/
PATH=out/host/linux-x86/bin:$PATH out/host/linux-x86/bin/imgdiff out/target/product/sabresd_6dq/boot.img out/target/product/sabresd_6dq/recovery.img out/target/product/sabresd_6dq/obj/PACKAGING/recovery_patch_intermediates/recovery_from_boot.p
chunk : type start len
chunk : type start len
chunk : type start len
Construct patches for chunks...
patch is bytes (of )
patch is bytes (of )
patch is bytes (of )
chunk : normal ( , )
chunk : deflate ( , ) (null)
chunk : normal ( , )
Install system fs image: out/target/product/sabresd_6dq/system.img
out/target/product/sabresd_6dq/system.img+out/target/product/sabresd_6dq/obj/PACKAGING/recovery_patch_intermediates/recovery_from_boot.p maxsize= blocksize= total= reserve= #### make completed successfully (:: (hh:mm:ss)) #### zengjf@zengjf:~/myandroid$ 十三、磁盘空间占用情况:
zengjf@zengjf:~/myandroid$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 97G 87G .2G % /
none .0K .0K % /sys/fs/cgroup
udev .0G .0K .0G % /dev
tmpfs 395M 1.1M 394M % /run
none 5.0M 5.0M % /run/lock
none .0G 152K .0G % /run/shm
none 100M 52K 100M % /run/user
zengjf@zengjf:~/myandroid$ 十四、u-boot编译:
. 环境变量:
. export ARCH=arm
. export CROSS_COMPILE=~/myandroid/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-
. 编译:
. make mx6dlsabresdandroid_config
. make 十五、kernel编译:
. 环境变量:
. export PATH=~/myandroid/bootable/bootloader/uboot-imx/tools:$PATH
. export ARCH=arm
. export CROSS_COMPILE=~/myandroid/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-
. 编译:
. make imx_v7_android_defconfig
. make uImage LOADADDR=0x10008000 十六、boot.img编译:
. cd ~/myandroid
. source build/envsetup.sh
. lunch sabresd_6dq-user
. make bootimage 十七、.bashrc环境变量
......
export JAVA_HOME=/usr/lib/jvm/java--openjdk-amd64/
export PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
export ARCH=arm
export CROSS_COMPILE=~/myandroid/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-
export PATH=~/myandroid/bootable/bootloader/uboot-imx/tools:$PATH export out=~/myandroid/out/target/product/sabresd_6dq
export uboot=~/myandroid/bootable/bootloader/uboot-imx
export kernel=~/myandroid/kernel_imx
export win=/mnt/hgfs/ftp_root
......

最新文章

  1. min.js反压缩
  2. 基于Session的国际化实现
  3. iOS Mail.app inject kit
  4. mac电脑如何不生成.DS_STORE文件
  5. 【NOIP2015】提高day2解题报告
  6. MongoDB 查询 (转) 仅限于C++开发
  7. 锁之“轻量级锁”原理详解(Lightweight Locking)
  8. ansible服务模块和组模块使用
  9. 题解西电OJ (Problem 1007 -做一名正气的西电人 )--长整型计算
  10. STL之map、multimap
  11. ZOJ 3188 ZOJ 3188 Treeland Exhibition(树形DP)
  12. 使用indent命令帮助排版源代码
  13. 获取ubuntu 的root密码,告别sudo
  14. 201521123016 《Java程序设计》第2周学习总结
  15. java子类继承关系
  16. MFC笔记5
  17. 三叔学FPGA系列之一:Cyclone V中的时钟资源
  18. 梯度下降(Gradient Descent)
  19. maven pom scope 含义
  20. deque_01

热门文章

  1. 程序包com.sun.image.codec.jpeg不存在解决方法
  2. Centos7安装遇到的问题及详解
  3. 使用NSOperationQueue简化多线程开发
  4. Solidworks如何绘制标准螺纹线
  5. 网页JS简繁体字转换
  6. Intel processor brand names-Xeon,Core,Pentium,Celeron----Pentium
  7. 记录:50多行程序中找出多写的一个字母e
  8. 6. IO复用:select 和 poll
  9. 《STL源代码剖析》---stl_deque.h阅读笔记(2)
  10. hibernate 的POJO状态