当前位置:   article > 正文

Android Automotive 源码下载、编译、虚拟机_谷歌车载系统android auto的架构源码下载

谷歌车载系统android auto的架构源码下载

#Android源码下载、编译、虚拟机

1,源码编译

1.1 环境搭建

  • 安装必须工具

    sudo apt-get install git-core gnupg \
     flex bison build-essential zip curl \
     zlib1g-dev gcc-multilib g++-multilib \
     libc6-dev-i386 libncurses5 lib32ncurses5-dev \
     x11proto-core-dev libx11-dev lib32z1-dev \ 
     libgl1-mesa-dev libxml2-utils xsltproc unzip fontconfig
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
  • 安装Repo工具

    mkdir ~/bin
    PATH=~/bin:$PATH
    curl -sSL  'https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT' |base64 -d > ~/bin/repo
    chmod a+x ~/bin/repo
    
    • 1
    • 2
    • 3
    • 4
  • 配置Git信息

    git config --global user.name "Your Name" 
    git config --global user.email "you@example.com"
    
    • 1
    • 2

1.2 源码下载

  • 创建工程目录

    mkdir Android_AOSP
    cd Android_AOSP
    
    • 1
    • 2
  • 初始化仓库

    • 修改repo地址,将 ~/bin/repo 中的地址

      if not REPO_URL:
          REPO_URL = 'https://gerrit.googlesource.com/git-repo
      
      • 1
      • 2

      修改为:

      if not REPO_URL:
          REPO_URL = 'https://gerrit-googlesource.proxy.ustclug.org/git-repo'
      
      • 1
      • 2
    • 查看安装官网,确定具体版本对应的tag

      repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-11.0.0_r38
      
      • 1
  • 同步代码

    由于网络不稳定,sync容易中断,创建sync.sh

    #!/bin/bash
    repo sync -j4
    while [ $? -ne 0 ]
    do
    echo "===========sync failed ,re-sync again==========="
    sleep 3
    repo sync -j4
    done
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    脚本添加运行权限

    chmod a+x sync.sh
    
    • 1

    运行脚本

    ./sync.sh
    
    • 1

1.3 源码编译

source build/envsetup.sh
lunch xxx
make -jN
  • 1
  • 2
  • 3

2,虚拟机

  • 先用AvdManager创建一个虚拟机 android11-car

  • 准备虚拟机必备文件:

    VerifiedBootParams.textproto
    advancedFeatures.ini
    build.prop
    data/
    encryptionkey.img
    kernel-ranchu
    ramdisk-qemu.img
    system.img
    userdata.img
    vendor-qemu.img
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 创建release脚本,执行虚拟机必备文件收集,并创建运行脚本

    #!/bin/bash
    
    PRODUCT=generic_car_x86_64
    WIN_DIR=/d/Android/images/${PRODUCT}
    ANDROID_PRODUCT_OUT=out/target/product/${PRODUCT}
    EMULATOR_DIR=/mnt/${WIN_DIR}/
    EMULATOR_SH=${EMULATOR_DIR}/emulator.sh
    
    # create dir
    mkdir -p ${EMULATOR_DIR}
    
    # cp images
    cp -avf $ANDROID_PRODUCT_OUT/encryptionkey.img ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/kernel-ranchu ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/ramdisk-qemu.img ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/system-qemu.img ${EMULATOR_DIR}/system.img
    cp -avf $ANDROID_PRODUCT_OUT/vendor-qemu.img ${EMULATOR_DIR}
    cp -rvf $ANDROID_PRODUCT_OUT/data ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/advancedFeatures.ini ${EMULATOR_DIR}
    #cp -avf $ANDROID_PRODUCT_OUT/userdata-qemu.img ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/userdata.img ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/system/build.prop ${EMULATOR_DIR}
    cp -avf $ANDROID_PRODUCT_OUT/VerifiedBootParams.textproto ${EMULATOR_DIR}
    #cp -avf $ANDROID_PRODUCT_OUT/source.properties ${EMULATOR_DIR}
    
    echo "#!/bin/bash" > ${EMULATOR_SH}
    echo "DIR=${WIN_DIR}" >> ${EMULATOR_SH}
    echo "emulator -avd android11-car \\
                   -verbose \\
                   -show-kernel \\
                   -shell \\
                   -memory 8192 \\
                   -no-snapshot-load \\
                   -skin 1280x800 \\
                   -writable-system \\
                   -system \${DIR}/system.img \\
                   -sysdir \${DIR}" >> ${EMULATOR_SH}
    echo "# when system.img has been reload, we should run with param: -wipe-data" >> ${EMULATOR_SH}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
  • 运行虚拟机

    windows端执行release目标目录中的emulator.sh脚本

  • 异常处理

    • remount

      添加运行参数 -writable-system

    • 黑屏

      添加运行参数 -wipe-data

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/501654
推荐阅读
相关标签
  

闽ICP备14008679号