mirror of
https://github.com/tiann/KernelSU.git
synced 2025-02-20 11:43:32 +08:00
website: opti device list
This commit is contained in:
parent
b1e279bd2a
commit
0e651fdc99
@ -8,9 +8,23 @@ In this page, there are kernels for non-GKI devices supporting KernelSU maintain
|
||||
This page is only for you to find the source code corresponding to your device, it does **NOT** mean that the source code has been reviewed by _KernelSU Developers_. You should use it at your own risk.
|
||||
:::
|
||||
|
||||
| Maintainer | Repository | Support devices |
|
||||
| --- | --- | --- |
|
||||
| [SpectreDev-007](https://github.com/SpectreDev-007) | [kernel_sony_sm8250](https://github.com/XperiaBrickers/kernel_sony_sm8250) | Sony sm8250 device |
|
||||
| [akash07k](https://github.com/akash07k) | [nexus_kernel_xiaomi_sm8250](https://github.com/akash07k/nexus_kernel_xiaomi_sm8250/tree/lychee) | Poco F4: munch |
|
||||
| [HMTheBoy154](https://github.com/hmtheboy154) | [Darkmatter-kernel](https://github.com/hmtheboy154/Darkmatter-kernel) <br/> [kernel_ksu](https://github.com/hmtheboy154/kernel_ksu) | Generic x86_64 devices running Android-x86 |
|
||||
| [Asuka-mio](https://github.com/asuka-mio) | [android_kernel_xiaomi_cas](https://github.com/AcmeUI-Devices/android_kernel_xiaomi_cas)| Mi 10 Ultra: cas |
|
||||
<script setup>
|
||||
import data from '../repos'
|
||||
</script>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Maintainer</th>
|
||||
<th>Repository</th>
|
||||
<th>Support devices</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="repo in data" :key="repo.devices">
|
||||
<td><a href="{{ repo.maintainer_link }}" target="_blank" rel="noreferrer">{{ repo.maintainer }}</a></td>
|
||||
<td><a href="{{ repo.kernel_link }}" target="_blank" rel="noreferrer">{{ repo.kernel_name }}</a></td>
|
||||
<td>{{ repo.devices }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
49
website/docs/repos.js
Normal file
49
website/docs/repos.js
Normal file
@ -0,0 +1,49 @@
|
||||
const repos = [
|
||||
{
|
||||
maintainer: 'SpectreDev-007',
|
||||
maintainer_link: 'https://github.com/SpectreDev-007',
|
||||
kernel_name: 'kernel_sony_sm8250',
|
||||
kernel_link: 'https://github.com/XperiaBrickers/kernel_sony_sm8250',
|
||||
devices: 'Sony sm8250 device'
|
||||
},
|
||||
|
||||
{
|
||||
maintainer: 'akash07k',
|
||||
maintainer_link: 'https://github.com/akash07k',
|
||||
kernel_name: 'nexus_kernel_xiaomi_sm8250',
|
||||
kernel_link: 'https://github.com/akash07k/nexus_kernel_xiaomi_sm8250/tree/lychee',
|
||||
devices: 'Poco F4: munch'
|
||||
},
|
||||
|
||||
{
|
||||
maintainer: 'HMTheBoy154',
|
||||
maintainer_link: 'https://github.com/hmtheboy154',
|
||||
kernel_name: 'Darkmatter-kernel',
|
||||
kernel_link: 'https://github.com/hmtheboy154/Darkmatter-kernel',
|
||||
devices: 'Generic x86_64 devices running Android-x86'
|
||||
},
|
||||
|
||||
{
|
||||
maintainer: 'Asuka-mio',
|
||||
maintainer_link: 'https://github.com/asuka-mio',
|
||||
kernel_name: 'android_kernel_xiaomi_cas',
|
||||
kernel_link: 'https://github.com/AcmeUI-Devices/android_kernel_xiaomi_cas',
|
||||
devices: 'Mi 10 Ultra: cas'
|
||||
},
|
||||
{
|
||||
maintainer: 'xiaoleGun',
|
||||
maintainer_link: 'https://github.com/xiaoleGun',
|
||||
kernel_name: 'Miku_kernel_xiaomi_wayne',
|
||||
kernel_link: 'https://github.com/Diva-Room/Miku_kernel_xiaomi_wayne',
|
||||
devices: 'wayne'
|
||||
},
|
||||
{
|
||||
maintainer: 'YamazakuraH',
|
||||
maintainer_link: 'https://github.com/YamazakuraH',
|
||||
kernel_name: 'kernel_xiaomi_cepheus',
|
||||
kernel_link: 'https://github.com/169163-Network/kernel_xiaomi_cepheus',
|
||||
devices: 'cepheus for pixel experience'
|
||||
},
|
||||
];
|
||||
|
||||
export default repos;
|
@ -10,8 +10,23 @@ Trang này chỉ để cho bạn tìm thấy source cho thiết bị của bạn
|
||||
|
||||
:::
|
||||
|
||||
| Maintainer | Repository | Thiết bị hỗ trợ |
|
||||
| --- | --- | --- |
|
||||
| [SpectreDev-007](https://github.com/SpectreDev-007) | [kernel_sony_sm8250](https://github.com/XperiaBrickers/kernel_sony_sm8250) | Các thiết bị Sony dùng SM8250 |
|
||||
| [akash07k](https://github.com/akash07k) | [nexus_kernel_xiaomi_sm8250](https://github.com/akash07k/nexus_kernel_xiaomi_sm8250/tree/lychee) | Poco F4: munch |
|
||||
| [HMTheBoy154](https://github.com/hmtheboy154) | [Darkmatter-kernel](https://github.com/hmtheboy154/Darkmatter-kernel) <br/> [kernel_ksu](https://github.com/hmtheboy154/kernel_ksu) | Các thiết bị x86_64 chạy Android-x86 |
|
||||
<script setup>
|
||||
import data from '../../repos'
|
||||
</script>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Maintainer</th>
|
||||
<th>Repository</th>
|
||||
<th>Thiết bị hỗ trợ</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="repo in data" :key="repo.devices">
|
||||
<td><a href="{{ repo.maintainer_link }}" target="_blank" rel="noreferrer">{{ repo.maintainer }}</a></td>
|
||||
<td><a href="{{ repo.kernel_link }}" target="_blank" rel="noreferrer">{{ repo.kernel_name }}</a></td>
|
||||
<td>{{ repo.devices }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -8,8 +8,23 @@
|
||||
本文档仅方便查找设备对应源码,这并不意味该源码**被** KernelSU 开发者**审查**,你应自行承担使用风险。
|
||||
:::
|
||||
|
||||
| 维护者 | 仓库地址 | 支持设备 |
|
||||
| --- | --- | --- |
|
||||
| [SpectreDev-007](https://github.com/SpectreDev-007) | [kernel_sony_sm8250](https://github.com/XperiaBrickers/kernel_sony_sm8250) | 索尼 骁龙865 |
|
||||
| [akash07k](https://github.com/akash07k) | [nexus_kernel_xiaomi_sm8250](https://github.com/akash07k/nexus_kernel_xiaomi_sm8250/tree/lychee) | Poco F4: munch |
|
||||
| [HMTheBoy154](https://github.com/hmtheboy154) | [Darkmatter-kernel](https://github.com/hmtheboy154/Darkmatter-kernel) <br/> [kernel_ksu](https://github.com/hmtheboy154/kernel_ksu) | 运行 Android-x86 的通用 x86_64 设备 |
|
||||
<script setup>
|
||||
import data from '../../repos'
|
||||
</script>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>维护者</th>
|
||||
<th>仓库地址</th>
|
||||
<th>支持设备</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="repo in data" :key="repo.devices">
|
||||
<td><a href="{{ repo.maintainer_link }}" target="_blank" rel="noreferrer">{{ repo.maintainer }}</a></td>
|
||||
<td><a href="{{ repo.kernel_link }}" target="_blank" rel="noreferrer">{{ repo.kernel_name }}</a></td>
|
||||
<td>{{ repo.devices }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
Loading…
x
Reference in New Issue
Block a user