记一次未完成的Android编译....
前情提要
这是一台“过时”的华为平板,搭载高通616处理器,3+16GB存储组合,10.1英尺1920x1200屏幕。
⚠️万字长文预警
硬件和软件环境
我用的是平时拿来干活的笔记本。硬件方面:i5-10300H
的处理器,16GB 2933MHz
的主存,编译环境用的硬盘是Samsung Evo 870 1TB
;软件方面:采用Debian 12
系统。主要是Ubuntu太臃肿了
装依赖
Part 1: 下载和解压
第一个要装的就是adb
和fastboot
。
⚠️ 注意!不要去
apt
源里下载,那里的版本太老了。前往谷歌官方下载:https://dl.google.com/android/repository/platform-tools-latest-linux.zip
按照Lineage
官方的说法(这一部分不分机型,都是通的,所以这个超链接指向了小米8的页面),把他解压到~
下吧:
1 |
|
现在你确定一下~
目录下是否存在platform-tools
文件夹,如果存在则继续。
打开你的~/.profile
或者~/.zshrc
(本文全文将以.zshrc
进行举例说明),在source $ZSH/oh-my-zsh.sh
前添加以下代码:
1 |
|
然后,source
它,然后echo $PATH
一下看看环境变量里是否存在~/platform-tools
,存在就可以进行下一步。
Part 2: 从apt源安装
使用apt把这些都装进去:bc bison build-essential ccache curl flex g++-multilib gcc-multilib git git-lfs gnupg gperf imagemagick lib32readline-dev lib32z1-dev libelf-dev liblz4-tool libsdl1.2-dev libssl-dev libxml2 libxml2-utils lzop pngcrush rsync schedtool squashfs-tools xsltproc zip zlib1g-dev
对于我使用的Debian 12
系统,再安装这些:lib32ncurses-dev libncurses5 libncurses5-dev
对于Ubuntu
用户,请按照Lineage
官网说法进行操作:
1 |
|
Part 3: OpenJDK的安装
OpenJDK
的版本取决于你想要编译的Lineage OS
版本。
下面的信息来自于上面提到的Lineage
官网教程。LineageOS
18.1及更高版本: openjdk-11 openjdk-11-source
LineageOS
16.0-17.1: openjdk-9 openjdk-9-source
LineageOS
14.1-15.1: openjdk-8-jdk
⚠️注意: 构建这些版本时你需要在
/etc/java-8-openjdk/security/java.security
中从jdk.tls.disabledAlgorithms
中移除TLSv1
和TLSv1.1
相关的东西。
LineageOS
11.0-13.0: openjdk-7-jdk
Ubuntu 16.04
及更新版本的软件源中已将OpenJDK 1.7
移除了。解决方案参考Ask Ubuntu
上的问题“How do I install openjdk 7 on Ubuntu 16.04 or higher?”。注意热评里那个叫你添加ppa
源的老登,因为ppa
源缺乏安全性维护,所以别看他的回答,看后面一个叫你去Debian官网下载的回答。笔者评:截止写稿时,Debian 12
源上的openjdk
只有17
版本了。所以只能去网站上下载.deb
包然后安装。这里提供两个下载站:OpenJDK Archive(无需登陆但没有deb);Java SE Archive(概率登陆但有deb)。
但是!我们是不是可以整点活?比如直接去隔壁
Ubuntu
的镜像源网站上下载?比如清华源:
Ubuntu系统前往这里下载:下载jdk11-universe下载jdk11-main;下载jdk9-universe;下载jdk8-universe下载jdk8-main;下载jdk7-main
Debian系统前往这里下载:下载jdk11-main下载jdk8-main
使用此方法时如提示缺失依赖则需要补全依赖然后再安装,否则apt
会报错:ca-certificates-java java-common libc6
需要把openjdk-xx-jdk
及其headless
版本、openjdk-xx-jre
及其headless
版本和openjdk-xx-source
都安装上再继续。
Part 4: Python的安装
啥?这都什么年代了还教咋装Python?要不是因为不同Lineage
版本要求的Python版本不一样,我也懒得写了LineageOS
17.1及更高版本: python3
LineageOS
11.0-16.0: python2
如果你电脑上有多个蟒蛇Python
互相冲突,Lineage
官网推荐的解决方案是用venv
。相关的东西这里不再赘述。
进入准备工作!
建立工作目录
⚠️ Lineage和清华源上的教程写的不一样,这里冲突部分采用的是Lineage官网教程。
1 |
|
其中~/bin
存放git-repo
工具,~/android/lineage
存放LineageOS
的源码。
安装repo工具
这是个啥?
repo
是个由Google开发的git
的增强工具,和git
配合食用。参考Google官方文档。
1 |
|
更新repo使用这个命令:export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
然后再使用上面添加adb
的方法将~/bin
目录添加到环境变量中,编辑.zshrc
…:
1 |
|
别忘了再次source
它一下!
配置Git
没啥好说的,设置一下用户名和邮箱,这步没做的话下一步初始化仓库的时候命令行里也会叫你提供这两个信息。
⚠️ 注意: 这里的操作是对整个电脑全局的设置。如果你只想在编译系统的源码仓库文件夹内设置这两个信息,则请跳过设置信息这一步,直接进行
lfs
初始化。
1 |
|
为了能让git
存放大文件,需要初始化一下Large File Storage
:
1 |
|
设置Git
的Change-Id
:Lineage
官方说为了防止重复的Change-Id
,就要这么操作一下。但是我没有进行这一步设置。
To avoid duplicated Change-Id: trailers in commit messages, especially when cherry-picking changes, make Change-Id: a known trailer to git:
1 |
|
配置编译缓存
这是用ccache
来加快编译的。将这些内容放入.zshrc
中然后再source
一下:
1 |
|
然后回到命令行终端,设置ccache
大小:
1 |
|
ccache
大小影响你的编译速度。如果只编译一个设备,那么给20-50GB
就够了;如果编译多个设备(不共享内核源码),则建议配置75-100GB
。
当然,你也可以启用压缩:
1 |
|
参数-b
后面接的是系统版本,前往这里查看可以选择哪些分支版本。其中lineage-16.0
对应Android 9
,后续los
版本号整数加一对应Android
版本号的整数加一,比如lineage-17.0
对应Android 10
。
将仓库源码地址设为国内镜像站
这里用清华源
打开.repo/manifests/default.xml,将
1 |
|
改成
1 |
|
将
1 |
|
改成
1 |
|
将
1 |
|
改成
1 |
|
同步源码树
以后都使用这个来同步。这会从清华服务器上下载源码而非Lineage官网下载
1 |
|
注意: 这个命令默认添加参数
-j 4 -c
。其中-j 4
代表使用四线程进行同步。如果你遇到了服务器对线程的限制或性能问题,手动添加该参数以降低线程数,像第二行。-c
代表着只克隆上一步选定的分支而非所有分支。该参数不建议进行人为额外操作。
处理设备配置文件
我要编译的设备不在Lineage
的官方维护列表内,所以需要自己配置配置文件。如果你的设备在官方维护列表内,可以跳过这一步。
在~/android/lineage/.repo/local_manifests/
下创建文件federer.xml
federer
是我设备的代号,这里也可以填写别的名字作为代号,主要就是区分设备用
写入以下信息:
1 |
|
其中remote
字段中的fetch
字段意思是该代码托管的提供商名。如果你的代码也托管在Github
上,则无需修改该字段。
其中remote
字段中的revision
字段意思是该代码在仓库里的分支名。
其中project
字段中的path
字段意为存放该源码的本地位置,。
其中project
字段中的name
字段意为仓库链接去掉https://github.com
之后剩下的,即作者/仓库名
。
然后再次进行repo sync
一下,以下载设备树、内核源码等信息。
⚠️ 注意:如果提示sync失败,则多次使用
repo sync -j1 --fail-fast
重试。
注意xml的格式化问题,不然sync会报错。比如xml最开头的字符不是<
而是空格时报如下错误:error: in \
sync`: error parsing manifest ~/android/lineage/.repo/local_manifests/federer.xml: XML or text declaration not at start of entity: line 1, column 1`
提取设备专属固件
插上已经root了的lineage设备(一定要是你即将编译的设备,比如我的是华为Federer-A01w),终端前往~/android/lineage/device/huawei/federer
文件夹,运行当前目录下的./extract-files.sh
如果提示
Unable to find helper script at ./../../../vendor/lineage/build/tools/extract_utils.sh
则前往~/android/lineage/vendor/lineage/build/tools
,将https://github.com/LineageOS/android_tools_extract-utils
下的所有文件全部下载到这个文件夹,保证~/android/lineage/vendor/lineage/build/tools
文件夹下有extract_utils.sh
脚本,再回去重新运行./extract-files.sh
如果一直没有弹出授权提示,并且手动
adb devices
提示(missing udev rules? user is in the plugdev group); see [http://developer.android.com/tools/device.html]
,则先将你的用户组添加入plugdev
然后安装android-sdk-platform-tools-common
。具体操作如下:
1 |
|
然后重启电脑。再次adb devices
,设备上就会弹出授权弹窗了。回到~/android/lineage/device/huawei/federer
再次执行./extract-files.sh
编译
选择默认内核编译配置文件
在进行内核编译的时候,总要选择一个内核配置文件,也就是defconfig
。通常在内核源码目录/arch/arm64/configs
文件夹下,然后内核源码在lineage工程文件夹下的目录是~/android/lineage/kernel/huawei/federer/
。
将你要用的defconfig
记下,打开device/huawei/federer/BoardConfig.mk
,找到(如果没有就新建)TARGET_KERNEL_CONFIG
字段,将defconfig
文件名作为字段值填入。最终可以找到这么一行信息:
1 |
|
同样的,设置TARGET_KERNEL_SOURCE
指向内核源码所在目录:
1 |
|
准备开始编译
进入~/android/lineage
文件夹。
进行最后的环境准备:source build/envsetup.sh
选择要编译的设备:lunch
然后会有一个设备列表,像这样:
1 |
|
像我的设备,刚刚创建的是federer
,那就选27或者28都行。
开始编译!
⚠️⚠️警告: 如果你的电脑和我一样只有
16GB
物理内存的话,请一定要开启SWAP
,否则会编到一半爆内存卡死,等待你的只有强制重启。
我的电脑SWAP
给了16GB
, 启用了ZRAM
1 |
|
我遇到的一些问题
Problem 1
include path缺失:system/core/base/include/android-base/
我从咕噜咕噜Google的AOSP源仓库里下载了这个文件。访问这里,然后你能在屏幕顶上看到一个tgz
按钮,点它然后下载,再在你的本地los工作目录里创建这个文件夹:~/android/lineage/system/core/base/include/android-base/
,把压缩包里的文件全丢进去,再重新编译等待下一个报错。
Problem 2
device/huawei/federer/sensors/Android.mk: error: sensors.msm8916: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
参见此issue
这是makefile语法过时问题。打开/home/android233/android/lineage/device/huawei/federer/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
打开device/huawei/federer/sensors/Android.mk
,将以下部分
1 |
|
替换为
1 |
|
~~
Problem 3
device/huawei/t2-common/camera/QCamera2/stack/mm-camera-interface/Android.mk: error: libmmcamera_interface: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。这是makefile语法过时问题。打开/home/android233/android/lineage/device/huawei/t2-common/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
打开device/huawei/t2-common/camera/QCamera2/stack/mm-camera-interface/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
Problem 4
device/huawei/t2-common/gps/core/Android.mk: error: libloc_core: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。打开/home/android233/android/lineage/device/huawei/federer/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
这是makefile语法过时问题。
打开device/huawei/t2-common/gps/core/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
Problem 5
device/huawei/t2-common/gps/loc_api/libloc_api_50001/Android.mk: error: libloc_eng: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。打开/home/android233/android/lineage/device/huawei/t2-common/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
这是makefile语法过时问题。
打开device/huawei/t2-common/gps/loc_api/libloc_api_50001/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
Problem 6
device/huawei/t2-common/gps/utils/Android.mk: error: libgps.utils: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。打开/home/android233/android/lineage/device/huawei/t2-common/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
这是makefile语法过时问题。
打开device/huawei/t2-common/gps/utils/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
Problem 7
build/make/core/base_rules.mk:338: error: device/huawei/t2-common/gps/utils: MODULE.TARGET.SHARED_LIBRARIES.android.hidl.base@1.0 already defined by hardware/lineage/compat.
这是被多个makefile重定义的问题。
打开build/make/core/base_rules.mk
将第338行注释掉,make clean
一下然后重新编译:
1 |
|
Problem 8
device/huawei/t2-common/mdm-helper/Android.mk: error: libmdmdetect: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。这是makefile语法过时问题。打开/home/android233/android/lineage/device/huawei/t2-common/BoardConfigCommon.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
打开device/huawei/t2-common/mdm-helper/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
Problem 9
device/huawei/t2-common/camera/QCamera2/HAL/Android.mk: error: “camera.msm8916 (SHARED_LIBRARIES android-arm) missing libqdMetaData (SHARED_LIBRARIES android-arm)”
You can set ALLOW_MISSING_DEPENDENCIES=true in your environment if this is intentional, but that may defer real problems until later in the build.
device/huawei/t2-common/camera/QCamera2/HAL/Android.mk: error: “camera.msm8916 (SHARED_LIBRARIES android-arm) missing libqservice (SHARED_LIBRARIES android-arm)”
You can set ALLOW_MISSING_DEPENDENCIES=true in your environment if this is intentional, but that may defer real problems until later in the build.
~~
这是个HAL层高通QCAM2驱动依赖缺失。先按照提示,设置环境变量export ALLOW_MISSING_DEPENDENCIES=true
忽略此类问题。
打开device/huawei/t2-common/camera/QCamera2/HAL/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
不能这么做!
经过核查,LineageOS在19.0开始从源码清单里将msm8916
部分驱动删除了:我们可以从这个文件的74、99、100、101
行看出。我们只需将其补充到~/android/lineage/.repo/local_manifests/federer.xml
中,然后重新repo sync
再跑编译即可。
在/home/android233/android/lineage/hardware/qcom-caf/msm8916/display/libqdutils/Android.mk
的26行,证明了我的说法:
1 |
|
解决方法:直接往~/android/lineage/.repo/local_manifests/federer.xml
中添加以下语句:
1 |
|
解决方法:我是修补~/android/lineage/.repo/manifests/snippets/lineage.xml
实现的:(已弃用,用上面那个方法去。)
108行后添加:
1 |
|
84行添加
1 |
|
当前正在和作者确认….上面只是我的解决方法。 //TODO
Problem 10
hardware/qcom-caf/msm8916/display/libhwcomposer/../common.mk: error: “hwcomposer.msm8916 (SHARED_LIBRARIES android-arm64) missing libbfqio (SHARED_LIBRARIES android-arm64)”
You can set ALLOW_MISSING_DEPENDENCIES=true in your environment if this is intentional, but that may defer real problems until later in the build.
hardware/qcom-caf/msm8916/display/libhwcomposer/../common.mk: error: “hwcomposer.msm8916 (SHARED_LIBRARIES android-arm) missing libbfqio (SHARED_LIBRARIES android-arm)”
You can set ALLOW_MISSING_DEPENDENCIES=true in your environment if this is intentional, but that may defer real problems until later in the build.
果然,修补lineage.xml
后出现了同样的错误:缺少libFa♂Qiolibbfqio
。
前往github下载legacy的依赖库,添加到~/android/lineage/.repo/local_manifests/federer.xml
中:
1 |
|
Problem 11
vendor/lineage/build/tasks/kernel.mk:139: warning: ***************************************************************
vendor/lineage/build/tasks/kernel.mk:140: warning: * Using prebuilt kernel binary instead of source *
vendor/lineage/build/tasks/kernel.mk:141: warning: * THIS IS DEPRECATED, AND IS NOT ADVISED. *
vendor/lineage/build/tasks/kernel.mk:142: warning: * Please configure your device to download the kernel *
vendor/lineage/build/tasks/kernel.mk:143: warning: * source repository to kernel/huawei/t2-common/
vendor/lineage/build/tasks/kernel.mk:144: warning: * for more information *
vendor/lineage/build/tasks/kernel.mk:145: warning: ***************************************************************
啊这是个警告,就是说在编译vendor的时候一些东西直接拿之前编译好的二进制来用的话是不建议的。
后续补:诶卧槽不对,好像是我又下少东西了淦,就是上面配置federer.xml
的地方,后来我多加了一行kernel-common。但是现在重新repo sync
肯定是不行的,所以我们直接去~/android/lineage/kernel/huawei
里将t2-common
内核clone进来:
1 |
|
这个步骤因机型而异!!不要因为我这么操作了,你也这么操作!!
Problem 12
FAILED: ninja: ‘out/target/product/federer/kernel’, needed by ‘out/target/product/federer/recovery.img’, missing and no known rule to make it
这是源码仓库提供的编译链里缺失了dtbToolLineage
这个工具。我们只需要将其源码下载下来然后编译,再将其复制进去即可。具体操作如下:
前往https://github.com/LineageOS/android_system_tools_dtbtool
仓库,将dtbtool.c
文件直接下载到桌面,用gcc编译gcc dtbtool.c -o dtbToolLineage
,生成的文件为dtbToolLineage
,然后将它手动放到~/android/lineage/out/host/linux-x86/bin/
下,重新运行brunch federer
即可。
或者往~/android/lineage/.repo/local_manifests/federer.xml
里添加如下内容:
1 |
|
Problem 13
FAILED: ninja: ‘external/ant-wireless/antradio-library/com.dsi.ant.antradio_library.xml’, needed by ‘out/target/product/federer/system/vendor/etc/permissions/com.dsi.ant.antradio_library.xml’, missing and no known rule to make it
这是缺失com.dsi.ant.antradio_library.xml
,我一看,好家伙这个目录下直接把它的父目录antradio-library
整个弄丢了。我们只需要前往github将这个目录clone进去即可。
前往~/android/lineage/external/ant-wireless/
执行
1 |
|
Problem 14
FAILED: ninja: ‘vendor/huawei/federer/proprietary/vendor/bin/fm_qsoc_patches’, needed by ‘out/target/product/federer/system/vendor/bin/fm_qsoc_patches’, missing and no known rule to make it
这是缺失fm_qsoc_patches
,我去原始vendor
仓库找了一遍确实找到了,但是有点奇怪的是为什么我的电脑上这个文件不存在了。先不管了,回到github原始仓库里把这个文件下下来手动放进~/android/lineage/vendor/huawei/federer/proprietary/vendor/bin
再继续吧。
Problem 15
FAILED: ninja: ‘device/huawei/t2-common/configs/wpa_supplicant_overlay.conf’, needed by ‘out/target/product/federer/system/vendor/etc/wifi/wpa_supplicant_overlay.conf’, missing and no known rule to make it
这是缺失wpa_supplicant_overlay.conf
,我在原始仓库里找了一圈也没找到,但是在平板的/vendor/etc/wifi/wpa_supplicant_overlay.conf
下找到了。
解决方法: 在~/android/lineage/device/huawei/t2-common/configs
下创建文件wpa_supplicant_overlay.conf
,内容填入如下:
1 |
|
Problem 16
FAILED: ninja: ‘out/target/product/federer/obj_arm/SHARED_LIBRARIES/libqdMetaData_intermediates/libqdMetaData.so.toc’, needed by ‘out/target/product/federer/obj_arm/SHARED_LIBRARIES/camera.msm8916_intermediates/LINKED/camera.msm8916.so’, missing and no known rule to make it
问题与Problem 9重复。把那个问题按照修补~/android/lineage/.repo/local_manifests/federer.xml
的过程修补之后此报错就不会出现。
Problem 17
FAILED: build/make/core/main.mk:1312: warning: device/huawei/federer/lineage_federer.mk includes non-existent modules in PRODUCT_PACKAGES
Offending entries: Snap TimeKeep android.hardware.audio.effect@2.0-service android.hardware.bluetooth.a2dp@1.0-impl android.hardware.drm@1.2-service.widevine android.hardware.graphics.composer@2.1-impl android.hardware.power@1.2-service-qti android.hardware.renderscript@1.0-service android.hardware.wifi.offload@1.0-service android.hidl.manager@1.0-java copybit.msm8916 ebtables ethertypes keystore.msm8916 libOmxCore libOmxSwVencHevc libOmxVdecHevc libQWiFiSoftApCfg libbt-vendor libcnefeatureconfig libdashplayer libebtc libgenlock libmm-omxcore libmm-qcamera libqsap_sdk libstagefrighthw make_ext4fs thermal.msm8916 timekeep vendor.qti.hardware.cryptfshw@1.0-service-qti.qsee wifilogd
build/make/core/main.mk:1312: error: Build failed.
参考前面的QCamera2问题,系统提示叫你加环境变量的那个,产生原因和他也相同,本处不再详细分析,具体参考https://github.com/LineageOS/android
中不同分支下的snippets/lineage.xml
差异。
解决方案:
打开~/android/lineage/device/huawei/t2-common/t2.mk
,将这些内容所在行全部用#
注释掉(将他们先拖到所在块的最后一行,如果上一行有\\
字符,则也要把上一行的这个字符删了,然后再注释掉最后一行,要不然会导致MakeFile
语法错误。直接删掉也不是不行能注释就不要删):
1 |
|
还是上面那个文件,将以下内容进行替换:
1 |
|
还是上面那个文件,将这几段注释掉:
1 |
|
~~
编辑~/android/lineage/.repo/manifests/default.xml
将这一行注释掉:
1 |
|
此时repo sync
如果失败提示说找不到这个branch(revision),则进入~/android/lineage/hardware/qcom
执行命令:
1 |
|
~~
再编辑~/android/lineage/.repo/local_manifests/federer.xml
,直接添加以下语句:
1 |
|
然后再在26行添加以下语句,以让编译系统知道这来自老旧的仓库,这些文件是旧的格式而非最新格式,就不会因此而报错:
1 |
|
剩下这些丢失就会自动忽略:copybit.msm8916 libdashplayer libmm-qcamera libstagefrighthw libcnefeatureconfig
,在Lineage Gerrit中只保留了这两个:libstagefrighthw libcnefeatureconfig
Problem 18
vendor/qcom/opensource/omx/mm-core/omxcore/Android.mk: error: libOmxCore: LOCAL_COPY_HEADERS is obsolete. See https://android.googlesource.com/platform/build/+/master/Changes.md#copy_headers
问题与Problem 2重复。打开/home/android233/android/lineage/vendor/qcom/opensource/omx/mm-core/omxcore/omxcore.mk
,在最前面添加BUILD_BROKEN_USES_BUILD_COPY_HEADERS := true
~~
这是makefile语法过时问题。
打开vendor/qcom/opensource/omx/mm-core/omxcore/Android.mk
,将以下部分
1 |
|
修改为
1 |
|
~~
Problem 19
error: vendor/qcom/opensource/cryptfs_hw/Android.bp:14:1: “libcryptfs_hw” depends on undefined module “legacy_hw_disk_encryption_defaults”
打开vendor/qcom/opensource/cryptfs_hw/Android.bp
,删除这个部分以及前面的一个逗号(Android13起不需要这个apex,所以可以移除)
1 |
|
和这个部分
1 |
|
Problem 20
build/make/core/tasks/platform_availability_check.mk:37: warning: Following modules are requested to be installed. But are not available for platform because they do not have “//apex_available:platform” or they depend on other modules that are not available for platform
Offending entries:
audio.a2dp.default:packages/modules/Bluetooth/system/audio_a2dp_hw
audio.a2dp.default_32:packages/modules/Bluetooth/system/audio_a2dp_hw
In file included from build/make/core/main.mk:1456:
In file included from build/make/core/Makefile:7030:
build/make/core/tasks/platform_availability_check.mk:37: error: Build failed.
打开~/home/android233/android/lineage/build/make/core/tasks/platform_availability_check
,将37行注释掉。
Problem 21
FAILED: ninja: ‘vendor/huawei/federer/proprietary/vendor/bin/fm_qsoc_patches’, needed by ‘out/target/product/federer/system/vendor/bin/fm_qsoc_patches’, missing and no known rule to make it
与 Problem 14 重复。
Problem 22
ccache: error: Failed to create directory /home/android233/.cache/ccache/tmp: Not a directory
在我电脑上,~/.cache/ccache
居然是个大小0B
的空文件?难怪阻止了在目录下创建tmp
文件。将ccache
文件删了,ninja
会自动创建tmp
文件。问题解决。
Problem 23
device/huawei/t2-common/gps/core/ContextBase.h:34:10: fatal error: ‘MsgTask.h’ file not found
#include <MsgTask.h>
^~~~~~~~~~~
~~
C/C++规定用尖括号包含的头文件是从系统目录中搜索的,而用引号包含的头文件是从当前目录中搜索的。后面就是根据报错日志修改C++源码的时候了。
Problem 24
found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead.
参考此issue
打开/home/android233/android/lineage/device/huawei/federer/BoardConfig.mk
,在最顶上
添加:BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES := true
或者这样也行(我用的上面那个方法):
打开/home/android233/android/lineage/build/make/core/Makefile
,将以下几行注释或删除:
1 |
|
Problem 25
clang: error: unable to execute command: Executable “ld” doesn’t exist!
make[1]: *** [/home/android233/android/lineage/kernel/huawei/t2-common/Makefile:426: scripts_basic] Error 2
这个问题参见reddit以及Stack Overflow
这个修复起来稍微有点复杂,要涉及到抓bug的操作。
第一步先去打开上面说的那个文件,找到报错所在行426
,它附近的代码是这样的:
1 |
|
向上找到LD
的定义位置(我这里是328行):
1 |
|
回到426
行那里,将那块代码修改为这样:
1 |
|
然后重新进行brunch federer
编译工程,复现这个问题,将多出来的两行输出记下,重点关注多出来的第二行LD
的输出。在我电脑上是这样的:
1 |
|
前往LD
所在的目录,用ls -al
查看目录下的详细结构。一般会发现缺少了ld
这个文件,而且能看到有lld
这个文件(或者软链接)。我的这个目录是这样的:
1 |
|
我们可以看到,lld
是个二进制文件,但ld.lld
是个链接。我们只需要为lld
再创建一个名为ld
的链接到当前目录即可(当然复制也不是不行23333)。具体操作就是,这么执行命令:ln -sf lld ld
(或者干脆cp lld ld
)。
最后,重新编译项目brunch federer
,解决!
Problem 26
device/huawei/federer/init/init_heap.cpp:74:5: error: use of undeclared identifier ‘property_set’
经过核查,相比安卓10,自安卓11开始,property_set
已从命名空间android::init::
下删除,并且同基线CPU的其他设备也弃用了这个参数初始化文件。此更改同步到了安卓13。打开/home/android233/android/lineage/device/huawei/federer/init/init_heap.cpp
,将涉及到该命名空间的所有行全注释。
Problem 27
system/libbase/include/android-base/result.h:378:1: error: too many template parameters in template redeclaration
template <typename T, typename E, bool include_message>
打开system/libbase/include/android-base/result.h
,把378行所在的模板类定义及其结构体一整个删除
Problem 28
ld.lld: error: duplicate symbol: yylloc
打开/home/android233/android/lineage/kernel/huawei/t2-common/scripts/dtc/dtc-lexer.lex.c_shipped
,将extern YYLTYPE yylloc;
修改为YYLTYPE yylloc;
Problem 29
一连串的devicetable-offsets.c:27:2: error: unexpected token at start of statement: DEVID_FIELD(hid_device_id, vendor);报错(同文件不同行)
打开/home/android233/android/lineage/kernel/huawei/t2-common/Makefile
,将KBUILD_CFLAGS += $(call cc-disable-warning,maybe-uninitialized,)
替换为KBUILD_CFLAGS += $(call cc-disable-warning,uninitialized,)
参见此issue,打开/home/android233/android/lineage/kernel/huawei/t2-common/include/linux/kbuild.h
,将asm volatile("\n->" #sym " %0 " #val : : "i" (val))
替换为asm volatile("\n.ascii \"->" #sym " %0 " #val "\"" : : "i" (val))
Problem 30
/bin/sh: 1: cd: can’t cd to /home/android233/android/lineage/out/soong/.intermediates/vendor/lineage/build/soong/generated_kernel_includes/gen
进入~/android/lineage/out/soong/.intermediates/vendor
执行mkdir -p lineage/build/soong/generated_kernel_includes/gen
Problem 31
scripts/mod/file2alias.c:176:2: error: use of undeclared identifier
。。。不修了,以后再说吧,太耗时间了,投入产出不成正比。
引用的文档和页面
Lineage Wiki - Build LineageOS for Xiaomi Mi 8
LineageOS Gerrit
Github - LineageOS
Android Developers - apps on a hardware device
Android Developers - Source control tools
Android Developers - 适用于硬件混合渲染器 HAL 的 AIDL
Stack Overflow - Build error with Clang + msm-3.18 Kernel Android Q
Reddit - [help] Building Lineage 17.1 for porg
清华大学开源镜像站 - lineageOS 源代码镜像使用帮助
Sony - Build AOSP Android 14
Github - LeCmnGend/How_to_build_ROM
CSDN - Android12之编译报错LOCAL_COPY_HEADERS is obsolete
cnblogs/luoyesiqiu - 自己动手编译Android(LineageOS)源码
XDA Developers - [GUIDE/HOW-TO] Building LineageOS for an Unsupported Device
StackExchange - How to build lineageos for a device without official support