Android 源码编译

一,虚拟机安装

​ 1.1 进入https://cn.ubuntu.com/download中文官网下载iso镜像

1.2  这里我们下载Ubuntu 18.04 LTS 

1.3虚拟VM机安装ubuntu系统,注意编译源码需要至少16G运行内存和400G磁盘空间,尽量设大点

二 配置编译环境

2.1 下载android源码,安装python

apt-get install python (Repo 是基于 Python 2.x 中的特定功能构建的,与 Python 3 不兼容。要使用 Repo,请安装 Python 2.x:)

如果是 Ubuntu 18.04 只能使用python2.x

如果是Ubuntu 20.04 则使用python3.x

由于环境变量默认python,所以用python3 -v才能获取指令。

不过我们可以合并,使用以下命令

sudo ln -s /usr/bin/python3  /usr/bin/python

这样python -v就可以获取指令了

遇到错误,无root权限

apt-get install python
E: 无法打开锁文件 /var/lib/dpkg/lock-frontend - open (13: 权限不够)
E: 无法获取 dpkg 前端锁 (/var/lib/dpkg/lock-frontend),请查看您是否正以 root 用户运行?

解决方法:

输入su root 获得权限

如果提示认证失败,则改下密码

dong@dong:~/桌面$ su root
密码:
su: 认证失败

解决方法:

修改 root 用户密码

sudo passwd root

再次输入命令apt-get install python,遇到错误,资源占用,再次输入命令apt-get install python,这个时候可以安装成功了

E: 无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资源暂时不可用)
E: 无法获取 dpkg 前端锁 (/var/lib/dpkg/lock-frontend),是否有其他进程正占用它?

解决方法:

先执行卸载:sudo rm /var/lib/dpkg/lock

然后再执行命令重新配置一下:sudo dpkg --configure -a

再次运行安装命令:sudo apt-get install python

如果出现以下错误,被加锁

dong@dong:~$ sudo dpkg --configure -a
dpkg: 错误: 另外一个进程已经为 dpkg frontend 加锁

解决方法:依次执行以下命令

sudo rm /var/lib/dpkg/updates/*

sudo apt-get update

sudo apt-get upgrade

卸载更新python版本

检查版本

python --version

卸载版本

sudo apt-get purge python<版本号>

删除Python安装目录

sudo rm -rf /usr/lib/python<版本号>

清理残留文件

sudo apt-get autoremove

sudo apt-get autoclean

验证卸载结果,如果输出显示 “command not found” 或类似的消息,说明Python已成功卸载。

python --version

如果需要指定python,则按下面的操作

sudo apt install python3

 sudo update-alternatives --install  /usr/bin/python python /usr/bin/python2.7(python2安装地址)  2(权重号)
sudo update-alternatives --install  /usr/bin/python python /usr/bin/python3.7(python3的安装地址)  3(权重号)

sudo update-alternatives --config python

2.2 安装Git & 配置Git信息

sudo apt-get install git
git config --global user.name dong
git config --global user.email 809459535@qq.com

2.3 安装curl

sudo apt-get install curl

如果直接下载源码会报错, 提示需要curl

dong@dong:~/桌面$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo

Command 'curl' not found, but can be installed with:

sudo snap install curl  # version 8.1.2, or
sudo apt  install curl  # version 7.68.0-1ubuntu2.20

See 'snap info curl' for additional versions.

我们根据提示输入

sudo snap install curl  # version 8.1.2

 2.4 下载repo

mkdir ~/bin

PATH=~/bin:$PATH

curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

chmod a+x ~/bin/repo

//打开环境变量文件

sudo vim /etc/profile

添加下面两行

export PATH=~/.bin:$PATH
export REPO_URL=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/

//刷新缓存

source /etc/profile

下载报错

curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to storage.googleapis.com:443

解决办法:需要fanqiang,我们切换为清华镜像:

curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo > ~/bin/repo

repo文件可能会报错,出现以下错误,

我们检测到您所在的子网和/或所使用的客户端存在大量下载某些较大二进制文件的行为,为保证用户的正常使用,我们阻断了此类请求。

We have detected enormous traffic from your network or client and have blocked your requests to ensure the quality of service for normal users.

Nous avons détecté un grand nombre de téléchargements de certains fichiers binaires volumineux à partir de votre sous-réseau et/ou du client que vous utilisez et avons bloqué ces requêtes pour garantir un accès normal aux utilisateurs.

お客様のサブネットおよび/またはクライアントで、特定の大きなバイナリのダウンロードを多数検出しました。お客様の通常の使用のためこれらのリクエストをブロックさせていただきます。

您可以尝试更改网络环境或更换客户端;您也可以联系 support@tuna.tsinghua.edu.cn 并附上下方的标识符。

解决:

这个可能是连接的公共不安全的网络,禁止下载大型二进制文件,我们主机换个wifi,再次执行repo应该就可以了

 执行sudo vim /etc/profile,报错找不到vim命令

dong@dong:~/桌面$ sudo vim /etc/profile
sudo: vim:找不到命令

解决方法:需要安装vim

sudo apt-get install vim

2.5 创建源码存放目录

 mkdir aosp  (根据实际情况来新建目录)
 cd aosp

报错,提示无法创建目录

mkdir: 无法创建目录"/home/ubuntu/aosp": 没有那个文件或目录

解决:

先进入root模式:

sudo -s

再进入home目录

cd /home

再创建 ubuntu目录

mkdir /home/ubuntu/

再创建 aosp目录

mkdir /home/ubuntu/aosp

2.6 查看要下载的分支

git clone https://aosp.tuna.tsinghua.edu.cn/platform/manifest
cd manifest/
git branch -a

用q退出预览

或者Google官网查看版本代号标记

https://source.android.com/docs/setup/about/build-numbers?hl=zh-cn#source-code-tags-and-builds

比如Android7.1.0的 对应的标记

NDE63Xandroid-7.1.0_r7NougatPixel XL、Pixel2016-11-05
NDE63Vandroid-7.1.0_r6NougatPixel XL、Pixel2016-11-05
NDE63Uandroid-7.1.0_r5NougatPixel XL、Pixel2016-11-05
NDE63Pandroid-7.1.0_r4NougatPixel XL、Pixel2016-10-05
NDE63Landroid-7.1.0_r2NougatPixel XL、Pixel2016-10-05
NDE63Handroid-7.1.0_r1NougatPixel XL、Pixel2016-10-05

2.7 初始化仓库

repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest

2.8 repo指定Android版本

repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.0_r1

repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-9.0.0_r46

repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-13.0.0_r35

repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-7.1.0_r1

报错:没有python文件夹

dong@dong:~/桌面/aosp$ repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-13.0.0_r35
/usr/bin/env: “python”: 没有那个文件或目录

解决:

查看python安装位置

whereis python3

显示如下:

python3: /usr/bin/python3.8 /usr/bin/python3 /usr/lib/python3.8 /usr/lib/python3.9 /usr/lib/python3 /etc/python3.8 /etc/python3 /usr/local/lib/python3.8 /usr/include/python3.8 /usr/share/python3 /usr/share/man/man1/python3.1.gz

sudo ln -s /usr/bin/python3 /usr/bin/python

报错,不能下载google的仓库,需要切换清华镜像

root@dong:/home/dong/桌面/aosp# repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.0_r1
Downloading Repo source from https://gerrit.googlesource.com/git-repo
fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
fatal: error [Errno 111] Connection refused
fatal: double check your --repo-rev setting.
fatal: cloning the git-repo repository failed, will remove '.repo/repo'

解决:

打开全局变量配置文件

sudo gedit ~/.bashrc

添加全局变量我,们在末尾添加这两行并保存:
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'

使配置文件生效

source ~/.bashrc

报错,找不到repo命令

root@dong:/home/dong/桌面/aosp# repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.0_r1

找不到命令“repo”,您的意思是:

  command 'reno' from deb python3-reno (2.11.2-2build1)
  command 'repl' from deb mailutils-mh (1:3.7-2.1)
  command 'repl' from deb mmh (0.4-2)
  command 'repl' from deb nmh (1.7.1-6)
  command 'rep' from deb rep (0.92.5-3build5)
  command 'repc' from deb qtchooser (66-2build1)

尝试 apt install <deb name>

解决:

卸载重装repo

sudo apt-get remove repo

 如果提示版本不对,就按命令安装repo

root@dong:/home/dong/aosp# repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-7.1.0_r1

Command 'repo' not found, but can be installed with:

snap install git-repo  # version 1.12.37-3, or
apt  install repo    

See 'snap info git-repo' for additional versions.

解决:

apt  install repo 

报错,repo设置失败

dong@dong:~/桌面/aosp$ repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-13.0.0_r35
Downloading Repo source from https://gerrit.googlesource.com/git-repo
fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
fatal: error [Errno 111] Connection refused
fatal: double check your --repo-rev setting.
fatal: cloning the git-repo repository failed, will remove '.repo/repo'

解决:

重新初始化repo,设置repo环境变量

export PATH=~/.bin:$PATH
export REPO_URL=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/

成功实例:

dong@dong:~/桌面/aosp$ repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-13.0.0_r35
Downloading Repo source from https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/
remote: Enumerating objects: 4882, done.
remote: Counting objects: 100% (4882/4882), done.
remote: Compressing objects: 100% (2422/2422), done.
remote: Total 8618 (delta 4305), reused 2460 (delta 2460), pack-reused 3736
接收对象中: 100% (8618/8618), 4.18 MiB | 3.54 MiB/s, 完成.
处理 delta 中: 100% (5569/5569), 完成.

2.9 同步源码

repo sync  j8(j8是开启的线程数量,等待源代码下载完成,长时间等待,若失败请检查网络等情况)

开始下载源码,大概需要5到6个小时,占了100多G的磁盘空间

开始同步

dong@dong:~/桌面/aosp$ repo sync
remote: Enumerating objects: 5288, done.        
remote: Counting objects:   0% (1/5288)        
remote: Counting objects:   1% (53/5288)        
remote: Counting objects:   2% (106/5288)        
remote: Counting objects:   3% (159/5288)        
remote: Counting objects:   4% (212/5288)        
remote: Counting objects:   5% (265/5288)        
remote: Counting objects:   6% (318/5288)        
remote: Counting objects:   7% (371/5288)      
 

下载成功,4到5个钟头

处理 delta 中:  95% (32415/34113)
处理 delta 中:  96% (32750/34113)
处理 delta 中:  97% (33208/34113)
处理 delta 中:  98% (33455/34113)
处理 delta 中:  99% (34110/34113)
处理 delta 中: 100% (34113/34113)
处理 delta 中: 100% (34113/34113), 完成 413 个本地对象.
Fetching: 22% (252/1135) 1:10:04 | 4 jobs | 5:19 platform/external/icu @ exter..
Fetching: 100% (1135/1135), done in 4h53m27.407s

更新,又需要1个小时

Checking out: 95% (1083/1135) platform/prebuilts/vndk/v29正在更新文件:  73% (531Checking out: 97% (1103/1135) platform/system/keymaster正在更新文件:  73% (533/7正在更新文件: 100% (724/724), 完成.
正在更新文件: 100% (119/119), 完成.
正在更新文件: 100% (111/111), 完成.
Checking out: 97% (1108/1135) platform/prebuilts/gcc/linux-x86/host/x86_64-linuxChecking out: 97% (1109/1135) platform/prebuilts/gcc/linux-x86/host/x86_64-w64-mChecking out: 99% (1129/1135) platform/prebuilts/module_sdk/OnDevicePersonalizatChecking out: 100% (1135/1135), done in 1h23m34.934s
repo sync has finished successfully.

 

2.10 如果出现失败可以把repo脚本里面替换REPO_URL镜像源

REPO_URL = "https://gerrit.googlesource.com/git-repo"

换为

REPO_URL = 'https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'

三 linux vim 编辑 保存 退出

vim /etc/profile

3.2 编辑文件

按 i 进行编辑

3.3  保存与退出

首先按esc键返回命令编辑模式,刚才的Insert会消失

按英文状态的 :

:q! 不保存文件,强制退出

:w 保存文件,不退出vi命令

:wq 保存文件,退出vi命令

四 驱动下载

4.1 官网下载对应版本的驱动

https://developers.google.cn/android/drivers#redfintp1a.221105.002

4.2 找到piexl 5对应的驱动文件

4.3 解压到aosp根目录

tar -xvzf qcom-redfin-tp1a.221005.002-e7e20f49.tgz -C ~/GitProjects/aosp/
tar -xvzf google_devices-redfin-tp1a.221005.002-3daf7ea0.tgz  -C ~/GitProjects/aosp/

4.4 运行解压出来的脚本

./extract-qcom-redfin.sh
./extract-google_devices-redfin.sh

五 AOSP项目源码结构

  • abi Application Binary Interface 应用程序二进制接口,abi相信同学们在SO库调用上遇到过,如果不支持该平台的话就说不ABI不支持。
  • art Android Runtime 安卓运行时。这个会提前把字节码编译成二进制机器码保存起来,执行的时候加载速度比较快。Dalvik虚拟机则是在加载以后再去编译的,所以速度上ART会比Dalvik快一点。牺牲空间来赢取时间。
  • bionic 基础库,Android系统与Linux内核的桥梁。Bionic 音标为 bīˈänik,翻译为"仿生"。
  • bootable 系统启动引导相关程序
  • build 用于构建Android系统的工具,也就是用于编译Android系统的
  • cts Compatibility Test Suite 兼容性测试
  • dalvik dalvik虚拟机,用于解析执行dex文件的虚拟机
  • developers 开发者目录
  • developerment 开发目录,比如说应用,application就在里面了,apps
  • devices 设备相关的配置信息,什么索尼、HTC、自己的产品,就可以定义在这个目录下了
  • docs 文档
  • external 开源模组相关文件
  • frameworks 系统架构,Android的核心了
  • hardware hal层代码,硬件抽象层
  • libcore 核心库
  • libnativehelper native帮助库,实现JNI的相关文件
  • ndk native development kit
  • out 输出目录,编译以后生成的目录,相关的产出就在这里了
  • packages 应用程序包。一些系统的应用就在这里了,比如说蓝牙,Launcher,相机,拨号之类的。
  • pdk Plug-in Development Kit (PDK) is designed to help you build your own pattern projects
  • platform_testing 平台测试
  • prebuilts x86/arm架构下预编译的文件
  • sdk software development kit
  • system 底层系统文件
  • toolchain 工具链
  • tools 工具文件
  • Makefile mk文件,用于控制编译

六 系统编译

6.1 Android10以上需要安装以下工具包

sudo apt install unzip zip libssl-dev  libffi-dev gnupg flex bison gperf build-essential  curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev x11proto-core-dev libx11-dev libz-dev ccache libgl1-mesa-dev libxml2-utils xsltproc

6.2 安装openjdk8

sudo apt-get install openjdk-8-jdk 

(安装不成功检查ubuntu是否换源、是否有更新软件包列表)

sudo apt-get update

6.3 安装依赖

sudo apt-get install libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev g++-multilib
sudo apt-get install -y git flex bison gperf build-essential libncurses5-dev:i386
sudo apt-get install tofrodos python-markdown libxml2-utils xsltproc zlib1g-dev:i386
sudo apt-get install dpkg-dev libsdl1.2-dev libesd0-dev
sudo apt-get install git-core gnupg flex bison gperf build-essential
sudo apt-get install zip curl zlib1g-dev gcc-multilib g++-multilib
sudo apt-get install libc6-dev-i386
sudo apt-get install lib32ncurses5-dev x11proto-core-dev libx11-dev
sudo apt-get install libgl1-mesa-dev libxml2-utils xsltproc unzip m4
sudo apt-get install lib32z-dev ccache
sudo apt-get install libssl-dev

如果安装 sudo apt-get install libesd0-dev 报 Unable to locate package libesd0-dev 这个错,解决办法 

sudo gedit /etc/apt/sources.list  //在行尾添加如下两行的内容
deb http://us.archive.ubuntu.com/ubuntu/ xenial main universe
deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main universe

6.4 设置启用ccache (加快重新编译源码时的速度。可选)

export USE_CCACHE=1  (在你home主目录的.bashrc中加入)
export CCACHE_DIR=/home/ubuntu/.ccache  (指定一个缓存目录,也可以不指定,默认目录为你当前用户目录下的.ccache)
aosp/prebuilts/misc/linux-x86/ccache/ccache -M 50G (这个命令在Android源码中,缓存大小按照自己的硬盘来适当调整)
source ~/.bashrc  (source命令使修改立即生效)

6.5 编译

cd aosp

source build/envsetup.sh
lunch 47 (lunch选定的版本按照实际情况来)
make -j16  (和cpu有关,适当调整数字)

6.6 如果编译报以下错误,则标识内存不足,保证16GB以上内存

98% 392/397] analyzing Android.bp files and generating ninja file at out/soong
FAILED: out/soong/build.ninja
cd “KaTeX parse error: Expected 'EOF', got '&' at position 49: …soong_build")" &̲& BUILDER="PWD/KaTeX parse error: Expected 'EOF', got '&' at position 50: …soong_build")" &̲& cd / && env -…BUILDER” --top “$TOP” --soong_out “out/soong” --out “out” -o out/soong/build.ninja --globListDir build --globFile out/soong/globs-build.ninja -t -l out/.module_paths/Android.bp.list --available_env out/soong/soong.environment.available --used_env out/soong/soong.environment.used.build Android.bp
Killed
00:31:16 soong bootstrap failed with: exit status 1

解决:

1. 回到根目录
cd
2. 查看交换区大小
free -m
3. 关闭原来的swap文件
sudo swapoff /swapfile
4. 删除原来的swpa文件
sudo rm /swapfile
5. 重新创建spap文件
sudo dd if=/dev/zero of=/swapfile bs=1G count=16
6. 赋予权限
sudo chmod 0600 /swapfile
7.创建文件系统
sudo mkswap -f /swapfile
8. 开启swapfile
sudo swapon /swapfile

6.7 删除上一次编译的结果,初次编译可以不需要这一步

make clobbe

 如果提示make找不到,则需要安装make工具

oot@dong:/home/dong/桌面#  make clean

Command 'make' not found, but can be installed with:

apt install make        # version 4.2.1-1.2, or
apt install make-guile  # version 4.2.1-1.2

解决方法:按提示输入以下命令

apt install make  # version 4.2.1-1.2

6.8 编译成功会显示下面内容:

Creating filesystem with parameters:
    Size: 2147483648
    Block size: 4096
    Blocks per group: 32768
    Inodes per group: 8192
    Inode size: 256
    Journal blocks: 8192
    Label: system
    Blocks: 524288
    Block groups: 16
    Reserved block group size: 127
Created filesystem with 2216/131072 inodes and 199826/524288 blocks
[100% 7669/7669] Install system fs ima.../target/product/generic_x86/system.img
out/target/product/generic_x86/system.img+ maxsize=2192446080 blocksize=2112 total=2147483648 reserve=22146432

#### make completed successfully (01:24:41 (hh:mm:ss)) ####

会在源码跟目录out/target/product/angler目录下生成镜像文件:

  • system.img:系统镜像
  • ramdisk.img:根文件系统镜像
  • userdata.img:用户数据镜像
  • recovery.img:recovery镜像
  • boot.img:启动镜像
  • vendor.img:驱动镜像

最终会在 out/target/product/generic_x86/目录生成了三个重要的镜像文件: system.img、userdata.img、ramdisk.img。大概介绍着三个镜像文件:

  • system.img:系统镜像,里面包含了Android系统主要的目录和文件,通过init.c进行解析并mount挂载到/system目录下。
  • userdata.img:用户镜像,是Android系统中存放用户数据的,通过init.c进行解析并mount挂载到/data目录下。
  • ramdisk.img:根文件系统镜像,包含一些启动Android系统的重要文件,比如init.rc。

 6.9 其它指令说明
- croot: Changes directory to the top of the tree.
- m: Makes from the top of the tree.
- mm: Builds all of the modules in the current directory.
- mmm: Builds all of the modules in the supplied directories.
- cgrep: Greps on all local C/C++ files.
- jgrep: Greps on all local Java files.
- resgrep: Greps on all local res/*.xml files.
- godir: Go to the directory containing a file.
- clean - m clean 会删除此配置的所有输出和中间文件。此内容与 rm -rf out/ 相同
其中mmm指令就是用来编译指定目录.通常来说,每个目录只包含一个模块.比如这里我们要编译Setting 模块,执行指令:
mmm packages/apps/Settings/

6.8 参考

https://www.cnblogs.com/stlong/p/17654389.html

https://blog.csdn.net/lucky_tom/article/details/127825300

https://blog.csdn.net/m0_37099118/article/details/123767615

https://www.cnblogs.com/stlong/p/17645300.html

https://www.jianshu.com/p/5eaec7be3da7

https://www.jianshu.com/p/197096d3206d

七 Ubuntu上删除AOSP源码

7.1 打开终端,进入AOSP源码的目录。如果你不知道源码的具体位置,可以使用以下命令来查找:这将会在整个系统中搜索build/envsetup.sh文件,该文件存在于AOSP源码目录中。

find / -name "build/envsetup.sh"

7.2  执行以下命令来进入AOSP源码环境:

source build/envsetup.sh

7.3 进入AOSP源码目录:

cd <AOSP源码目录>
 

7.4 执行以下命令来清除源码:会清除所有生成的文件和目录。

 make clean

7..5 删除AOSP源码目录: 会永久删除源码

rm -rf <AOSP源码目录>

八 需要安装的工具集合

sudo apt-get install openjdk-8-jdk //jdk 这个不用说了吧
sudo apt-get install python //Repo 是基于 Python 2.x 中的特定功能构建的,与 Python 3 不兼容
sudo apt-get install phablet-tools //git工具包
sudo apt-get install curl //上传和下载数据的工具
sudo apt-get install build-essential //提供编译程序必须软件包的列表信息
sudo apt-get install make //源码编译工具
sudo apt-get install gcc //GNU编译器套件
sudo apt-get install g++
sudo apt-get install libc6-dev //共享库
sudo apt-get install patch //补丁工具
sudo apt-get install texinfo //文档系统
sudo apt-get install libncurses-dev //系统的必备库
sudo apt-get install git-core gnupg //git的工具包,虽然有git了,但是有备无患
sudo apt-get install ncurses-dev //编译内核的时候需要
sudo apt-get install valgrind //内存检查器

九 模拟器安装

9.1 在Google手机上刷机时需要下载Google硬件驱动,找到对应的机型,点击Link即可下载
下载网址:https://developers.google.cn/android/blobs-preview

9.2 提取驱动,将下载的驱动压缩包拷贝的Android源码根目录,并进行解压,解压后得到一个.sh的脚本

9.3 解压驱动

tar -zxvf google_devices-oriole-sp2a.220305.013.a3-04c512f4.tgz

9.4 执行extract-google_devices-oriole.sh脚本提取驱动,运行提示"Press Enter to view the license"时输入回车后即可,后面输入d来进行翻页

./extract-google_devices-oriole.sh 

 

9.5 直到提示输入"I ACCEPT"时,按提示输入后回车即可完成驱动的提取,完成后源码根目录多了一个vendor的目录 

9.6 设置代码编译环境,每次重启shell时都需要配置编译环境,在根目录执行如下命令:  

source build/envsetup.sh 

或 

. build/envsetup.sh

9.7 执行build/envsetup.sh脚本后则在环境中配置几个shell命令,后续即可使用这些命令选择设备目标和编译,输入hmm命令即可查看完整的命令列表: 

- lunch:      lunch <product_name>-<build_variant>
              Selects <product_name> as the product to build, and <build_variant> as the variant to
              build, and stores those selections in the environment to be read by subsequent
              invocations of 'm' etc.
- tapas:      tapas [<App1> <App2> ...] [arm|x86|arm64|x86_64] [eng|userdebug|user]
              Sets up the build environment for building unbundled apps (APKs).
- banchan:    banchan <module1> [<module2> ...] [arm|x86|arm64|x86_64] [eng|userdebug|user]
              Sets up the build environment for building unbundled modules (APEXes).
- croot:      Changes directory to the top of the tree, or a subdirectory thereof.
- m:          Makes from the top of the tree.
- mm:         Builds and installs all of the modules in the current directory, and their
              dependencies.
- mmm:        Builds and installs all of the modules in the supplied directories, and their
              dependencies.
              To limit the modules being built use the syntax: mmm dir/:target1,target2.
- mma:        Same as 'mm'
- mmma:       Same as 'mmm'
- provision:  Flash device with all required partitions. Options will be passed on to fastboot.
- cgrep:      Greps on all local C/C++ files.
- ggrep:      Greps on all local Gradle files.
- gogrep:     Greps on all local Go files.
- jgrep:      Greps on all local Java files.
- ktgrep:     Greps on all local Kotlin files.
- resgrep:    Greps on all local res/*.xml files.
- mangrep:    Greps on all local AndroidManifest.xml files.
- mgrep:      Greps on all local Makefiles and *.bp files.
- owngrep:    Greps on all local OWNERS files.
- rsgrep:     Greps on all local Rust files.
- sepgrep:    Greps on all local sepolicy files.
- sgrep:      Greps on all local source files.
- godir:      Go to the directory containing a file.
- allmod:     List all modules.
- gomod:      Go to the directory containing a module.
- pathmod:    Get the directory containing a module.
- outmod:     Gets the location of a module's installed outputs with a certain extension.
- dirmods:    Gets the modules defined in a given directory.
- installmod: Adb installs a module's built APK.
- refreshmod: Refresh list of modules for allmod/gomod/pathmod/outmod/installmod.
- syswrite:   Remount partitions (e.g. system.img) as writable, rebooting if necessary.

9.8 使用lunch启动模拟器 

 lunch sdk_phone_x86_64

9.8 使用lunch启动Car

lunch aosp_oriole-userdebug 

不同的设备选择的目标不同,根据Android官网给出的设备目录选项来选择
网址:https://source.android.google.cn/setup/build/running#selecting-device-build 

9.9开始编译,输入m或make即可编译整个Android源码,也可使用参数-j指定线程数

m

make -j8

如果只编译某一部分,则先切换的对应的目录下,使用mm命令进行编译

mm

十 刷机

10.1 刷机方式

Android模拟设备,输入emulator命令即可启动Android模拟器

emulator -verbose -show-kernel -cores 4

10.2 window系统下载adb和fastboot工具,解压后将目录添加到环境变量中 

下载链接:https://developer.android.google.cn/studio/releases/platform-tools#downloads

10.3 手机上启动USB调试 

如要在通过 USB 连接的设备上使用 adb,则必须在设备的系统设置中启用 USB 调试

10.4 安装驱动,在设备管理器中找到对应的设备安装驱动,安装好后则会多出一个"Android Device"设备 

下载链接:https://developer.android.google.cn/studio/run/win-usb

10.5 解锁加载引导程序

  • 在cmd中输入"adb reboot bootloader"进入fastboot模式,查看是否处于锁定模式
  •  如果处于锁定模式则输入"fastboot flashing unlock"进行解锁,同时需要在手机上进行确认
  •  处于解锁模式后,设备每次启动都会先进入fastboot模式,如需处于锁定模式,则输入"fastboot flashing lock"命令

 10.6 刷写设备

  • 在cmd中输入"adb reboot bootloader"进入fastboot模式
  • 切换到Android镜像目录,输入"fastboot flashall -w"命令即可将镜像刷写到设备中,刷写完成等待设备重启就是运行的原生Android系统了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/193177.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++-类和对象

目录 一.C语言和C的区别 二.类的引入 三.类的定义 1.类的定义 2.类的成员方法的两种定义方式&#xff1a; 3.类的成员变量的定义 四.类的访问限定符及封装 1.访问限定符 五.面向对象的三大特征 1.面向对象的三大特征分别是什么 2.封装 六.类的作用域 七.创建类对象 1.类…

CAN 一: CAN基础知识介绍

1、CAN介绍 1.1、什么是CAN? (1)CAN&#xff08;Controller Area Network:控制器局域网&#xff09;&#xff0c;是ISO国际标准化的串行通信协议。为满足汽车产业的“减少线束的数量”、“通过多个LAN&#xff0c;进行大量数据的高速通信”的需求。 (2)CAN总线的发展历史&a…

【LeetCode】每日一题 2023_12_2 拼车(模拟/差分)

文章目录 刷题前唠嗑题目&#xff1a;拼车题目描述代码与解题思路学习大佬题解 刷题前唠嗑 LeetCode&#xff1f;启动&#xff01;&#xff01;&#xff01; 题目&#xff1a;拼车 题目链接&#xff1a;1094. 拼车 题目描述 代码与解题思路 func carPooling(trips [][]int…

【Linux】第二十四站:模拟实现C语言文件标准库

文章目录 一、实现细节1.需要实现的函数2.fopen的实现3.fclose4.fwrite5.测试6.缓冲区的实现7.FILE中缓冲区的意义 二、完整代码 一、实现细节 1.需要实现的函数 #include "mystdio.h"int main() {_FILE* fp _fopen("test.txt","w");if(fp N…

超大规模集成电路设计----基本概念(二)

本文仅供学习&#xff0c;不作任何商业用途&#xff0c;严禁转载。绝大部分资料来自----数字集成电路——电路、系统与设计(第二版)及中国科学院段成华教授PPT 超大规模集成电路设计----基本概念&#xff08;二&#xff09; 简短的历史回顾(A Brief Historical Perspective)第…

观察者设计模式

package com.jmj.pattern.observer;/*抽象观察者类*/ public interface Observer {void update(String message);}package com.jmj.pattern.observer;/*** 抽象主题角色*/ public interface Subject {//添加观察者对象void attach(Observer observer);//删除订阅者void detach(…

LeetCode(51)简化路径【栈】【中等】

目录 1.题目2.答案3.提交结果截图 链接&#xff1a; 简化路径 1.题目 给你一个字符串 path &#xff0c;表示指向某一文件或目录的 Unix 风格 绝对路径 &#xff08;以 / 开头&#xff09;&#xff0c;请你将其转化为更加简洁的规范路径。 在 Unix 风格的文件系统中&#xff…

SmartSoftHelp8,FrameCode极速二次开发框架源码

1.winform outlook style UI C/S 极速开发框架 netframework 2.0 2.winform toolbar style UI C/S 极速开发框架 netframework 2.0 3.WPF toolbar style UI C/S 极速开发框架 netframework 4.0 4.Xadmin-UI jquery B/S 极速开发框架 5.Vue element UI B/S…

Presto基础学习--学习笔记

1&#xff0c;Presto背景 2011年&#xff0c;FaceBook的数据仓库存储在少量大型hadoop/hdfs集群&#xff0c;在这之前&#xff0c;FaceBook的科学家和分析师一直靠hive进行数据分析&#xff0c;但hive使用MR作为底层计算框架&#xff0c;是专为批处理设计的&#xff0c;但是随…

在vue3项目嵌套 导入老项目 jQuery项目,减少重复开发

背景&#xff1a; 公司管理平台项目一直是前辈用jQuery做的&#xff0c;为扩展根据自身的技术栈&#xff0c;将jQuery的老项目嵌套入vue3的框架&#xff0c;新功能用vue开发&#xff0c;旧的功能不动直接在vue3用iframe容器来展示 嵌套步骤 2种方式嵌套&#xff0c;一个是已…

微机原理——并行接口8255学习1

目录 并行接口特点 可编程并行接口芯片8255 8255端口地址 8255的三种工作方式 8255的两种命令&#xff08;方式命令和C端口命令&#xff09; 由用户扩展的并行接口8255的应用 声光报警器接口设计 步进电机控制接口设计 PA端口实现跑马灯 PB端口实现按键输入 并行接口特…

同旺科技 USB TO SPI / I2C --- 调试W5500_Ping测试

所需设备&#xff1a; 内附链接 1、USB转SPI_I2C适配器(专业版); 首先&#xff0c;连接W5500模块与同旺科技USB TO SPI / I2C适配器&#xff0c;如下图&#xff1a; 设置寄存器&#xff1a; SHAR&#xff08;源MAC地址寄存器&#xff09;&#xff0c;该寄存器用来设置源MAC…

【预计IEEE出版|EI征稿通知】第六届下一代数据驱动网络国际学术会议 (NGDN 2024)

第六届下一代数据驱动网络国际学术会议 (NGDN 2024) The Sixth International Conference on Next Generation Data-driven Networks 2024年4月26-28日 | 中国沈阳 基于前几届在英国埃克塞特 (ISPA 2020) 、中国沈阳 (TrustCom 2021) 和中国武汉 (IEEETrustCom-2022) 成功举…

如何查看Microsoft Office 使用期限

1.进入到 Office 软件的安装目录&#xff08;******\Microsoft Office\Office&#xff09; ## 以管理员身份打开 Windows PowerShell输入以下命令&#xff0c;回车 cscript ospp.vbs /dstatusREMAINING GRACE 一行表示激活剩余天数&#xff08;括号内是换算成的剩余分钟数…

Android实验:绑定service实验

目录 实验目的实验内容实验要求项目结构代码实现代码解释结果展示 实验目的 充分理解Service的作用&#xff0c;与Activity之间的区别&#xff0c;掌握Service的生命周期以及对应函数&#xff0c;了解Service的主线程性质&#xff1b;掌握主线程的界面刷新的设计原则&#xff…

文心一言 VS 讯飞星火 VS chatgpt (148)-- 算法导论12.2 3题

三、用go语言&#xff0c;写出过程 TREE-PREDECESSOR 的伪代码。 文心一言&#xff1a; 以下是使用Go语言编写的TREE-PREDECESSOR函数的伪代码&#xff1a; func TREE-PREDECESSOR(node) { if node.parent ! nil { return node.parent } // 如果节点是根节点&#xff0c…

Centos图形化界面封装OpenStack Ubuntu镜像

目录 背景 环境 搭建kvm环境 安装ubuntu虚机 虚机设置 系统安装 登录虚机 安装cloud-init 安装cloud-utils-growpart 关闭实例 删除细节信息 删除网卡细节 使虚机脱离libvirt纳管 结束与验证 压缩与转移 验证是否能够正常运行 背景 一般的镜像文件在上传OpenSt…

第 374 场 LeetCode 周赛题解

A 找出峰值 枚举 class Solution { public:vector<int> findPeaks(vector<int> &mountain) {int n mountain.size();vector<int> res;for (int i 1; i < n - 1; i)if (mountain[i] > mountain[i - 1] && mountain[i] > mountain[i 1…

登录界面(flex布局练习)

练习&#xff1a;登录界面在我们网页制作的过程中经常遇见&#xff0c;所以请你编写一个界面联系一下&#xff0c;这个可以增加一些动画或者是其他的效果&#xff0c;当然越帅越好。请使用flex或者其他布局练习 例如&#xff1a; 代码 <!DOCTYPE html> <html lang…

SLAM ORB-SLAM2(10)轨迹跟踪过程

SLAM ORB-SLAM2(10)轨迹跟踪过程 1. 总体过程2. ORB 特征点提取2.1. 相机数据处理2.1.1. 单目相机图像处理2.1.2. 双目相机图像处理2.1.3. RGBD相机图像处理2.2. ORB 特征点3. 地图初始化3.1. 坐标形式3.2. 坐标原点3.3. 地图尺度4. 相机位姿初始估计4.1. 关键帧4.2. 运动模型…