-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathabout.html
162 lines (158 loc) · 6.36 KB
/
about.html
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PC Engines - github pages - About</title>
</head>
<body>
<!-- header -->
<nav id="nav" class="navigation">
<div class="navigation__container">
<div id="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<ul class="navigation__list">
<li class="navigation__list-item navigation__list-item-logo">
<a href="index.html">PC ENGINES ™</a>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://docs.opnsense.org/manual/install.html"
>OPNsense</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation/blob/master/docs/pfSense-install-guide.md"
>pfSense</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation/blob/master/docs/pxelinux-cfg.md"
>Pxelinux</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation"
>Documentation</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://docs.google.com/spreadsheets/d/1_uRhVo9eYeZONnelymonYp444zYHT_Q_qmJEJ8_XqJc/edit#gid=0"
>Regression Test Results</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://gitlab.com/pcengines/coreboot/pipelines"
>GitLab CI</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a href="/blog">Blog</a>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a href="about.html">About</a>
</li>
</ul>
</div>
</nav>
<div class="container--image--about">
<div class="container--image--about-filter"></div>
<div class="container--image--about-description">
<span></span>
<h2 class="header-title">About</h2>
</div>
</div>
<main>
<div class="container">
<div class="wrapper--about">
<div class="about__info">
<p class="big-text">
This website and <a class="green-text" href="https://github.com/pcengines">PC
Engines organization on Github</a> is officially maintained by
<a class="green-text" href="https://3mdeb.com/">3mdeb Team</a> on
behalf of <a class="green-text" href="https://pcengines.ch">PC Engines</a>.
</p>
</div>
<div>
<p class="medium-text">
3mdeb is small but worldwide-recognized embedded firmware
development consultancy, which leverages years of industry
experience to provide innovative services through <a class="green-text" href="https://docs.dasharo.com">Dasharo</a>. We help hardware OEMs and ODMs to achieve the
full potential, security, and reliability of delivered products
through Open Source Firmware (coreboot, UEFI/edk2, LinuxBoot,
U-Boot, and others). We support the medical industry using
Verified Boot and Secure Boot technologies for Real-Time
Operating Systems and Embedded Linux. Hyper-scale cloud providers
get our firmware design and security skills to secure their
computing devices. Trusted Computing and Trusted Execution
Environment applications are used and developed by us every day.
There is no embedded software, firmware, or close-to
hardware-related challenge we would not consider.
</p>
<p class="medium-text">
Our activity on high-profile professional conferences (Platform
Security Summit, FOSDEM, Xen Developers Summit, and others),
organization and co-organization of various events (Qubes OS
mini-summit, GRUB2 mini-summit, LPC System Boot and Security
Microconference) position us as a recognized community member and
leader in evangelizing the use of open source solutions.
</p>
<p class="medium-text">
Over the years, the community recognized us as coreboot licensed
service providers, UEFI Adopters, LVFS Consultants, Yocto
Participants and accepted our membership in OpenPOWER Foundation.
</p>
</div>
<div class="about__contact">
<p>If you are interested in our products or services feel free to</p>
<a href="https://3mdeb.com/contact">CONTACT US</a>
</div>
</div>
</div>
</main>
<footer id="responsive-footer">
<div class="footer-text">
<a target="_blank" href="https://pcengines.ch/"> PC ENGINES </a>
</div>
</footer>
<script>
document.addEventListener("touchstart", function () {}, true);
let open = false;
const button = document.getElementById("nav-icon");
const nav = document.getElementById("nav");
const buttonClickHandler = function () {
open = !open;
if (open) {
button.classList.add("open");
nav.classList.add("navigation-active");
} else {
button.classList.remove("open");
nav.classList.remove("navigation-active");
}
};
button.addEventListener("click", buttonClickHandler);
</script>
</body>
</html>