zoukankan      html  css  js  c++  java
  • qualcomm compile instructions

    qualcomm编译指令

    Compile the Entire Android Software

    source build/envsetup.sh
    
    lunch msm8909-userdebug
    
    make -jn (-n means the thread numbers of CPU)
    
    j表示cpu线程的个数。开启几个线程进行编译。一般和cpu的核心数相同,双核j选2,四核j选4.
    

    After compiling, it will generate many BIN files in directory of out/target/product/msm8909

    Compiling Different Parts of Android

    1. Compile aboot:
    Input Command:
    	make aboot -jn
    Target Folder:
    	work/LINUX/android/out/target/product/msm8909/
    Target File:
    	emmc_appsboot.mbn
    
    2. Compile kernel:
    
    Input Command:
    	make bootimage -jn
    Target Folder:
    	work/LINUX/android/out/target/product/msm8909
    Target File:
    	boot.img
    
    3. Compile system:
    Input Command:
    	make systemimage -jn
    Target Folder:
    	work/LINUX/android/out/target/product/msm8909
    Target File:
    	system.img
    
    4. Compile userdata:
    Input Command:
    	make userdataimage -jn
    Target Folder:
    	work/LINUX/android/out/target/product/msm8909
    Target File:
    	userdata.img
    
    5. Compile recovery:
    Input Command:
    	make recoveryimage -jn
    Target Folder:
    	work/LINUX/android/out/target/product/msm8909
    Target File:
    	recovery.img
    

    Tony Liu

    2017-4-28, Shenzhen

  • 相关阅读:
    插入排序
    排序算法结构表
    两个数字交换的四种方法
    LRU算法实现
    虚拟用户的配置
    【转】Linux查看CPU和内存使用情况
    Linux 多线程开发
    【转】RTSP流理解
    【转】DynDNS使用随笔
    【转】使用 udev 高效、动态地管理 Linux 设备文件
  • 原文地址:https://www.cnblogs.com/helloworldtoyou/p/6780201.html
Copyright © 2011-2022 走看看