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

  • 相关阅读:
    HDOJ 2076 夹角有多大(题目已修改,注意读题)
    HDOJ 2058 The sum problem
    HDOJ 2099 整除的尾数
    HDOJ 2075 A|B?
    HDOJ 2071 Max Num
    HDOJ 2056 Rectangles
    HDOJ 2055 An easy problem
    HDOJ 2053 Switch Game
    HDOJ 2052 Picture
    P4139 上帝与集合的正确用法
  • 原文地址:https://www.cnblogs.com/helloworldtoyou/p/6780201.html
Copyright © 2011-2022 走看看