diff --git a/Documentation/zh-CN/Networking-From-Zero.md b/Documentation/zh-CN/Networking-From-Zero.md new file mode 100644 index 00000000..8e30eb0e --- /dev/null +++ b/Documentation/zh-CN/Networking-From-Zero.md @@ -0,0 +1,656 @@ + + +# 从零开始的网络基础:理解 Droidspaces 网关模式 + +### 快速导航 + +- [第一部分:绝对基础](#第一部分绝对基础) + - [什么是 IP 地址?](#什么是-ip-地址) + - [什么是网络?](#什么是网络) + - [LAN——局域网](#lan局域网) + - [WAN——广域网](#wan广域网) + - [网关](#网关) +- [第二部分:数据究竟是如何送达的](#第二部分数据究竟是如何送达的) + - [MAC 地址 vs IP 地址](#mac-地址-vs-ip-地址) + - [什么是数据包?](#什么是数据包) +- [第三部分:DHCP(你是如何获取 IP 地址的)](#第三部分dhcp你是如何获取-ip-地址的) +- [第四部分:DNS(域名如何变成地址)](#第四部分dns域名如何变成地址) +- [第五部分:NAT(你的路由器施展的魔法)](#第五部分nat你的路由器施展的魔法) + - [NAT 在 Droidspaces 中的应用](#nat-在-droidspaces-中的应用) +- [第六部分:网桥与虚拟线缆(Linux 管道)](#第六部分网桥与虚拟线缆linux-管道) + - [什么是网桥?](#什么是网桥) + - [什么是 veth 对?](#什么是-veth-对) + - [NAT 模式如何使用网桥和 veth](#nat-模式如何使用网桥和-veth) +- [第七部分:网络命名空间(容器是如何隔离的)](#第七部分网络命名空间容器是如何隔离的) +- [第八部分:OpenWRT 及其概念](#第八部分openwrt-及其概念) +- [第九部分:全新的网关模式——融会贯通](#第九部分全新的网关模式融会贯通) + - [为什么要有网关模式?](#为什么要有网关模式) + - [架构总览](#架构总览) + - [逐步说明——启动网关模式容器时会发生什么](#逐步说明启动网关模式容器时会发生什么) + - ["延迟挂接"的含义](#延迟挂接的含义) + - [为什么网关模式下不修改 resolv.conf](#为什么网关模式下不修改-resolvconf) + - [为什么 bridge-nf-call-iptables 要设为 0](#为什么-bridge-nf-call-iptables-要设为-0) + - [网关容器必须先运行](#网关容器必须先运行) + - [容器停止时会发生什么](#容器停止时会发生什么) +- [第十部分:网关模式的标志与配置](#第十部分网关模式的标志与配置) + - [必选标志 vs 可选标志](#必选标志-vs-可选标志) + - [--gateway-net 的作用](#--gateway-net-的作用) + - [--gateway-iface 的作用](#--gateway-iface-的作用) + - [必须避免的标志冲突](#必须避免的标志冲突) + - [验证规则与内核要求](#验证规则与内核要求) +- [第十一部分:所有网络模式对比](#第十一部分所有网络模式对比) +- [第十二部分:网关模式的真实使用场景](#第十二部分网关模式的真实使用场景) +- [快速参考——术语表](#快速参考术语表) + +--- + +## 第一部分:绝对基础 + +### 什么是 IP 地址? + +任何想要在网络上通信的设备都需要一个地址,这样其他设备才知道将数据发往何处。这个地址称为 **IP 地址**。 + +可以把它想象成家庭住址。如果有人想给你寄信,就需要你的地址。同理:如果你的手机想给 Google 发送数据,就需要知道 Google 的地址,而 Google 也需要知道你手机的地址才能将回复发回来。 + +IP 地址看起来像这样:`192.168.1.5` + +它是由点号分隔的四个数字(0-255)。每个数字称为一个 **八位组(octet)**。 + +### 什么是网络? + +**网络**就是一组可以相互直接通信的设备。 + +想象一个房间里有 5 台笔记本电脑都连接着同一个 Wi-Fi 路由器。这 5 台笔记本在同一个网络上——它们可以彼此传输文件,而不需要经过互联网。 + +### LAN——局域网 + +**LAN** = 你**家庭内部**的网络(或者办公室内部,或者在我们的场景中,是**容器世界内部**)。 + +之所以叫"局域网",是因为设备在物理上很近:你的手机、笔记本电脑、智能电视,都连接着你的家庭 Wi-Fi 路由器。它们都生活在同一个局域网内,可以直接相互通信。 + +局域网地址通常长这样: +- `192.168.x.x` +- `10.x.x.x` +- `172.16.x.x` 到 `172.31.x.x` + +这些称为**私有 IP 范围**。它们保留给本地网络使用,永远不会在公网上出现。 + +### WAN——广域网 + +**WAN** = 你**家庭之外的**网络:就是互联网本身。 + +你的路由器有两面: +- **LAN 侧**面向家里的设备 +- **WAN 侧**面向互联网服务提供商(ISP) + +ISP 会给你的路由器分配一个公网 IP 地址用于 WAN 侧。家庭内部的所有设备都共享这一个公网 IP 来访问互联网。 + +``` +[你的手机]--+ +[你的笔记本]-+--[路由器]--[ISP]--[互联网] +[你的电视]---+ + (LAN 侧) (WAN 侧) +``` + +### 网关 + +**网关**是将两个不同的网络连接在一起的设备。 + +在你的家里,路由器*就是*网关。你手机的 IP 是 `192.168.1.5`(LAN)。当你的手机想要访问 Google 的 `142.250.80.46`(WAN/互联网),它并不知道如何直接到达那里。于是它将数据发送给网关(路由器),由路由器想办法将其转发到互联网。 + +**规则:** 局域网上的每台设备都配置了一个"默认网关"——当设备不知道往哪发送数据包的时候,所有流量都会发送到的那个地址。 + +--- + +## 第二部分:数据究竟是如何送达的 + +### MAC 地址 vs IP 地址 + +实际上网络中有*两种*地址: + +| 类型 | 外观 | 用途 | +|---|---|---| +| **IP 地址** | `192.168.1.5` | 逻辑地址——用于跨网络路由 | +| **MAC 地址** | `a4:c3:f0:12:34:56` | 物理地址——用于在**同一**网络上传递 | + +可以这样理解: +- IP 地址是**城市和街道**——用于跨国家的导航 +- MAC 地址是**门牌号**——到达大楼后使用的最终定位 + +当你的笔记本电脑向路由器发送数据包时,会使用路由器的 MAC 地址(因为它们在同一局域网上)。然后路由器使用 IP 地址来确定下一步发送到哪里。 + +### 什么是数据包? + +在网络上传输的数据被分割成小块,称为**数据包**。每个数据包包含: +- 它从哪里来(源 IP) +- 它要去哪里(目的 IP) +- 实际数据的一小部分 + +网络在目的地将所有数据包重新组装起来。 + +--- + +## 第三部分:DHCP(你是如何获取 IP 地址的) + +### 问题 + +每台设备都需要一个 IP 地址才能加入网络。但不能有两台设备使用相同的 IP——就像两个房子有同样的邮政地址一样,信件会丢失。 + +你*可以*手动为每台设备分配唯一的 IP,但那会很痛苦。如果有 50 台设备怎么办? + +### 解决方案:DHCP + +**DHCP** = 动态主机配置协议 + +它是一种由一个设备(**DHCP 服务器**)自动为每个加入网络的新设备分发 IP 地址的系统。 + +对话过程如下: + +``` +新设备: "有人在吗?我刚加入这个网络,需要一个 IP 地址。" +DHCP 服务器: "我听到了。来,192.168.1.42拿着。另外,你的网关是 192.168.1.1, + DNS 使用 1.1.1.1。你的租约持续 24 小时。" +新设备: "收到,谢谢!" +``` + +新设备现在拥有了在网络中工作所需的一切: +- 自己的 IP 地址 +- 网关地址(知道将流量发往何处) +- DNS 地址(接下来会解释) + +在你家里,**路由器运行着 DHCP 服务器**。它为每一台连接的设备分配 IP。 + +在 **Droidspaces NAT 模式**中,Droidspaces 自身会运行一个迷你 DHCP 服务器,为容器分配 IP(在 `172.28.x.x` 范围内)。IP 是确定性的:它由容器名称派生而来,持久化到配置文件中,并且在每次启动时重新提供——因此同一个容器在重启后始终拥有相同的地址。 + +--- + +## 第四部分:DNS(域名如何变成地址) + +### 问题 + +IP 地址很难记住。没有人会输入 `142.250.80.46` 来访问 Google。人们都是输入 `google.com`。 + +但计算机只理解 IP 地址。所以需要一个系统将人类可读的名称转换成 IP 地址。 + +### 解决方案:DNS + +**DNS** = 域名系统 + +它基本上是互联网的电话簿。你给它一个名称(`google.com`),它返回一个 IP 地址(`142.250.80.46`)。 + +对话过程: +``` +你的浏览器: "google.com 的 IP 地址是什么?" +DNS 服务器: "是 142.250.80.46" +你的浏览器: "谢了。" [现在连接到 142.250.80.46] +``` + +每台设备都配置了一个 DNS 服务器地址。在大多数家庭网络中,路由器*就*是 DNS 服务器(它将你的查询转发给 ISP 的 DNS 或公共 DNS,如 `1.1.1.1`)。 + +在 **Droidspaces NAT 模式**中,Droidspaces 会在容器内写入 `resolv.conf` 文件,指向 DNS 服务器(默认 `1.1.1.1` 和 `8.8.8.8`,或通过 `--dns` 指定的地址)。同样的 DNS 服务器也会在 DHCP 租约中通告。 + +--- + +## 第五部分:NAT(你的路由器施展的魔法) + +### 问题 + +ISP 只给你**一个**公网 IP 地址。但你家有 10 台设备。这 10 台设备如何同时使用互联网? + +### 解决方案:NAT + +**NAT** = 网络地址转换 + +你的路由器维护着一张秘密表格。当局域网内的一台设备向互联网发送数据包时,路由器会: +1. 将源 IP 从设备的私有 IP(`192.168.1.5`)改写为路由器的公网 IP +2. 记住是哪台设备发送的 +3. 当回复从互联网返回时,将目的地址改写回设备的私有 IP 并转发给它 + +从互联网的视角看,你所有的家庭设备看起来都是*一个设备*:就是路由器。 + +``` +[笔记本: 192.168.1.5] --发送数据包--> [路由器] + | + | 将源 IP 改写为公网 IP + v + [互联网] + | + | 回复回来了 + v + [路由器] + | + | 将目的 IP 改写回 192.168.1.5 + v + [笔记本: 192.168.1.5] +``` + +### NAT 在 Droidspaces 中的应用 + +在 Droidspaces NAT 模式中,Droidspaces 的行为*和你的家庭路由器完全一样*——不过是面向容器: + +- 容器获得一个私有 IP(`172.28.x.x`) +- Droidspaces 安装 iptables `MASQUERADE` 规则(这是 Linux 中实现 NAT 目标的名称),外加 FORWARD 接受规则和 MSS 钳制规则,确保流量真正流通 +- 容器可以访问互联网;互联网看到的是 Android 的 IP,而不是容器的 IP +- Droidspaces 还会为容器运行一个嵌入式 DHCP 服务器并配置其 DNS +- 在 Android 上,后台路由监视器会自动检测活跃的互联网上行链路(通过读取内核的路由规则),并在活跃网络切换时(例如 Wi-Fi 到移动数据切换)立即将容器流量重新指向正确的接口 + +--- + +## 第六部分:网桥与虚拟线缆(Linux 管道) + +现在我们深入一层,看看 Linux 究竟是如何将容器彼此连接起来的。 + +### 什么是网桥? + +**网桥**的工作原理类似于网络交换机。物理网络交换机是一个盒子,可以插入多根以太网线缆;所有连接到它的设备都可以相互通信。 + +Linux 的**网桥**就是一个虚拟交换机,完全由软件实现。你可以用一条命令创建它,然后将虚拟网络接口"插入"其中。 + +``` +物理世界: Linux 世界: ++--------------+ +--------------+ +| 交换机 | | 网桥 | (纯软件,没有物理盒子) +| 端口1 端口2 | | 端口1 端口2 | ++--+------+---+ +--+------+---+ + | | | | +[PC1] [PC2] [veth1] [veth2] (虚拟线缆) +``` + +### 什么是 veth 对? + +**veth** = 虚拟以太网 + +veth 对是一对互相连接的虚拟网络接口,就像一根管道。你从一端发送的任何东西都会从另一端出来。 + +可以把它想象成一根有两端插头的虚拟以太网线缆。你把一端插在容器内部,另一端留在宿主机上(或插入一个网桥)。 + +``` +[容器 netns] [宿主机 netns] + eth0 --------------------- ds-veth0 + (容器内的插头) (宿主机侧的插头) +``` + +### NAT 模式如何使用网桥和 veth + +在 Droidspaces NAT 模式中: + +``` +[容器 netns] + eth0(例如 172.28.137.42) + | + | veth 对(虚拟线缆) + | +[宿主机侧] + ds-v ---- ds-br0(网桥,IP 为 172.28.0.1) + | + iptables MASQUERADE + | + wlan0 / rmnet0 + (Android 的真实网络) +``` + +网桥 `ds-br0` 拥有网关 IP `172.28.0.1`,每个 NAT 容器都将其作为默认网关使用。veth 对以容器的 init 进程 ID 命名:宿主机侧为 `ds-v`,容器侧初始为 `ds-p`,然后在容器内重命名为 `eth0`。 + +Droidspaces 运行一个小型的给每个容器开放的 DHCP 服务器,监听在容器的宿主机侧 veth 上。整个 `172.28.0.0/16` 子网属于 Droidspaces(`172.28.0.x` 段保留给网关自身,所以容器始终落在 `172.28.1.x` 到 `172.28.254.x` 之间),其中所有内容通过 Android 的真实接口进行 NAT 出站。 + +--- + +## 第七部分:网络命名空间(容器是如何隔离的) + +### 什么是命名空间? + +Linux 有一个名为**命名空间**的功能,可以让你创建系统资源的隔离视图。 + +**网络命名空间**是整个网络栈的一份隔离副本。它拥有自己的: +- 网络接口 +- 路由表 +- iptables 规则 +- 与网络相关的一切 + +当 Droidspaces 启动一个容器时,会为它创建一个新的网络命名空间。容器住在该命名空间中。它完全看不到宿主机的网络接口——只能看到 Droidspaces 显式放入其命名空间内的东西。 + +veth 对是宿主机命名空间和容器命名空间之间的隧道: +- veth 的一端进入容器的网络命名空间(显示为 `eth0`) +- 另一端留在宿主机的网络命名空间中(Droidspaces 将其连接到网桥) + +--- + +## 第八部分:OpenWRT 及其概念 + +### 什么是 OpenWRT? + +**OpenWRT** 是专为路由器设计的 Linux 发行版。通常情况下它运行在物理路由器硬件上,但也可以在常规 Linux 系统或容器内运行。 + +当 OpenWRT 运行时,它提供: +- **netifd**——网络接口守护进程(管理网络接口、DHCP 客户端/服务器等) +- **dnsmasq**——DNS 和 DHCP 服务器 +- **firewall3** 或 **nftables**——防火墙 +- **LuCI**——配置用的 Web 界面 +- 真正路由器所做的一切,以软件形式实现 + +这意味着你可以在 Droidspaces 容器内运行 OpenWRT,它会表现得和真正的路由器一模一样:管理网络、分发 DHCP 租约、处理 DNS、应用防火墙规则、路由 VPN 流量等。 + +--- + +## 第九部分:全新的网关模式——融会贯通 + +### 为什么要有网关模式? + +在 NAT 模式中,Droidspaces 就是路由器。它包办一切。这在大多数情况下都很好。 + +但如果你想让 **OpenWRT 成为其他容器的路由器**呢?你想要 OpenWRT 的防火墙规则、OpenWRT 的 DHCP、OpenWRT 的 VPN 路由,并让其他容器(比如 Kali Linux 容器)处在 OpenWRT 的局域网内,一切从 OpenWRT 获取。 + +问题在于:如果 Droidspaces 也试图为这些容器安装 NAT、DHCP 和 DNS,就会与 OpenWRT 正在做的事情*冲突*。两个 DHCP 服务器争抢由谁分配 IP 地址。两个防火墙应用互相矛盾的规则。 + +**网关模式解决了这个问题。** Droidspaces 退后一步。它只做 L2 的管道(虚拟线缆和交换机),让 OpenWRT 掌管所有策略:DHCP、DNS、防火墙、路由。 + +### 架构总览 + +``` +Android 宿主机内核 +| ++-- wlan0(Android 的真实 Wi-Fi——WAN) +| ++-- [OpenWRT 容器——net=nat 模式] +| netns:拥有 eth0(WAN 侧,由 Droidspaces 提供 NAT) +| eth1(LAN 侧——由网关模式插入 ds-lan 网桥) +| 运行:dnsmasq、netifd、防火墙、VPN +| ++-- ds-lan(宿主机网桥——无 IP 地址,仅作为交换机) +| | +| +-- ds-g[hash](veth 宿主机侧,连接到 OpenWRT 的 netns 作为 eth1) +| +-- ds-v[pid] (veth 宿主机侧,连接到 Kali 的 netns 作为 eth0) +| ++-- [Kali 容器——net=gateway 模式] + netns:拥有 eth0(LAN 侧——插入 ds-lan 网桥) + 从 OpenWRT 的 dnsmasq 获取 DHCP + 路由决策由 OpenWRT 做出 + 防火墙规则由 OpenWRT 应用 +``` + +### 逐步说明——启动网关模式容器时发生了什么 + +**第 1 步——先启动 OpenWRT(NAT 模式)** + +```bash +droidspaces --name=openwrt --rootfs=/data/openwrt --net=nat start +``` + +OpenWRT 启动。它拥有: +- WAN 侧的 `eth0`(Droidspaces 为其管理 NAT) +- 还没有 LAN 侧——OpenWRT 正在等待 + +**第 2 步——启动 Kali(网关模式)** + +```bash +droidspaces --name=kali --rootfs=/data/kali --net=gateway --gateway=openwrt start +``` + +Droidspaces 执行以下操作(仅管道,无策略): + +1. 找到 OpenWRT 正在运行的进程 ID,以便访问其网络命名空间 +2. 在宿主机上创建一个名为 `ds-lan` 的网桥,该网桥上不设置 IP 地址 +3. 禁用 `bridge-nf-call-iptables`,使 Android 宿主机防火墙**不**拦截该网桥上的流量,让 OpenWRT 的防火墙成为唯一的权威 +4. 为 OpenWRT 的 LAN 侧创建一个 veth 对——一端进入 OpenWRT 的 netns(显示为 `eth1`),另一端插入 `ds-lan` 网桥 +5. 为 Kali 创建一个 veth 对——一端进入 Kali 的 netns(显示为 `eth0`),另一端插入 `ds-lan` 网桥 +6. **不**安装 NAT、DHCP、DNS 或任何防火墙规则 + +**第 3 步——OpenWRT 接管** + +OpenWRT 的 `netifd` 检测到 `eth1` 出现。它将其配置为 LAN 接口。 +OpenWRT 的 `dnsmasq` 开始在 `eth1` 上响应 DHCP 请求。 + +Kali 的 `eth0` 发送 DHCP 请求,OpenWRT 的 `dnsmasq` 回复: +- IP 地址:`192.168.1.100`(或 OpenWRT DHCP 范围内的任意 IP) +- 网关:`192.168.1.1`(即 OpenWRT 本身) +- DNS:`192.168.1.1`(OpenWRT 的 dnsmasq) + +Kali 现在已完全配置好,以 OpenWRT 作为其路由器。 + +**第 4 步——流量经过 OpenWRT** + +当 Kali 尝试访问互联网时: + +``` +Kali eth0 --> ds-lan 网桥 --> OpenWRT eth1 + | + OpenWRT 防火墙规则在此应用 + | + OpenWRT 路由到 eth0(WAN) + | + Droidspaces NAT(eth0 -> wlan0) + | + Android wlan0 --> 互联网 +``` + +OpenWRT 的防火墙看到 Kali 的全部流量,并可以应用任何规则:阻止特定网站、通过 VPN 重定向、带宽整形、连接日志——完全和真正的路由器一样。 + +### "延迟挂接"的含义 + +网关 veth 是"延迟挂接"的。这意味着: + +- 当你启动 OpenWRT 时,它**不会**立即获得 `eth1` +- `eth1` 仅在**第一个网关模式容器启动时**才会出现在 OpenWRT 内部 +- 这是有意为之——OpenWRT 只带着它的 WAN 侧启动(`eth0`),其 LAN 线缆(`eth1`)稍后按需插入 + +这模拟了你在路由器运行后,再将物理线缆插入路由器 LAN 端口的场景。 + +### 为什么网关模式下不修改 resolv.conf + +在 NAT 模式中,Droidspaces 会在容器内写入 `/etc/resolv.conf`,指向 `1.1.1.1` 或 `8.8.8.8`。 + +在网关模式中,Droidspaces **不**写入 `resolv.conf`(除非你显式传入 `--dns`)。这是因为 OpenWRT 的 `dnsmasq` 会通过 DHCP 租约将 DNS 服务器地址分发给容器。如果 Droidspaces 也写入了 `resolv.conf`,就会与 dnsmasq 提供的内容冲突——容器将使用错误的 DNS,完全绕过 OpenWRT 的 DNS 过滤/缓存。 + +### 为什么 bridge-nf-call-iptables 要设为 0 + +网桥 `ds-lan` 承载着 OpenWRT 和 Kali 之间的流量。默认情况下,Linux 可以将桥接流量通过宿主机的 iptables 处理。这意味着 Android 的 iptables 规则(可能会意外丢弃或 NAT 某些流量)会干扰本该由 OpenWRT 管理的流量。 + +将其设为 `0` 告诉 Linux:"不对桥接流量运行 iptables。"这让 OpenWRT 的防火墙成为查看此流量的*唯一*防火墙——这正是我们想要的效果。 + +### 网关容器必须先运行 + +启动顺序很重要。当一个网关模式容器启动时,Droidspaces 会查找网关容器的实时进程 ID 以访问其网络命名空间。如果此时网关容器没有运行,网络设置会失败并发出警告,客户端容器依然会启动——但完全没有网络(只有 loopback)。它不会自行重试。 + +同样的逻辑也适用于网关重启后。veth 对是一起死亡的:当网关容器停止时,它内部的 `eth1` 端被销毁,这也会销毁宿主机侧的那一端。现有的客户端仍然插在网桥上,但已经没有了路由器。LAN 线缆会在该网段上**任何**网关模式容器的下一次启动时重新插入——所以在重启网关后,重启一个客户端(或启动一个新客户端)即可让网段恢复。 + +### 容器停止时会发生什么 + +网关模式中的清理被刻意最小化,遵循"仅管道"的理念: + +- **客户端停止:** 仅移除该客户端自己的 veth(`ds-v`)。网桥和网关的 `eth1` 保持运行,因此同一网段上的其他客户端不受影响。 +- **网关停止:** 网关侧的 veth 随其命名空间一起消失(见上文),但网桥本身保留。 +- 委托网桥(`ds-lan` 等)永远不会被 Droidspaces 拆除。它在闲置时无害——没有 IP 也不承载任何策略——并持续存在直到你手动删除它或重启设备。 + +--- + +## 第十部分:网关模式的标志与配置 + +### 必选标志 vs 可选标志 + +使用 `--net=gateway` 时**只有一个标志是必选的**: + +```bash +--gateway= +``` + +如果省略它,Droidspaces 会打印错误并拒绝启动。其他所有标志都有可用的默认值: + +| 标志 | 默认值 | 它控制什么 | +|---|---|---| +| `--gateway=NAME` | *(无——必选)* | 哪个运行中的容器是路由器 | +| `--gateway-net=NAME` | `lan` | LAN 网段名称——见下文 | +| `--gateway-iface=IFACE` | `eth1` | 网关容器内的接口名称 | +| `--gateway-bridge=BR` | `ds-{gateway-net}` | 完全覆盖宿主机网桥名称 | + +因此最小有效命令是: + +```bash +droidspaces --name=client --net=gateway --gateway=openwrt start +``` + +这与显式拼出所有默认值完全相同: + +```bash +droidspaces --name=client --net=gateway --gateway=openwrt \ + --gateway-net=lan \ + --gateway-iface=eth1 \ + start +``` + +### --gateway-net 的作用 + +该标志同时控制两件事,均从同一个名称派生。 + +**1. 它命名宿主机网桥。** + +Droidspaces 在宿主机上创建的网桥命名为 `ds-{NAME}`: + +``` +--gateway-net=lan -> 宿主机网桥:ds-lan +--gateway-net=vpn -> 宿主机网桥:ds-vpn +--gateway-net=iot -> 宿主机网桥:ds-iot +``` + +**2. 它是网段标识符——客户端落在哪个网桥上。** + +网关 LAN 侧的 veth 名称是通过对字符串 `{gateway_container}:{gateway_net}` 进行哈希来生成的。相同的哈希 = 相同的 veth = 相同的网桥网段。这意味着共享相同 `--gateway` 和 `--gateway-net` 的多个客户端容器最终都在同一个网桥上,并且都从同一个 OpenWRT 接口获取 DHCP。 + +这就是 `--gateway-net` 真正的威力所在:通过同一个网关容器运行多个隔离的 LAN 网段。 + +```bash +# 这两个落在 ds-lan 上——它们彼此可见,OpenWRT 将它们作为一个局域网路由 +droidspaces --name=kali --net=gateway --gateway=openwrt --gateway-net=lan start +droidspaces --name=ubuntu --net=gateway --gateway=openwrt --gateway-net=lan start + +# 这一个落在 ds-vpn 上——一个完全独立的网桥 +# OpenWRT 可以对这个网段应用不同的防火墙/VPN 规则 +droidspaces --name=torbox --net=gateway --gateway=openwrt --gateway-net=vpn start +``` + +在 OpenWRT 内部,`lan` 客户端通过 `eth1` 传入,`vpn` 客户端通过 `eth2` 传入(每个网段获得自己的 veth,因为 `openwrt:lan` 和 `openwrt:vpn` 的哈希不同)。 + +### --gateway-iface 的作用 + +这控制了**LAN 接口在网关容器的网络命名空间内部使用的名称**。 + +当 Droidspaces 为一个网段创建网关 veth 时,它会将一端移入 OpenWRT 的 netns,并将其从原始的哈希名称(`ds-hXXXXXXXX`)重命名为你在此传入的名称(默认 `eth1`)。 + +**为什么要这么做?** OpenWRT 的配置是围绕接口名称构建的。如果你的 OpenWRT `/etc/config/network` 写着: + +``` +config interface 'lan' + option device 'eth1' +``` + +...那么出现在 OpenWRT 内部的接口**必须**命名为 `eth1`,否则 OpenWRT 不会将其识别为 LAN,也不会在上面提供 DHCP。`--gateway-iface=eth1` 确保了这一点。 + +对于第二个网段,你需要传入 `--gateway-iface=eth2`,这样 OpenWRT 会将其视为一个独立的接口,你可以为其添加第二个 UCI network 配置块。 + +**重要细节:** `--gateway-iface` 仅在该网段的网关 veth 首次创建时生效——也就是该网段上第一个客户端容器启动时。网关 veth 由同一个 `--gateway-net` 上的所有客户端共享;它只创建一次并重复使用。第一个之后的每个客户端完全跳过网关 veth 的创建,仅仅将自己的应用 veth 接入现有的网桥。 + +这意味着如果你在 `--gateway-net=lan` 上启动两个容器,且两个都传入 `--gateway-iface=eth1`,完全没有问题:第一个容器创建 veth 并重命名为 `eth1`,第二个容器发现 veth 已经存在,根本不处理 `--gateway-iface`。 + +### 必须避免的标志冲突 + +问题只会在你使用**两个不同的 `--gateway-net` 网段但相同的 `--gateway-iface`** 时出现: + +```bash +# 网段 1——在 OpenWRT 内部创建 eth1 +droidspaces --name=kali --net=gateway --gateway=openwrt --gateway-net=lan --gateway-iface=eth1 start + +# 网段 2——错误:也尝试在 OpenWRT 内部创建 eth1 +droidspaces --name=torbox --net=gateway --gateway=openwrt --gateway-net=vpn --gateway-iface=eth1 start +``` + +当第二条命令运行时,Droidspaces 尝试将一个新的 veth 对端移入 OpenWRT 并重命名为 `eth1`。但 `eth1` 已经存在于 OpenWRT 内部(来自第一个网段)。代码不会直接报错,而是检测到冲突后仅将现有的 `eth1` 重新启用,让新的 veth 对端以其原始哈希名称(`ds-hYYYYYYYY`)留在 OpenWRT 中。OpenWRT 没有 `ds-hYYYYYYYY` 的配置,会静默忽略它。`vpn` 网段得不到网关侧接口:没有 DHCP、没有路由,其上的容器实际上处于隔离状态。 + +**规则:** 每个 `--gateway-net` 网段必须有唯一的 `--gateway-iface` 名称。 + +```bash +# 正确:两个网段,两个接口名称 +--gateway-net=lan --gateway-iface=eth1 -> OpenWRT 内的 eth1(LAN 网段) +--gateway-net=vpn --gateway-iface=eth2 -> OpenWRT 内的 eth2(VPN 网段) +``` + +### 验证规则与内核要求 + +Droidspaces 在启动时强制执行几条规则,违规则拒绝启动: + +- 容器不能将自己作为自己的网关(`--gateway` 必须命名一个不同的容器) +- 接口和网桥名称必须短于 16 个字符(Linux `IFNAMSIZ` 限制),且只能包含字母、数字、`_` 和 `-` +- 内核必须支持网络命名空间(`CONFIG_NET_NS`)、veth 对(`CONFIG_VETH`)和网桥(`CONFIG_BRIDGE`)。Droidspaces 在启动前检查这三项,缺少任一则致命错误退出 + +另外还有两点需要了解: + +- `--port` 仅在 NAT 模式中有意义。在网关模式中,它会被忽略并发出警告——端口转发和上行链路选择现在是网关容器的工作。 +- 当宿主机网桥名称从 `--gateway-net` 自动派生时,名称会被清理(仅保留字母、数字、`_`、`-`)并截断为 9 个字符,生成 `ds-` 加上最多 9 个字符。如果需要精确的网桥名称,请使用 `--gateway-bridge` 显式设定。 + +--- + +## 第十一部分:所有网络模式对比 + +| 特性 | NAT 模式 | Host 模式 | None 模式 | 网关模式 | +|---|---|---|---|---| +| 谁分配 IP? | Droidspaces DHCP | Android(共享) | 无(仅 loopback) | OpenWRT dnsmasq | +| 谁做 NAT? | Droidspaces iptables | Android | 不适用 | OpenWRT(通过 Droidspaces 为 OpenWRT 的 WAN 做 NAT) | +| 谁管理防火墙? | Droidspaces | Android | 不适用 | OpenWRT | +| 谁管理 DNS? | Droidspaces | Android | 无 | OpenWRT dnsmasq | +| 容器与宿主机网络隔离? | 是 | 否 | 是 | 是 | +| 互联网访问? | 是 | 是 | 否 | 是(通过网关容器) | +| 需要第二个容器才能工作? | 否 | 否 | 否 | 是(网关容器) | +| 适用于 | 简单的互联网访问 | 最大性能,零开销 | 离线 / 沙盒环境 | 路由器设备、VPN 网关、分段局域网 | + +--- + +## 第十二部分:网关模式的真实使用场景 + +### 1. 为特定容器设置 VPN 终止开关 + +运行带有 WireGuard 或 OpenVPN 客户端的 OpenWRT。配置 OpenWRT 的防火墙丢弃所有不经过 VPN 隧道的流量。使用网关模式的任何容器都无法将流量泄漏到 VPN 之外——OpenWRT 在网桥层面强制实施这一点,而不是在各个容器内部。 + +### 2. 多个隔离的 LAN 网段 + +使用 `--gateway-net` 在同一个 OpenWRT 上创建独立的网段。`--gateway-net=lan` 上的容器无法访问 `--gateway-net=vpn` 上的容器,除非 OpenWRT 显式地在它们之间进行路由。你可以通过一个网关容器实现类 VLAN(虚拟局域网)风格的隔离。 + +### 3. 流量分析 + +运行带有 `tcpdump` 或 `nftables` 日志功能的 OpenWRT。来自每个网关模式容器的每个数据包都流经 OpenWRT,因此你获得了一个单一的咽喉点,可以同时观察所有容器的全部网络活动。 + +### 4. 自定义 DNS 过滤 + +运行带有 `dnsmasq` 黑名单(或通过 opkg 安装 Adblock)的 OpenWRT。网关局域网上的每个容器都会获得经过过滤的 DNS,而无需单独触碰每个容器。 + +### 5. 带宽整形 + +OpenWRT 的 `tc`(流量控制)和 `sqm-scripts` 可以按容器进行带宽整形,因为 OpenWRT 将每个容器视为到达其 LAN 接口的一个独立 MAC 地址。 + +--- + +## 快速参考——术语表 + +| 术语 | 一句话定义 | +|---|---| +| **IP 地址** | 网络上设备的数字地址(例如 `192.168.1.5`) | +| **MAC 地址** | 网络接口的硬件地址,用于同一网络内的传递 | +| **LAN** | 局域网——彼此靠近、可以直接通信的设备 | +| **WAN** | 广域网——互联网,本地网络之外的部分 | +| **网关** | 连接两个网络并在它们之间路由流量的设备 | +| **DHCP** | 自动为设备分配 IP 地址的协议 | +| **DNS** | 将域名(`google.com`)转换为 IP 地址的系统 | +| **NAT** | 将一个公网 IP 在多个私有 IP 设备之间共享的技术 | +| **网桥** | 连接多个网络接口的虚拟(或物理)交换机 | +| **veth 对** | 一对像管道一样连接的虚拟网络接口——从一端进,从另一端出 | +| **网络命名空间** | Linux 网络栈的隔离副本——容器生活在自己的命名空间中 | +| **OpenWRT** | 一个为作为路由器/网关运行而设计的 Linux 发行版——运行 dnsmasq、netifd、防火墙 | +| **netifd** | OpenWRT 的网络接口守护进程——管理接口和 DHCP | +| **dnsmasq** | OpenWRT 使用的轻量级 DHCP 和 DNS 服务器 | +| **MASQUERADE** | 实现 NAT 的 Linux iptables 规则(改写源 IP) | +| **委托 LAN** | Droidspaces 在网关模式中创建的网桥网络——策略由网关容器而非 Droidspaces 掌管 | +| **网段** | 由 `--gateway-net` 标识的一个隔离 LAN——每个网段获得自己的网桥和在网关容器内的独立接口 | +| **延迟挂接** | 网关的 LAN 侧 veth 仅在第一个客户端容器启动时创建,而非网关容器启动时创建 | diff --git a/Documentation/zh-CN/community-supported-devices.md b/Documentation/zh-CN/community-supported-devices.md index b152aa83..fb931ba6 100644 --- a/Documentation/zh-CN/community-supported-devices.md +++ b/Documentation/zh-CN/community-supported-devices.md @@ -26,11 +26,12 @@ keywords: droidspaces, supported, devices, android, device, compatibility, kerne | 设备名称 | 型号 | Android / ROM | Baseband / Build | 内核版本 | Root 方式 | 内核源码 | 下载链接 | Droidspaces 模式 | GPU 加速 | 状态 | 维护者 | 附加说明 | | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| **Galaxy S10(日版)** | SCV41 / SM-G973J | One UI 4.1 - Android 12 | `SCV41KDU1DWC1` | `4.14.190` | KernelSU-Next v3.1.0 | [Source](https://github.com/ravindu644/samsung_kernel_SCV41_droidspaces) | [Download](https://github.com/ravindu644/samsung_kernel_SCV41_droidspaces/releases/download/v2/Droidspaces-KSUN-Samsung-SCV41.tar) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | -| **Poco X2** | M1912G7Bx | BlissROM-v16.5 - Android 13 | - | `4.14.274` | KernelSU-Next v1.1.1 | [Source](https://github.com/ravindu644/phoenix-blissROM-A13-droidspaces) | [Download](https://github.com/ravindu644/phoenix-blissROM-A13-droidspaces/releases/download/v1/Droidspaces-KSUNv1.1.1-phoenix.zip) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | +| **Galaxy S10(日版)** | SCV41 / SM-G973J | One UI 4.1 - Android 12 | `SCV41KDU1DWC1` | `4.14.190` | KernelSU-Next v3.1.0 | [Source](https://github.com/ravindu644/samsung_kernel_SCV41_droidspaces) | [Download](https://github.com/ravindu644/samsung_kernel_SCV41_droidspaces/releases/download/v2/Droidspaces-KSUN-Samsung-SCV41.tar) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | +| **Poco X2** | M1912G7Bx | BlissROM-v16.5 - Android 13 | - | `4.14.274` | KernelSU-Next v1.1.1 | [Source](https://github.com/ravindu644/phoenix-blissROM-A13-droidspaces) | [Download](https://github.com/ravindu644/phoenix-blissROM-A13-droidspaces/releases/download/v1/Droidspaces-KSUNv1.1.1-phoenix.zip) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | | **Realme 6, 6i, 6s** | RMX2001L1 | RUI 2.0 - Android 11 | - | `4.14.336` | KSU-Next v3.2.0 / ReSukiSU v4.1.0 | [Source](https://github.com/Prime-TITAN-CameraMan/android_kernel_realme_nemo) | [Download](https://github.com/Prime-TITAN-CameraMan/android_kernel_realme_nemo/releases/tag/v1.1) | Both | Virgl | 正常运行 | [@Prime-TITAN-CameraMan](https://github.com/Prime-TITAN-CameraMan) | 仅限 RUI 2.0 且不支持防火墙(UFW/Fail2ban) | -| **Redmi K20 Pro(国行)** | M1903F11A | YAAP 16 - Banshee (Android 16) | `1.0.c3-0061-1017_2229_f7c3bc9ce` | `4.14.353` | KernelSU v3.2.4-gee75714a | [Source](https://github.com/Alhkxsj/CRom-KSU-Builder) | [Download](https://github.com/Alhkxsj/CRom-KSU-Builder/releases/download/raphael_YAAP-sixteen_KernelSU-by-xx_20260514_1438/raphael_YAAP-sixteen_KernelSU-by-xx_20260514_1438.zip) | Both | Turnip & Virgl | 正常运行 | [@Alhkxsj](https://github.com/Alhkxsj) | 内核源码为原版 YAAP 内核;通过自动化构建工作流应用 Droidspaces 配置 | -| **Oneplus 8, 8T, 8Pro, 9R** | IN2010 | Lineage OS 23.2 - Android 16 | `Q_V1_P14` | `4.19.325` | 无 | [Source](https://github.com/JackA1ltman/dreamworld_oneplus_sm8250) | [Download](https://github.com/JackA1ltman/dreamworld_oneplus_sm8250/releases/tag/v1.2) | Both | Turnip & Virgl | 正常运行 | [@JackA1ltman](https://github.com/JackA1ltman) | 仅限自定义 ROM。支持 NTSYNC。 | +| **Redmi K20 Pro(国行)** | M1903F11A | YAAP 16 - Banshee (Android 16) | `1.0.c3-0061-1017_2229_f7c3bc9ce` | `4.14.353` | KernelSU v3.2.4-gee75714a | [Source](https://github.com/Alhkxsj/CRom-KSU-Builder) | [Download](https://github.com/Alhkxsj/CRom-KSU-Builder/releases/download/raphael_YAAP-sixteen_KernelSU-by-xx_20260514_1438/raphael_YAAP-sixteen_KernelSU-by-xx_20260514_1438.zip) | Both | Turnip & Virgl | 正常运行 | [@Alhkxsj](https://github.com/Alhkxsj) | 内核源码为原版 YAAP 内核;通过自动化构建工作流应用 Droidspaces 配置 | +| **Oneplus 8, 8T, 8Pro, 9R** | IN2010 | Lineage OS 23.2 - Android 16 | `Q_V1_P14` | `4.19.325` | 无 | [Source](https://github.com/JackA1ltman/dreamworld_oneplus_sm8250) | [Download](https://github.com/JackA1ltman/dreamworld_oneplus_sm8250/releases/tag/v1.2) | Both | Turnip & Virgl | 正常运行 | [@JackA1ltman](https://github.com/JackA1ltman) | 仅限自定义 ROM。支持 NTSYNC。 | +| **OnePlus 7 Pro** | GM1911 | LineageOS 17.1 - Android 10 | `QQ3A.200805.001` | `4.14.117` | Magisk | [Source](https://github.com/charan-gn/guacamole-droidspaces-kernel) | [Download](https://github.com/charan-gn/guacamole-droidspaces-kernel/releases/tag/v1.0) | Both | Turnip & Virgl | 正常运行 | [@charan-gn](https://github.com/charan-gn) | AnyKernel3 可在任何 ROM 上刷入。 | ## GKI 设备(内核 5.4 及以上版本) @@ -38,114 +39,151 @@ keywords: droidspaces, supported, devices, android, device, compatibility, kerne | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | | **Galaxy A16 5G** | SM-A166P | One UI 6.1 - Android 14 | `5.15.148` | KernelSU-Next v3.1.0 | [Source](https://github.com/ravindu644/android_kernel_a166p) | [Download](https://github.com/ravindu644/android_kernel_a166p/releases/download/r20260402-c17abb78/KernelSU-SM-A166P-OneUI6-A166PXXS4AYC1-r20260402-c17abb78.tar.zip) | Both | 仅 Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | | **Galaxy A16 5G** | SM-A166P | One UI 7.0 - Android 15 | `5.15.167` | KernelSU-Next v1.1.1 | [Source](https://github.com/ravindu644/android_kernel_a166p) | [Download](https://github.com/ravindu644/android_kernel_a166p/releases/download/ubuntu-x-docker/Ubuntu-x-KernelSU-Next-SM-A166P-dev.zip) | Both | 仅 Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | -| **Galaxy M14 4G** | SM-M145F | One UI 7.0 - Android 15 | `5.15.167` | KernelSU-Next v1.1.1 | [Source](https://github.com/ravindu644/android_kernel_sm_m145f) | [Download](https://github.com/ravindu644/android_kernel_sm_m145f/releases/download/v1/SM-M145F-Droidspaces-KSUNv1.1.1-M145FXXS8DYH1.tar.zip) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | +| **Galaxy M14 4G** | SM-M145F | One UI 7.0 - Android 15 | `5.15.167` | KernelSU-Next v1.1.1 | [Source](https://github.com/ravindu644/android_kernel_sm_m145f) | [Download](https://github.com/ravindu644/android_kernel_sm_m145f/releases/download/v1/SM-M145F-Droidspaces-KSUNv1.1.1-M145FXXS8DYH1.tar.zip) | Both | Turnip & Virgl | 正常运行 | [@ravindu644](https://github.com/ravindu644) | - | | **Galaxy A25 5G** | SM-A253Z | One UI 8.0 - Android 16 | `5.15.180` | Magisk | [Source](https://github.com/yoshi3jp/android_kernel_samsung_a25ex_mt6835) | [Download](https://github.com/yoshi3jp/android_kernel_samsung_a25ex_mt6835/releases/download/r20260421-89a95a08/DroidSpaces-SM-A253Z-OneUI8-A253ZSCS1BZA2-r20260421-89a95a08.tar.zip) | Both | 无 | 正常运行 | [@yoshi3jp](https://github.com/yoshi3jp) | - | -| **OnePlus Pad 2 Pro(国行)** | OPD2413 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 3 | -| **OnePlus 13(国行)** | PJZ110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | -| **OnePlus 13(国行)** | PJZ110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | -| **OnePlus Ace 5 Pro(国行)** | PKR110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 5 Pro(国行)** | PKR110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus 13T(国行)** | PKX110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus 13T(国行)** | PKX110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 6(国行)** | PLR110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 3 Pro(国行)** | PJX110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 3 Pro(国行)** | PJX110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 5(国行)** | PKG110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 13R | -| **OnePlus Ace 5(国行)** | PKG110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 13R | -| **OnePlus 12(国行)** | PJD110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | -| **OnePlus 12(国行)** | PJD110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | -| **OnePlus Pad Pro(国行)** | OPD2403 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 2(国际版) | -| **OnePlus Pad Pro(国行)** | OPD2403 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 2(国际版) | -| **Realme GT 5 Pro(国行)** | RMX3888 | RealmeUI 7.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus Ace 3(国行)** | PJE110 | ColorOS 16.0 - Android 16 | `5.15.180` | 无 | [Source](https://github.com/Numbersf/Action-Build) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_5.15.180_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 12R | -| **OnePlus Ace 3(国行)** | PJE110 | ColorOS 15.0 - Android 15 | `5.15.167` | 无 | [Source](https://github.com/Numbersf/Action-Build) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_5.15.167_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 12R | +| **OnePlus Pad 2 Pro(国行)** | OPD2413 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 3 | +| **OnePlus 13(国行)** | PJZ110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | +| **OnePlus 13(国行)** | PJZ110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | +| **OnePlus Ace 5 Pro(国行)** | PKR110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 5 Pro(国行)** | PKR110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus 13T(国行)** | PKX110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus 13T(国行)** | PKX110 | ColorOS 15.0 - Android 15 | `6.6.66` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.66_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 6(国行)** | PLR110 | ColorOS 16.0 - Android 16 | `6.6.89` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8750) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.6.89_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 3 Pro(国行)** | PJX110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 3 Pro(国行)** | PJX110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 5(国行)** | PKG110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 13R | +| **OnePlus Ace 5(国行)** | PKG110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 13R | +| **OnePlus 12(国行)** | PJD110 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | +| **OnePlus 12(国行)** | PJD110 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | +| **OnePlus Pad Pro(国行)** | OPD2403 | ColorOS 16.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.141_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 2(国际版) | +| **OnePlus Pad Pro(国行)** | OPD2403 | ColorOS 16.0 - Android 16 | `6.1.118` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus Pad 2(国际版) | +| **Realme GT 5 Pro(国行)** | RMX3888 | RealmeUI 7.0 - Android 16 | `6.1.141` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8650) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_6.1.118_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus Ace 3(国行)** | PJE110 | ColorOS 16.0 - Android 16 | `5.15.180` | 无 | [Source](https://github.com/Numbersf/Action-Build) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_5.15.180_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 12R | +| **OnePlus Ace 3(国行)** | PJE110 | ColorOS 15.0 - Android 15 | `5.15.167` | 无 | [Source](https://github.com/Numbersf/Action-Build) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_oki_5.15.167_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于 OnePlus 12R | | **OnePlus Ace 竞速版(国行)** | PGZ110 | ColorOS 15.0 - Android 15 | `5.10.167` | Resukisu | [Source](https://github.com/Numbersf/Action-Build) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/OKI%E5%86%85%E6%A0%B8/AnyKernel3_ReSukiSU_oki_5.10.226_Gold_bug_%E5%A4%A9%E7%8E%91%E7%89%B9%E4%BE%9B.zip) | Both | bridge & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **OnePlus SM8650(所有 LineageOS OnePlus 6.1 设备)** | SM8650 | LineageOS 23.2 - Android 16 QPR 2 | `6.1.166` | 无 | [Source](https://github.com/LineageOS/android_kernel_oneplus_sm8650) | [Download](https://github.com/linx3141/CRom-KSU-Builder/releases/tag/sm8650_LineageOS-lineage-23.2_None_20260512_1647) | Both | Turnip & Virgl | 正常运行 | [@linx3141](https://github.com/linx3141) | - | -| **Xiaomi 17(国行)** | 25113PN0EC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | -| **Xiaomi 17 Pro(国行)** | 2509FPN0BC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **Xiaomi 17 Pro max(国行)** | 25113PN0EC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **红魔 11 Pro(国行)** | NX809J | RedMagicOS11 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | -| **HONOR Magic Pad 3 Pro 13.3(国行)** | YLP-W00 | MagicOS10 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **OnePlus SM8650(所有 LineageOS OnePlus 6.1 设备)** | SM8650 | LineageOS 23.2 - Android 16 QPR 2 | `6.1.166` | 无 | [Source](https://github.com/LineageOS/android_kernel_oneplus_sm8650) | [Download](https://github.com/linx3141/CRom-KSU-Builder/releases/tag/sm8650_LineageOS-lineage-23.2_None_20260512_1647) | Both | Turnip & Virgl | 正常运行 | [@linx3141](https://github.com/linx3141) | - | +| **Xiaomi 17(国行)** | 25113PN0EC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | 适用于国际版 | +| **Xiaomi 17 Pro(国行)** | 2509FPN0BC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **Xiaomi 17 Pro max(国行)** | 25113PN0EC | HyperOS 3.0 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **红魔 11 Pro(国行)** | NX809J | RedMagicOS11 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | +| **HONOR Magic Pad 3 Pro 13.3(国行)** | YLP-W00 | MagicOS10 - Android 16 | `6.12.23` | 无 | [Source](https://github.com/cctv18/oppo_oplus_realme_sm8850) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.12.23_Gold_bug.zip) | Both | Turnip & Virgl | 正常运行 | [@Goldzxcbug](https://github.com/Goldzxcbug) | - | | **Xiaomi Pad7(国行)** | 2410CRP4CC | HyperOS 2.0 - Android 15 | `6.1.118` | Sukisu Ultra | [Source](https://github.com/HuangJunLin8/uke_GKI_KernelSU_SUSFS.git) | [Download](https://github.com/HuangJunLin8/uke_GKI_KernelSU_SUSFS/releases/tag/release) | Both | Turnip & Zink | 正常运行 | [HuangJunLin8](https://github.com/HuangJunLin8) | 支持 NTsync | -| **Xiaomi Pad 8 Pro(国行)** | 25091RP04C | HyperOS 3.0 - Android 16 | `6.6.77` | Resukisu
&
无Root | [Source](https://github.com/404-GCross/Droidspaces_GKI_Buildin_Local) | [ReSukiSU](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_ReSukiSU-34924_6.6.77_NTsync_github@404-GCross.zip)
[无Root](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.6.77_NTsync_github@404-GCross.zip) | Both | Turnip & Virgl | 正常运行 | [404-GCross](https://github.com/404-GCross) | 适用于国际版
支持 NTsync
ReSukiSU版本为34924 | -| **Xiaomi 15(国行)** | 24129PN74C | HyperOS 3.0 - Android 16 | `6.6.77` | Resukisu
&
无Root | [Source](https://github.com/404-GCross/Droidspaces_GKI_Buildin_Local) | [ReSukiSU](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_ReSukiSU-34924_6.6.77_NTsync_github@404-GCross.zip)
[无Root](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.6.77_NTsync_github@404-GCross.zip) | Both | Turnip & Virgl | 正常运行 | [404-GCross](https://github.com/404-GCross) | 适用于国际版
支持 NTsync
ReSukiSU版本为34924 | -| **Xiaomi 14(国行)** | 23127PN0CC | HyperOS 3.0 - Android 16 | `6.1.138` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.138_coolapk%40%E7%88%B1%E4%BD%A0%E4%B9%88%E4%B9%88%E5%93%92qcjl%E5%93%9F.zip) | Both | Turnip & Virgl | 正常运行 | [爱你么么哒qcjl哟](https://www.coolapk.com/u/29859482) | 适用于国际版 | -| **红魔 9 Pro(国行)** | NX769J | RedMagicOS11 - Android 16 | `6.1.124` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.124_KPM_BBG_RE-kernel_%E7%BA%A2%E9%AD%949pro_github%40sjszero.zip) | Both | Turnip & Virgl | 正常运行 | [@sjszero](https://github.com/sjszero) | - | -| **红魔 9 SPro+(国行)** | NX769J | RedMagicOS11 - Android 16 | `6.1.25` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.25_KPM_BBG_RE-kernel_%E7%BA%A2%E9%AD%949spro%2B_github%40sjszero.zip) | Both | Turnip & Virgl | 正常运行 | [@sjszero](https://github.com/sjszero) | - | -| **Xiaomi Pad 6S Pro(国行)** | 24018RPACC | HyperOS 3.0 - Android 16 | `5.15.178` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/Anykernel3_Resukisu_gki_NTsync_5.15.178_github%40mlfc666.zip) | Both | Turnip & Virgl | 正常运行 | [@mlfc666](https://github.com/mlfc666) | 适用于国际版
支持 NTsync | -| **Redmi K70(国行)** | 23113RKC6C | HyperOS 3.0 - Android 16 | `5.15.178` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/Anykernel3_Resukisu_gki_NTsync_5.15.178_github%40mlfc666.zip) | Both | Turnip & Virgl | 正常运行 | [@mlfc666](https://github.com/mlfc666) | 支持 NTsync | -| **Xiaomi Pad 6 Max (yudi)** | 2307BRPDCC | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync | -| **Xiaomi Pad 6 Pro (liuqin)** | 2307BRPDCC | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync | -| **Redmi K60 / POCO F5 Pro (mondrian)** | 23013RK75C | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync \| 适用于国际版 | -| **Redmi K50 Ultra / Xiaomi 12T Pro (diting)** | 22081212C | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync \| 适用于国际版 | -| **Xiaomi 11T Pro (vili)** | 2107113 | DerpFest A16 | `5.4` | KernelSU-Next | [Source](https://github.com/loystonpais/android_kernel_qcom_sm8350) | [Download](https://github.com/loystonpais/android_kernel_qcom_sm8350/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@loystonpais](https://github.com/loystonpais) | - | +| **Xiaomi Pad 8 Pro(国行)** | 25091RP04C | HyperOS 3.0 - Android 16 | `6.6.77` | Resukisu
&
无Root | [Source](https://github.com/404-GCross/Droidspaces_GKI_Buildin_Local) | [ReSukiSU](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_ReSukiSU-34924_6.6.77_NTsync_github@404-GCross.zip)
[无Root](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.6.77_NTsync_github@404-GCross.zip) | Both | Turnip & Virgl | 正常运行 | [404-GCross](https://github.com/404-GCross) | 适用于国际版
支持 NTsync
ReSukiSU版本为34924 | +| **Xiaomi 15(国行)** | 24129PN74C | HyperOS 3.0 - Android 16 | `6.6.77` | Resukisu
&
无Root | [Source](https://github.com/404-GCross/Droidspaces_GKI_Buildin_Local) | [ReSukiSU](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_ReSukiSU-34924_6.6.77_NTsync_github@404-GCross.zip)
[无Root](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_gki_6.6.77_NTsync_github@404-GCross.zip) | Both | Turnip & Virgl | 正常运行 | [404-GCross](https://github.com/404-GCross) | 适用于国际版
支持 NTsync
ReSukiSU版本为34924 | +| **Xiaomi 14(国行)** | 23127PN0CC | HyperOS 3.0 - Android 16 | `6.1.138` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.138_coolapk%40%E7%88%B1%E4%BD%A0%E4%B9%88%E4%B9%88%E5%93%92qcjl%E5%93%9F.zip) | Both | Turnip & Virgl | 正常运行 | [爱你么么哒qcjl哟](https://www.coolapk.com/u/29859482) | 适用于国际版 | +| **红魔 9 Pro(国行)** | NX769J | RedMagicOS11 - Android 16 | `6.1.124` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.124_KPM_BBG_RE-kernel_%E7%BA%A2%E9%AD%949pro_github%40sjszero.zip) | Both | Turnip & Virgl | 正常运行 | [@sjszero](https://github.com/sjszero) | - | +| **红魔 9 SPro+(国行)** | NX769J | RedMagicOS11 - Android 16 | `6.1.25` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/AnyKernel3_Resukisu_gki_6.1.25_KPM_BBG_RE-kernel_%E7%BA%A2%E9%AD%949spro%2B_github%40sjszero.zip) | Both | Turnip & Virgl | 正常运行 | [@sjszero](https://github.com/sjszero) | - | +| **Xiaomi Pad 6S Pro(国行)** | 24018RPACC | HyperOS 3.0 - Android 16 | `5.15.178` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/Anykernel3_Resukisu_gki_NTsync_5.15.178_github%40mlfc666.zip) | Both | Turnip & Virgl | 正常运行 | [@mlfc666](https://github.com/mlfc666) | 适用于国际版
支持 NTsync | +| **Redmi K70(国行)** | 23113RKC6C | HyperOS 3.0 - Android 16 | `5.15.178` | Resukisu | [Source](https://github.com/zzh20188/GKI_KernelSU_SUSFS) | [Download](https://raw.githubusercontent.com/Goldzxcbug/Droidspaces-kernel/refs/heads/main/GKI%E5%86%85%E6%A0%B8/Anykernel3_Resukisu_gki_NTsync_5.15.178_github%40mlfc666.zip) | Both | Turnip & Virgl | 正常运行 | [@mlfc666](https://github.com/mlfc666) | 支持 NTsync | +| **Xiaomi Pad 6 Max (yudi)** | 2307BRPDCC | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync | +| **Xiaomi Pad 6 Pro (liuqin)** | 2307BRPDCC | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync | +| **Redmi K60 / POCO F5 Pro (mondrian)** | 23013RK75C | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync \| 适用于国际版 | +| **Redmi K50 Ultra / Xiaomi 12T Pro (diting)** | 22081212C | HyperOS 3.0 - Android 15 | `5.10.252` | 无 | [Source](https://github.com/Star-ZER0/android_gki_kernel_5.10_common) | [Download](https://github.com/Star-ZER0/android_gki_kernel_5.10_common/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@Star-ZER0](https://github.com/Star-ZER0) | 支持 NTsync \| 适用于国际版 | +| **Xiaomi 11T Pro (vili)** | 2107113 | DerpFest A16 | `5.4` | KernelSU-Next | [Source](https://github.com/loystonpais/android_kernel_qcom_sm8350) | [Download](https://github.com/loystonpais/android_kernel_qcom_sm8350/releases/latest) | Both | Turnip & Virgl | 正常运行 | [@loystonpais](https://github.com/loystonpais) | - | | **Redmi Note 13 4G / NFC** | 23124RA7EO | HyperOS 2.0 - Android 15 | `5.15.202` | Wild-KSU v3.1.2 | [Source](https://github.com/superuseryu/kernel_sapphire_SM6225) | [Download](https://github.com/superuseryu/kernel_sapphire_SM6225/releases/tag/v1.5.2%2B_R27) | Both | Turnip | 正常运行 | [@superuseryu](https://github.com/superuseryu) | 其他 KSU 变体可能因 SELinux 上下文重置而失败。 | -| **Nothing Phone (1)** | A063 | crDroid - Android 16 | `5.4.302` | KernelSU-Next | [Source](https://github.com/crdroidandroid/android_kernel_nothing_sm7325) | [Download](https://crdroid.net/Spacewar/12) | Both | Turnip & Virgl | 正常运行 | [@MySelly](https://github.com/MySelly) | - | +| **Nothing Phone (1)** | A063 | crDroid - Android 16 | `5.4.302` | KernelSU-Next | [Source](https://github.com/crdroidandroid/android_kernel_nothing_sm7325) | [Download](https://crdroid.net/Spacewar/12) | Both | Turnip & Virgl | 正常运行 | [@MySelly](https://github.com/MySelly) | - | | **Reno10 5G** | PHW110 | ColorOS15-16.1 - Android 15-16 | `5.4.254` | ReSukiSU | [Source](https://github.com/miaizhe/Kernel_oppo_sm7325_Reno10) | [Download](https://github.com/miaizhe/Kernel_oppo_sm7325_Reno10/releases) | Both | Turnip | 正常运行 | [@miaizhe](https://github.com/miaizhe) | - | | OnePlus 10 Pro | NE2210, NE2211, NE2213, NE2215, NE2217 | Android 14 (OOS/COS 14) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8450/tree/oneplus/sm8450_u_14.0.0_oneplus_10pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 10 Pro | NE2210, NE2211, NE2213, NE2215, NE2217 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8450/tree/210ba17c8f19beed0212eb4f209109e35ef35746) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 10 Pro | NE2210, NE2211, NE2213, NE2215, NE2217 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8450/tree/oneplus/sm8450_v_15.0.0_oneplus_10_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 10 Pro | NE2210, NE2211, NE2213, NE2215, NE2217 | Android 16 (OOS/COS 16) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8450/tree/oneplus/sm8450_b_16.0_oneplus_10_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 10R | CPH2411 | Android 14 (OOS/COS 14) | 5.10.168 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_u_14.0.0_10r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 10R | CPH2411 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_v_15.0.0_oneplus_10r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | -| OnePlus 10T | CPH2415, CPH2413, CPH2417, CPH2419 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_v_15.0.0_oneplus_10t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 10T | CPH2415, CPH2413, CPH2417, CPH2419 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/bdebb03938ab5f6719abc50af454d76a1b12df67) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 10T | CPH2415, CPH2413, CPH2417, CPH2419 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/45235533105840dc875a80e9d5b4cd881e453472) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 10T | CPH2415, CPH2413, CPH2417, CPH2419 | Android 15 (OOS/COS 15) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_v_15.0.0_oneplus_10t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 14 (OOS/COS 14) | 5.15.123 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_u_14.0.0_oneplus11) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/7d9f64c901ac11ce80bf78682d33fd336c825fd9) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_v_15.0.0_oneplus11) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | -| OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_oneplus_11) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 16 (OOS/COS 16) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/bee3255be1f407e7cff7b0b8f1c26daaccbbb510) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 11 | PHB110, CPH2449, CPH2447, CPH2451 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_oneplus_11) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus 11R | CPH2487 | Android 14 (OOS/COS 14) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_u_14.0.0_oneplus_11r_5g) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 11R | CPH2487 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/6821a3751c4fd016a7ee4da5aea635d42a8b3d43) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 11R | CPH2487 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_v_15.0.0_oneplus_11r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 11R | CPH2487 | Android 16 (OOS/COS 16) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_b_16.0.0_oneplus_11r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 12 | PJD110, CPH2573, CPH2581, CPH2583 | Android 14 (OOS/COS 14) | 6.1.57 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_u_14.0.0_oneplus12) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 12 | PJD110, CPH2573, CPH2581, CPH2583 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/c461b745bc361581d0b419effd284367d85f1e57) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 12 | PJD110, CPH2573, CPH2581, CPH2583 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_oneplus12) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 12 | PJD110, CPH2573, CPH2581, CPH2583 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/2936373a255da66646a05384e993d55a8dfecc80) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 12 | PJD110, CPH2573, CPH2581, CPH2583 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_oneplus12) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 12R | CPH2609, CPH2585, CPH2611 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/86a89359565410962004fd838e3d2e3b42a047ca) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 12R | CPH2609, CPH2585, CPH2611 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_v_15.0.0_oneplus_12r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 12R | CPH2609, CPH2585, CPH2611 | Android 16 (OOS/COS 16) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/717aea450444dfd00db7d60c99cff77fbcbf014e) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus 12R | CPH2609, CPH2585, CPH2611 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_oneplus_12r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13 | CPH2655, CPH2653, PJZ110, CPH2649 | Android 15 (OOS/COS 15) | 6.6.30 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/f9c1a38fe1bf6bf39f25e4167e8322813c7707b9) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13 | CPH2655, CPH2653, PJZ110, CPH2649 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_oneplus_13) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13 CPH | CPH2655, CPH2653, CPH2649 | Android 15 (OOS 15) | 6.6.56 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/cec4a1056a32dfdd68c23767f6c88bb6c698f1bf) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13 CPH | CPH2655, CPH2653, CPH2649 | Android 15 (OOS 15) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.0_oneplus_13_global) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13 PJZ | PJZ110 | Android 15 (COS 15) | 6.6.66 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.0_oneplus_13) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13R | CPH2645, CPH2691, CPH2647 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/d68f486cb00b246abf4b7b66375082dc8bcb884e) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13R | CPH2645, CPH2691, CPH2647 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_oneplus_13r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | -| OnePlus 13R | CPH2645, CPH2691, CPH2647 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_oneplus_13r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13R | CPH2645, CPH2691, CPH2647 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/35f7c28cf36e19e3243a9db8496d5e70b94e34ce) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13R | CPH2645, CPH2691, CPH2647 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_oneplus_13r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_oneplus_13r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13S | CPH2723 | Android 15 (OOS/COS 15) | 6.6.56 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.2_oneplus_13s) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13S | CPH2723 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_oneplus_13s) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus 13T | PKX110 | Android 15 (OOS/COS 15) | 6.6.56 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/06be241a7b9eefa01db78447cc7877339b3685f3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13T | PKX110 | Android 15 (OOS/COS 15) | 6.6.66 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.2_oneplus_13t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 13T | PKX110 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_oneplus_13t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 15 | CPH2747, CPH2745, PLK110, CPH2749 | Android 16 (OOS/COS 16) | 6.12.23 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8850/tree/oneplus/sm8850_b_16.0.0_oneplus_15) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 15R | CPH2769, CPH2767 | Android 16 (OOS/COS 16) | 6.12.38 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8845/tree/oneplus/sm8845_b_16.0.0_oneplus_15r) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus 15T | PLZ110 | Android 16 (OOS/COS 16) | 6.12.38 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8850/tree/oneplus/sm8850_b_16.0_oneplus_15t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE | PGKM10 | Android 14 (OOS/COS 14) | 5.10.168 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_u_14.0.0_ace) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE | PGKM10 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/e5f7c2a470fd9d8b43c5082aed8b58a6d5a2bf7c) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE | PGKM10 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_v_15.0.0_ace) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 2 | PHK110 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/ef7ca029d0f6beddf38e60f6b9016935d0f1ac55) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2 | PHK110 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_v_15.0.0_ace_2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2 | PHK110 | Android 16 (OOS/COS 16) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8475/tree/oneplus/sm8475_b_16.0.0_ace_2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 2 Pro | PJA110 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/95b9da8a7cd99053f65e7d4cebec310b5f5d5744) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2 Pro | PJA110 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_v_15.0.0_ace_2_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2 Pro | PJA110 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_ace_2_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2V | PHP110 | Android 14 (OOS/COS 14) | 5.10.168 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus_mt6983_u_14.0.0_oneplus_ace_2v) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 2V | PHP110 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/8a49e1e297768839d78730f15e8f34e0d0b59f2b) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2V | PHP110 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus/mt6983_v_15.0.0_ace_2v) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 2V | PHP110 | Android 16 (OOS/COS 16) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus/mt6983_b_16.0.0_ace_2v) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 3 | PJE110 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/3a51ce558bfa3a1c7eeaaab69ee54d5e6bd03afb) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus ACE 3 | PJE110 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_v_15.0.0_ace_3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 3 | PJE110 | Android 16 (OOS/COS 16) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/3dc000f085497a728cdf21b28fab9d3ef632f5fd) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus ACE 3 | PJE110 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_ace_3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 3 Pro | PJX110 | Android 14 (OOS/COS 14) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_u_14.1.0_oneplus_ace3pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 3 Pro | PJX110 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/1cee682fb60cc9ffd86a2342fa8051bcde77116f) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 3 Pro | PJX110 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_ace_3_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 3 Pro | PJX110 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_ace_3_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 3V | PJF110 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/ac51a5e4c2b0f13f06e9234e415bfa68fb24a8b5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 3V | PJF110 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/oneplus/sm7675_v_15.0.0_ace_3v) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 3V | PJF110 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/65c3035422d899d95bfde4e30dc426712ffe52f2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 3V | PJF110 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/oneplus/sm7675_b_16.0.0_ace_3v) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 5 | PKG110 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/8c797fd3ff3f76248b44a619410ace1277692907) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 5 | PKG110 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_oneplus_ace5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 5 | PKG110 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/7499247fd6e0669a062ec44cce948ec1e9d4c75e) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 5 | PKG110 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_ace_5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | -| OnePlus ACE 5 Pro | PKR110 | Android 15 (OOS/COS 15) | 6.6.66 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.0_oneplus_ace5_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 5 Pro | PKR110 | Android 15 (OOS/COS 15) | 6.6.30 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/94969654b1ac03071c42c4757cd9333535612415) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | +| OnePlus ACE 5 Pro | PKR110 | Android 15 (OOS/COS 15) | 6.6.66 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.0_oneplus_ace5_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus ACE 5 Pro | PKR110 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_oneplus_ace5_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 5 Racing | PLF110 | Android 15 (OOS/COS 15) | 6.1.115 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6989/tree/oneplus/mt6989_v_15.0.2_ace5_race) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | -| OnePlus ACE 5 Racing | PLF110 | Android 16 (OOS/COS 16) | 6.1.134 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6989/tree/oneplus/mt6989_b_16.0.0_ace5_racehttps://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 5 Racing | PLF110 | Android 16 (OOS/COS 16) | 6.1.134 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6989/tree/oneplus/mt6989_b_16.0.0_ace5_race) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 5 Ultra | PLC110 | Android 15 (OOS/COS 15) | 6.6.50 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6991/tree/06b1dfbb8f777d329a25d6f932f58f0e45d87627) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 5 Ultra | PLC110 | Android 15 (OOS/COS 15) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6991/tree/oneplus/mt6991_v_15.0.2_ace5_ultra) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 5 Ultra | PLC110 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6991/tree/oneplus/mt6991_b_16.0.0_oneplus_ace5_ultra) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 6 | PLQ110 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_ace_6) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE 6 Ultra | PMB110 | Android 16 (OOS/COS 16) | 6.12.58 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6993/tree/oneplus/mt6993_b_16.0_ace_6_ultra) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE 6T | PLR110 | Android 16 (OOS/COS 16) | 6.12.38 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8845/tree/oneplus/sm8845_b_16.0.0_ace_6t) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE Race | PGZ110 | Android 14 (OOS/COS 14) | 5.10.168 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_u_14.0.0_ace_race) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE Race | PGZ110 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/7a64b08a000cc7040d99543cc7093aaa13e0c786) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus ACE Race | PGZ110 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/6409af87cfda3739caff4ee29eb28e77abe8a290) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus ACE Race | PGZ110 | Android 15 (OOS/COS 15) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6895/tree/oneplus/mt6895_v_15.0.0_ace_race) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 3 | CPH2491, CPH2493 | Android 14 (OOS/COS 14) | 5.10.198 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus_mt6983_u_14.0.0_nord_3_5g) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 3 | CPH2491, CPH2493 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/b9b40be7bbe4e2c201ba263ac72f2e1b10171998) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 3 | CPH2491, CPH2493 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus/mt6983_v_15.0.0_nord_3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 4 | CPH2663, CPH2661 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/a3c5659c859e888102a144be0884fbf3731b170f) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 4 | CPH2663, CPH2661 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/oneplus/sm7675_v_15.0.0_nord_4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 4 | CPH2663, CPH2661 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/975bcbc2e288c3b7c2d2799421c7f356f9c78ce4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 4 | CPH2663, CPH2661 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7675/tree/oneplus/sm7675_b_16.0.0_nord_4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 4 CE | CPH2613 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7550/tree/d8187f64c9e60fee0969a678a67ac77114a926d9) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 4 CE | CPH2613 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7550/tree/0d28103245225a507d4f4b3ca657d3e27aae2f20) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 4 CE | CPH2613 | Android 15 (OOS/COS 15) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7550/tree/oneplus/sm7550_v_15.0.0_nord_ce4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 4 CE | CPH2613 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm7550/tree/oneplus/sm7550_b_16.0.0_nord_ce4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 5 | CPH2709, CPH2707 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8635/tree/oneplus/sm8635_v_15.0.2_nord5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Nord 5 | CPH2709, CPH2707 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8635/tree/fbeaa9ff25bef199618b9e47004f2eb8fe135f9f) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 5 | CPH2709, CPH2707 | Android 16 (OOS/COS 16) | 6.1.141 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8635/tree/oneplus/sm8635_b_16.0.0_nord_5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord 6 | CPH2793, CPH2795 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8735/tree/oneplus/sm8735_b_16.0.0_nord_6) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord CE4 Lite | CPH2619, CPH2621 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm6375/tree/oneplus/sm6375_v_15.0.0_nord_ce4_lite_5g) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | @@ -153,16 +191,22 @@ keywords: droidspaces, supported, devices, android, device, compatibility, kerne | OnePlus Nord CE5 | CPH2719, CPH2717 | Android 15 (OOS/COS 15) | 6.1.115 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6897/tree/oneplus/mt6897_v_15.0.2_nord_ce5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord CE5 | CPH2719, CPH2717 | Android 16 (OOS/COS 16) | 6.1.134 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6897/tree/oneplus/mt6897_b_16.0.0_nord_ce5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Nord N30 SE | CPH2605 | Android 15 (OOS/COS 15) | 6.6.30 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6833/tree/oneplus/mt6833_v_15.0.0_nord_n30_se_5g) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Open | CPH2551 | Android 15 (OOS/COS 15) | 5.15.149 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/2a845b8afd7afc3d72679ddbe5adb07c390966bc) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Open | CPH2551 | Android 15 (OOS/COS 15) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_v_15.0.0_oneplus_open) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Open | CPH2551 | Android 16 (OOS/COS 16) | 5.15.167 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/1e88584a40b3b055e5ff3796f9a184655ef2d0b8) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Open | CPH2551 | Android 16 (OOS/COS 16) | 5.15.180 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8550/tree/oneplus/sm8550_b_16.0.0_oneplus_open) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 2 MT6991 | OPD2508 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6991/tree/oneplus/mt6991_b_16.0.0_pad_2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad 2 Pro | OPD2413 | Android 15 (OOS/COS 15) | 6.6.30 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/68c46d941cc1818d49f8a8805c79e63fbee01eac) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 2 Pro | OPD2413 | Android 15 (OOS/COS 15) | 6.6.57 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.1_pad_2_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 2 Pro | OPD2413 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_pad_2_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad 2 SM8650 | OPD2403 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/f5a170ce44c7657894247de3de41d23a89e248f7) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 2 SM8650 | OPD2403 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_pad2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 2 SM8650 | OPD2403 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_pad2) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad 3 MT6897 | OPD2407 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6897/tree/cbae97472bca105f69ffaef126065f9ab06e1c12) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus Pad 3 MT6897 | OPD2407 | Android 15 (OOS/COS 15) | 6.1.128 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6897/tree/oneplus/mt6897_v_15.0.0_oneplus_pad) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 3 MT6897 | OPD2407 | Android 16 (OOS/COS 16) | 6.1.134 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6897/tree/oneplus/mt6897_b_16.0.0_oneplus_pad) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 3 Pro | OPD2513 | Android 16 (OOS/COS 16) | 6.12.58 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8850/tree/oneplus/sm8850_b_16.0_pad_3_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad 3 SM8750 | OPD2415 | Android 15 (OOS/COS 15) | 6.6.30 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/35366be96d7e73d1d0d7093e1cf2fafd58f9c7d4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会变化。 | | OnePlus Pad 3 SM8750 | OPD2415 | Android 15 (OOS/COS 15) | 6.6.57 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_v_15.0.1_pad_3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 3 SM8750 | OPD2415 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8750/tree/oneplus/sm8750_b_16.0.0_pad_3) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad 4 | OPD2514 | Android 16 (OOS/COS 16) | 6.12.58 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8850/tree/oneplus/sm8850_b_16.0_pad_4) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | @@ -171,9 +215,11 @@ keywords: droidspaces, supported, devices, android, device, compatibility, kerne | OnePlus Pad Lite | OPD2480, OPD2481 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6789/tree/oneplus/mt6789_v_15.0.1_pad_lite) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad Lite | OPD2480, OPD2481 | Android 16 (OOS/COS 16) | 6.12.23 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_oneplus_mt6789/tree/oneplus/mt6789_b_16.0_pad_lite) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad MT6983 | OPD2203 | Android 14 (OOS/COS 14) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus_mt6983_u_14.0.0_oneplus_pad) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad MT6983 | OPD2203 | Android 15 (OOS/COS 15) | 5.10.209 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/4790201712d757f4f337cd55e5709255edc8bee5) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad MT6983 | OPD2203 | Android 15 (OOS/COS 15) | 5.10.226 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus/mt6983_v_15.0.0_oneplus_pad) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad MT6983 | OPD2203 | Android 16 (OOS/COS 16) | 5.10.236 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_5.10_oneplus_mt6983/tree/oneplus/mt6983_b_16.0.0_oneplus_pad) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad Pro | OPD2404 | Android 14 (OOS/COS 14) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_u_14.1.0_onepluspad_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | +| OnePlus Pad Pro | OPD2404 | Android 15 (OOS/COS 15) | 6.1.75 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/dcb47d3dcba84e13ae678f18b4629b22333e8898) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad Pro | OPD2404 | Android 15 (OOS/COS 15) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_v_15.0.0_pad_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Pad Pro | OPD2404 | Android 16 (OOS/COS 16) | 6.1.118 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8650/tree/oneplus/sm8650_b_16.0.0_pad_pro) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 | | OnePlus Turbo 6 | PLU110 | Android 16 (OOS/COS 16) | 6.6.89 | KernelSU Next + SusFS | [Source](https://github.com/OnePlusOSS/android_kernel_common_oneplus_sm8735/tree/oneplus/sm8735_b_16.0.0_turbo_6) | [Download](https://github.com/WildKernels/OnePlus_KernelSU_SUSFS/releases) | Both | Turnip & Virgl | 正常运行 | [@fatalcoder524](https://github.com/fatalcoder524) | 请查看最新发布说明以获取更多信息和功能可用性。处于活跃 OTA 支持状态设备的系统内核版本可能会有变化。 |