Files
KernelSU-Next/docs/pages/devices.html

176 lines
6.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Devices | KernelSU Next</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<link rel="icon" href="../assets/icons/ksu-next-tab.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
html, body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
footer {
margin-top: auto;
}
body {
font-family: 'Inter', sans-serif;
background-color: #ffffff;
color: #000000;
}
.navbar {
background-color: #000000;
}
.navbar-brand span {
font-weight: bold;
font-size: 1.5rem;
color: #ffffff;
}
.navbar-toggler {
background-color: #ffffff;
}
header {
background-color: #000000;
color: #ffffff;
padding: 5rem 0;
}
header h1 {
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
}
footer {
background-color: #000000;
color: #ffffff;
padding: 1.5rem 0;
}
footer a {
color: #ffffff;
}
.table th, .table td {
vertical-align: middle;
}
.navbar-nav .nav-link {
color: #ffffff;
}
.navbar-nav .nav-link:hover {
color: #cccccc;
}
#devices a {
color: #000000;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-md sticky-top py-3">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="https://rifsxd.github.io/KernelSU-Next/">
<span>KernelSU Next</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link text-light" href="../index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next" target="_blank">
<i class="fab fa-github fa-lg"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header>
<div class="container text-center">
<h1 class="fw-bold">Unofficially Supported Devices</h1>
<p class="lead">Here is the list of devices unofficially supported by KernelSU Next.</p>
</div>
</header>
<!-- Devices Table Section -->
<section id="devices" class="py-5">
<div class="container">
<!-- Warning Box -->
<div class="alert alert-warning" role="alert">
<strong>Warning!</strong> In this page, there are kernels for devices unofficially supporting KernelSU Next maintained by other developers. So be cautious of what you are flashing!
</div>
<!-- Wrap the table inside a div with overflow-x: auto -->
<div style="overflow-x: auto;">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th scope="col">Maintainer</th>
<th scope="col">Repository</th>
<th scope="col">Supported Devices</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/devnoname120" target="_blank">devnoname120</a></td>
<td><a href="https://github.com/devnoname120/Android-Kernel-Builder_mi-note-10-lite/releases" target="_blank">kernel_xiaomi_sm6150</a></td>
<td>Mi Note 10 Lite (toco)</td>
</tr>
<tr>
<td><a href="https://github.com/rifsxd" target="_blank">rifsxd</a></td>
<td><a href="https://github.com/rifsxd/nyx_android_kernel_realme_c35/releases" target="_blank">nyx_android_kernel_realme_c35</a></td>
<td>Realme C35 (RMX3511, RMX3513)</td>
</tr>
<tr>
<td><a href="https://github.com/utkustnr" target="_blank">utkustnr</a></td>
<td><a href="https://github.com/utkustnr/android_kernel_huawei_hi6250" target="_blank">android_kernel_huawei_hi6250</a></td>
<td>Huawei P20 lite (ANE) & P Smart (FIG)</td>
</tr>
<!-- <tr>
<td>Example Maintainer</td>
<td><a href="https://github.com/example/example" target="_blank">example repo name</a></td>
<td>Example Devices</td>
</tr> -->
<!-- Add more rows as needed -->
</tbody>
</table>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="container">
<p>&copy; 2025 KernelSU Next. All rights reserved. <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>