website: opti device list

This commit is contained in:
tiann
2023-01-29 12:59:32 +08:00
parent b1e279bd2a
commit 0e651fdc99
4 changed files with 109 additions and 16 deletions

View File

@@ -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>