将 LineageOs 设备从 Cm-14.1 移植到 Lineage-16.0

Porting LineageOs device from Cm-14.1 to Lineage-16.0

我正在尝试为 Sumire 设备的 lineageos 做出贡献。我已经成功构建 CM-14.1 并将其安装在我的设备上。

现在我想将它移植到lineage-16.0,问题是到目前为止我找到的文档非常稀缺。

这是我目前所知道的:

在 Lineage IRC 中有人告诉我:

  1. 将 cm-14.1 分支分支到 lineage-16.0,更改所需的配置文件,并构建 16.0 构建环境。

所以,我已经为我的设备分叉了回购协议。现在,我想我必须从 cm-14.1 创建一个新分支并将其命名为 Lineage-16.0 并开始构建并开始修复错误。

问题是,我应该如何配置 repo 以在构建时拉取 https://github.com/elbaulp/android_device_sony_sumire instead of https://github.com/LineageOS/android_device_sony_sumire

我是否应该更改清单中的这一行

lineage/mirror/default.xml:  <project name="LineageOS/android_device_sony_sumire" />

来自

lineage/mirror/default.xml:  <project name="elbaulp/android_device_sony_sumire" />

资源:

https://msystechnologies.com/porting-custom-rom-to-android-device/

经过几天的搜索,我找到了继续的方法。

本指南是旧 CyanogenMod 文档的备份,似乎 Cyanogen 的文档比 LineageOs 更好:

How To Port CyanogenMod/LineageOS Android To Your Own Device

为了告诉 repo 它必须拉取我的 github 项目而不是官方项目,必须将新的 local_manifest 添加到 .repo/local_manifests/my_manifest.xml,在这种情况下,我将其命名为 sumire.xml,其内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<manifest>
  <remove-project name="lineageos/device_sony_sumire" path="device/sony/sumire" remote="github" />
  <project name="elbaulp/device_sony_sumire" path="device/sony/sumire" remote="github"  />
</manifest>

之后还要执行repo sync

希望能帮到别人。

我目前正在使用同一台设备 sumire,我正在尝试让 lineageos 17.1 在此设备上运行。也许你可以给我一些提示,如果你仍然有兴趣从事这个项目,甚至我们可以联系。