-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainline.html
More file actions
120 lines (108 loc) · 3.7 KB
/
mainline.html
File metadata and controls
120 lines (108 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mainline Kernel - Android4Lumia950</title>
<link rel="stylesheet" href="style.css">
<style>
.progress-container {
width: 100%;
background-color: black;
height: 24px;
border-radius: 10px;
margin-bottom: 10px;
}
.progress-bar {
height: 100%;
width: 30%;
background-color: #007bff;
text-align: center;
line-height: 24px;
color: white;
border-radius: 10px;
}
.what-works-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.what-works-item .icon {
margin-right: 10px;
font-size: 24px;
}
.success p {
color: #32cd32;
}
.warning p {
color: orange;
}
.failure p {
color: red;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Mainline Kernel Status</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="sources.html">Sources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<!-- Progress Bar -->
<section id="progress-bar-section">
<div class="progress-container">
<div class="progress-bar">30%</div>
</div>
</section>
<!-- What Works -->
<section id="what-works-section">
<h2>What Works and What Doesn't (Mainline Kernel)</h2>
<div class="what-works">
<!-- CPU -->
<div class="what-works-item success">
<span class="icon">✔</span>
<p>CPU bringup/cores: <strong>Working</strong></p>
</div>
<!-- Battery Display -->
<div class="what-works-item failure">
<span class="icon">❌</span>
<p>Battery reporting: <strong>Not working</strong></p>
</div>
<!-- Framebuffer -->
<div class="what-works-item success">
<span class="icon">✔</span>
<p>Framebuffer: <strong>Works, but no panel or acceleration</strong></p>
</div>
<!-- Wi-Fi -->
<div class="what-works-item failure">
<span class="icon">❌</span>
<p>Wi-Fi: <strong>Not working</strong></p>
</div>
<!-- Bluetooth -->
<div class="what-works-item warning">
<span class="icon">⚠️</span>
<p>Bluetooth: <strong>Partially working</strong></p>
</div>
<!-- Audio -->
<div class="what-works-item failure">
<span class="icon">❌</span>
<p>Audio: <strong>Not working</strong></p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Android4Lumia950. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>