-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
mkdocs.yml
651 lines (639 loc) · 41.7 KB
/
mkdocs.yml
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
---
site_name: Dasharo Universe
site_url: https://docs.dasharo.com
repo_url: https://github.com/dasharo/docs
theme:
name: material
custom_dir: overrides
favicon: images/favicon.png
logo: images/dasharo-logo.png
features:
- content.action.edit
- content.action.view
- content.tabs.link
- content.code.copy
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
extra:
analytics:
provider: google
property: G-LH2JM6P96R
# feedback:
# title: Was this page helpful?
# ratings:
# - icon: material/thumb-up-outline
# name: This page was helpful
# data: 1
# note: >-
# Thanks for your feedback!
# - icon: material/thumb-down-outline
# name: This page was not helpful
# data: 0
# note: >-
# Thanks for your feedback! Help us improve this page by
# using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
social:
- icon: fontawesome/brands/github
link: https://github.com/dasharo
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@Dasharo
- icon: fontawesome/brands/twitter
link: https://twitter.com/dasharo_com
- icon: fontawesome/brands/reddit
link: https://www.reddit.com/r/Dasharo
- icon: fontawesome/brands/discord
link: https://discord.gg/QseTVHum3w
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- footnotes
- md_in_html
- meta
- pymdownx.details
- pymdownx.highlight
- pymdownx.keys
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
toc_depth: 2
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
plugins:
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- custom-skip-class-name
auto_caption: false
caption_position: bottom
background: white
shadow: true
manual: false
- search
- mkdocs-video
- redirects:
redirect_maps:
'common-coreboot-docs/dasharo_tools_suite.md': 'dasharo-tools-suite/overview.md'
'variants/clevo_nv41/ec_update.md': 'dasharo-tools-suite/documentation/features.md'
'unified/novacustom/fan-profiles.md': 'unified/novacustom/features.md'
'unified/novacustom/fn-lock-hotkey.md': 'unified/novacustom/features.md'
'unified/novacustom/rgb-keyboard.md': 'unified/novacustom/features.md'
'variants/protectli_fw6/building_manual.md': 'unified/protectli/building-manual.md#fw6'
'variants/protectli_vp1x1x/building_manual.md': 'unified/protectli/building-manual.md#v1000-series'
'variants/protectli_vp46xx/building_manual.md': 'unified/protectli/building-manual.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/building_manual.md': 'unified/protectli/building-manual.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/building_manual.md': 'unified/protectli/building-manual.md#vp2410'
'variants/protectli_vp2420/building_manual.md': 'unified/protectli/building-manual.md#vp2420'
'variants/protectli_fw6/firmware_update.md': 'unified/protectli/firmware-update.md#fw6'
'variants/protectli_vp1x1x/firmware_update.md': 'unified/protectli/firmware-update.md#v1000-series'
'variants/protectli_vp46xx/firmware_update.md': 'unified/protectli/firmware-update.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/firmware_update.md': 'unified/protectli/firmware-update.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/firmware_update.md': 'unified/protectli/firmware-update.md#vp2410'
'variants/protectli_vp2420/firmware_update.md': 'unified/protectli/firmware-update.md#vp2420'
'variants/protectli_fw6/initial-deployment.md': 'unified/protectli/initial-deployment.md#fw6'
'variants/protectli_vp1x1x/initial-deployment.md': 'unified/protectli/initial-deployment.md#v1000-series'
'variants/protectli_vp46xx/initial-deployment.md': 'unified/protectli/initial-deployment.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/initial-deployment.md': 'unified/protectli/initial-deployment.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/initial-deployment.md': 'unified/protectli/initial-deployment.md#vp2410'
'variants/protectli_vp2420/initial-deployment.md': 'unified/protectli/initial-deployment.md#vp2420'
'variants/protectli_fw6/overview.md': 'unified/protectli/overview.md#fw6'
'variants/protectli_vp1x1x/overview.md': 'unified/protectli/overview.md#v1000-series'
'variants/protectli_vp46xx/overview.md': 'unified/protectli/overview.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/overview.md': 'unified/protectli/overview.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/overview.md': 'unified/protectli/overview.md#vp2410'
'variants/protectli_vp2420/overview.md': 'unified/protectli/overview.md#vp2420'
'variants/protectli_vp46xx/post-install.md': 'unified/protectli/post-install.md#vp4630vp4650vp4670vp6630vp6650vp6670'
'variants/protectli_vp66xx/post-install.md': 'unified/protectli/post-install.md#vp4630vp4650vp4670vp6630vp6650vp6670'
'variants/protectli_fw6/recovery.md': 'unified/protectli/recovery.md#fw6'
'variants/protectli_vp1x1x/recovery.md': 'unified/protectli/recovery.md#v1000-series'
'variants/protectli_vp46xx/recovery.md': 'unified/protectli/recovery.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/recovery.md': 'unified/protectli/recovery.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/recovery.md': 'unified/protectli/recovery.md#vp2410'
'variants/protectli_vp2420/recovery.md': 'unified/protectli/recovery.md#vp2420'
'variants/protectli_fw6/test-matrix.md': 'unified/protectli/test-matrix.md#fw6'
'variants/protectli_vp1x1x/test-matrix.md': 'unified/protectli/test-matrix.md#v1000-series'
'variants/protectli_vp46xx/test-matrix.md': 'unified/protectli/test-matrix.md#vp4630vp4650vp4670'
'variants/protectli_vp66xx/test-matrix.md': 'unified/protectli/test-matrix.md#vp6630vp6650vp6670'
'variants/protectli_vp2410/test-matrix.md': 'unified/protectli/test-matrix.md#vp2410'
'variants/protectli_vp2420/test-matrix.md': 'unified/protectli/test-matrix.md#vp2420'
'osf-trivia-list/dasharo-entry-subscription.md': 'osf-trivia-list/dasharo-pro-package.md'
'variants/hardware-compatibility-list.md': 'variants/overview.md'
'variants/msi_z690/building-manual.md': 'unified/msi/building-manual.md'
'variants/msi_z690/cpu-hcl.md': 'unified/msi/hcl.md'
'variants/msi_z690/overview.md': 'unified/msi/overview.md'
'variants/msi_z690/development.md': 'unified/msi/development.md'
'variants/msi_z690/faq.md': 'unified/msi/faq.md'
'variants/msi_z690/firmware-update.md': 'unified/msi/firmware-update.md'
'variants/msi_z690/gpu-hcl.md': 'unified/msi/hcl.md'
'variants/msi_z690/initial-deployment.md': 'unified/msi/initial-deployment.md'
'variants/msi_z690/memory-hcl.md': 'unified/msi/hcl.md'
'variants/msi_z690/openness-analysis.md': 'variants/msi_z690/openness_score.md'
'variants/msi_z690/recovery.md': 'unified/msi/recovery.md'
# This parameter excludes the listed pages from being added to the sitemap.
# This solves the problem of orphaned pages (pages that are in the site map,
# but there are no internal links to them).
# Read more: https://ahrefs.com/blog/orphan-pages/#how-to-fix-orphan-pages
- exclude:
glob:
- dev-env/nix-dev-env.md
- ecosystem/attestation-server.md
- ecosystem/dev.md
- ecosystem/secure-storage.md
- ecosystem/osf-community.md
- ecosystem/end-user.md
- ecosystem/prod.md
- ecosystem/customer-infrastructure.md
- ecosystem/hardware-infrastructure.md
- ecosystem/testing-infrastructure.md
- ecosystem/publishing-server.md
- ecosystem/transparent-validation.md
- ecosystem/signing-server.md
- ecosystem/reference-os.md
- ecosystem/deployment-and-provisioning-server.md
- inquiries/community-edition.md
- inquiries/sponsorware.md
- inquiries/commercial-inquiries.md
- inquiries/overview.md
- osf-trolling-list/osf_issues_taxonomy.md
- value-prop/performance.md
- value-prop/certification-program/overview.md
- variants/safety-critical.md
- variants/trustworthy-server.md
- variants/skus-overview.md
- variants/trustworthy-computing.md
- variants/firewall.md
- variants/secure-firewall.md
- variants/custom.md
- variants/server.md
nav:
- 'Intro':
- 'About Dasharo': index.md
- 'New? Start here': newcomers.md
- 'Supported hardware':
- 'Overview': variants/overview.md
- 'Version matrix': variants/versions.md
# - 'Hardware Compatibility List': variants/hardware-compatibility-list.md
- 'NovaCustom laptops':
- 'Overview': unified/novacustom/overview.md
- 'Building manual': unified/novacustom/building-manual.md
- 'Initial deployment': unified/novacustom/initial-deployment.md
- 'Firmware update': unified/novacustom/firmware-update.md
- 'Recovery': unified/novacustom/recovery.md
- 'Post-installation setup': unified/clevo/post-install.md
- 'Features': unified/novacustom/features.md
- 'Hardware Compatibility List': unified/novacustom/hcl.md
- 'Firmware transition': unified/novacustom/firmware-transition.md
- 'V54 14th Gen':
- 'V540TU':
- 'Releases': variants/novacustom_v540tu/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_v540tu/hardware-matrix.md
- 'Test matrix': variants/novacustom_v540tu/test-matrix.md
- 'Openness score': variants/novacustom_v540tu/openness-score.md
- 'V540TNx':
- 'Releases': variants/novacustom_v540tnx/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_v540tnx/hardware-matrix.md
- 'Openness score': variants/novacustom_v540tnx/openness-score.md
- 'V56 14th Gen':
- 'V560TU':
- 'Releases': variants/novacustom_v560tu/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_v560tu/hardware-matrix.md
- 'Test matrix': variants/novacustom_v560tu/test-matrix.md
- 'Openness score': variants/novacustom_v560tu/openness-score.md
- 'V560TNx':
- 'Releases': variants/novacustom_v560tnx/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_v560tnx/hardware-matrix.md
- 'Openness score': variants/novacustom_v560tnx/openness-score.md
- 'NV4x 12th Gen':
- 'Releases': variants/novacustom_nv4x_adl/releases.md
- 'Heads releases': variants/novacustom_nv4x_adl/releases_heads.md
- 'Hardware Configuration Matrix': variants/novacustom_nv4x_adl/hardware-matrix.md
- 'Test matrix': variants/novacustom_nv4x_adl/test-matrix.md
- 'Openness score': variants/novacustom_nv4x_adl/openness-score.md
- 'NV4x 11th Gen':
- 'Releases': variants/novacustom_nv4x_tgl/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_nv4x_tgl/hardware-matrix.md
- 'Test matrix': variants/novacustom_nv4x_tgl/test-matrix.md
- 'Openness score': variants/novacustom_nv4x_tgl/openness-score.md
- 'LVFS report': variants/novacustom_nv4x_tgl/lvfs_report.md
- 'Checkbox results': variants/novacustom_nv4x_tgl/compatibility-check-results-ubuntu.md
- 'NS5x/7x 12th Gen':
- 'Releases': variants/novacustom_ns5x_adl/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_ns5x_adl/hardware-matrix.md
- 'Test matrix': variants/novacustom_ns5x_adl/test-matrix.md
- 'Openness score': variants/novacustom_ns5x_adl/openness-score.md
- 'NS5x/7x 11th Gen':
- 'Releases': variants/novacustom_ns5x_tgl/releases.md
- 'Hardware Configuration Matrix': variants/novacustom_ns5x_tgl/hardware-matrix.md
- 'Test matrix': variants/novacustom_ns5x_tgl/test-matrix.md
- 'Openness score': variants/novacustom_ns5x_tgl/openness-score.md
- 'Dell OptiPlex':
- 'Overview': variants/dell_optiplex/overview.md
- 'Releases': variants/dell_optiplex/releases.md
- 'Building manual': variants/dell_optiplex/building-manual.md
- 'Hardware Configuration Matrix': variants/dell_optiplex/hardware-matrix.md
- 'Test matrix': variants/dell_optiplex/test-matrix.md
- 'Initial deployment': variants/dell_optiplex/initial-deployment.md
- 'Firmware update': variants/dell_optiplex/firmware-update.md
- 'Recovery': variants/dell_optiplex/recovery.md
- 'Openness score': variants/dell_optiplex/openness-score.md
- 'FAQ': variants/dell_optiplex/faq.md
- 'Asus KGPE-D16':
- 'Overview': variants/asus_kgpe_d16/overview.md
- 'Releases': variants/asus_kgpe_d16/releases.md
- 'Building manual': variants/asus_kgpe_d16/building-manual.md
- 'Initial deployment': variants/asus_kgpe_d16/initial-deployment.md
- 'Firmware update': variants/asus_kgpe_d16/firmware-update.md
- 'Recovery': variants/asus_kgpe_d16/recovery.md
- 'Hardware configuration matrix': variants/asus_kgpe_d16/hardware-matrix.md
- 'Test matrix': variants/asus_kgpe_d16/test-matrix.md
- 'Fan Control': variants/asus_kgpe_d16/fan-control.md
- 'Hardware setup': variants/asus_kgpe_d16/setup.md
- 'SPI write protection': variants/asus_kgpe_d16/spi-wp.md
- 'TPM measured boot': variants/asus_kgpe_d16/tpm-mboot.md
- 'Raptor CS Talos II':
- 'Overview': variants/talos_2/overview.md
- 'Releases': variants/talos_2/releases.md
- 'Building manual': variants/talos_2/building-manual.md
- 'Initial deployment': variants/talos_2/initial-deployment.md
- 'Firmware update': variants/talos_2/firmware-update.md
- 'Recovery': variants/talos_2/recovery.md
- 'Hardware configuration matrix': variants/talos_2/hardware-matrix.md
- 'Test matrix': variants/talos_2/test-matrix.md
- 'Conference materials': variants/talos_2/conferences.md
- 'TPM connection and support': variants/talos_2/tpm-support.md
- 'Tuxedo IBS15':
- 'Releases': variants/tuxedo_ibs15/releases.md
- 'Building manual': variants/tuxedo_ibs15/building.md
- 'Installation manual': variants/tuxedo_ibs15/installation.md
- 'Post-installation setup': variants/tuxedo_ibs15/post_install.md
- 'Hardware Configuration Matrix': variants/tuxedo_ibs15/hardware-matrix.md
- 'Test matrix': variants/tuxedo_ibs15/test-matrix.md
- 'Protectli':
- 'Overview': unified/protectli/overview.md
- 'Building manual': unified/protectli/building-manual.md
- 'Initial deployment': unified/protectli/initial-deployment.md
- 'Post-installation setup': unified/protectli/post-install.md
- 'Firmware update': unified/protectli/firmware-update.md
- 'Recovery': unified/protectli/recovery.md
- 'Test matrix': unified/protectli/test-matrix.md
- 'Protectli FW6':
- 'Releases': variants/protectli_fw6/releases.md
- 'Hardware Configuration Matrix': variants/protectli_fw6/hardware-matrix.md
- 'Protectli V1000 series':
- 'Releases': variants/protectli_v1000-series/releases.md
- 'Hardware Configuration Matrix': variants/protectli_v1000-series/hardware-matrix.md
- 'Openness score': variants/protectli_v1000-series/openness-score.md
- 'Protectli VP2410':
- 'Releases': variants/protectli_vp2410/releases.md
- 'Hardware Configuration Matrix': variants/protectli_vp2410/hardware-matrix.md
- 'Openness score': variants/protectli_vp2410/openness-score.md
- 'Protectli VP2420':
- 'Releases': variants/protectli_vp2420/releases.md
- 'Hardware Configuration Matrix': variants/protectli_vp2420/hardware-matrix.md
- 'Openness score': variants/protectli_vp2420/openness-score.md
- 'Protectli VP46XX':
- 'Releases': variants/protectli_vp46xx/releases.md
- 'Hardware Configuration Matrix': variants/protectli_vp46xx/hardware-matrix.md
- 'Openness score': variants/protectli_vp46xx/openness_score.md
- 'Protectli VP66XX':
- 'Releases': variants/protectli_vp66xx/releases.md
- 'Hardware Configuration Matrix': variants/protectli_vp66xx/hardware-matrix.md
- 'Openness score': variants/protectli_vp66xx/openness_score.md
- 'QEMU Q35 Emulator':
- 'Overview': variants/qemu_q35/overview.md
- 'Releases': variants/qemu_q35/releases.md
- 'Building manual': variants/qemu_q35/building-manual.md
- 'Test matrix': variants/qemu_q35/test-matrix.md
- 'Initial Deployment': variants/qemu_q35/initial-deployment.md
- 'Firmware update': variants/qemu_q35/firmware-update.md
- 'Recovery': variants/qemu_q35/recovery.md
- 'Hardware Configuration Matrix': variants/qemu_q35/hardware-matrix.md
- 'MSI desktops':
- 'Overview': unified/msi/overview.md
- 'Building manual': unified/msi/building-manual.md
- 'Initial deployment': unified/msi/initial-deployment.md
- 'Firmware update': unified/msi/firmware-update.md
- 'Recovery': unified/msi/recovery.md
- 'Development': unified/msi/development.md
- 'FAQ': unified/msi/faq.md
- 'Hardware Compatibility': unified/msi/hcl.md
- 'Firmware transition': unified/msi/firmware-transition.md
- 'MSI PRO Z690-A':
- 'Releases': variants/msi_z690/releases.md
- 'Heads releases': variants/msi_z690/releases_heads.md
- 'Hardware Configuration Matrix': variants/msi_z690/hardware-matrix.md
- 'Test matrix': variants/msi_z690/test-matrix.md
- 'Openness score': variants/msi_z690/openness_score.md
- 'MSI PRO Z790-P':
- 'Releases': variants/msi_z790/releases.md
- 'Heads releases': variants/msi_z790/releases_heads.md
- 'Hardware Configuration Matrix': variants/msi_z790/hardware-matrix.md
- 'Test matrix': variants/msi_z790/test-matrix.md
- 'Openness score': variants/msi_z790/openness_score.md
- 'Supermicro X11 LGA1151 Series':
- 'Overview': variants/supermicro_x11_lga1151_series/overview.md
- 'Releases': variants/supermicro_x11_lga1151_series/releases.md
- 'Building manual': variants/supermicro_x11_lga1151_series/building-manual.md
- 'Hardware Configuration Matrix': variants/supermicro_x11_lga1151_series/hardware-matrix.md
- 'Test matrix': variants/supermicro_x11_lga1151_series/test-matrix.md
- 'Initial deployment': variants/supermicro_x11_lga1151_series/initial-deployment.md
- 'Firmware update': variants/supermicro_x11_lga1151_series/firmware-update.md
- 'Recovery': variants/supermicro_x11_lga1151_series/recovery.md
- 'FAQ': variants/supermicro_x11_lga1151_series/faq.md
- 'PC Engines':
- 'Overview': variants/pc_engines/overview.md
- 'Releases (coreboot+UEFI)': variants/pc_engines/releases_uefi.md
- 'Releases (coreboot+SeaBIOS)': variants/pc_engines/releases_seabios.md
- 'Building manual': variants/pc_engines/building-manual.md
- 'Initial deployment': variants/pc_engines/initial-deployment.md
- 'Firmware update': variants/pc_engines/firmware-update.md
- 'Recovery': variants/pc_engines/recovery.md
- 'Hardware Configuration Matrix': variants/pc_engines/hardware-matrix.md
- 'Openness score': variants/pc_engines/openness_score.md
- 'FAQ': variants/pc_engines/faq.md
- 'Announcement': variants/pc_engines/post-eol-fw-announcement.md
- 'Firmware write protection': variants/pc_engines/bios-lock.md
# - 'Development Environment':
# - 'Nix': dev-env/nix-dev-env.md
- 'Guides':
- 'Updating your firmware': guides/firmware-update.md
- 'Capsule updates': guides/capsule-update.md
- 'Flashing custom firmware': guides/firmware-reflash.md
- 'Firmware signing for vboot': guides/vboot-signing.md
- 'Dasharo Reviewers Guide': guides/dasharo-reviewers-guide.md
- 'Verifying signatures': guides/signature-verification.md
- 'Verifying reproducible builds': guides/reproducible-build-verification.md
- 'Boot logo replacement': guides/logo-customization.md
- 'Lab Assembly':
- 'MinnowBoard Turbot': guides/lab-assembly/minnowboard-turbot.md
- 'MSI PRO Z690-A and Z790-P': guides/lab-assembly/msi-zx90.md
- 'Protectli': guides/lab-assembly/protectli.md
- 'Odroid H4': guides/lab-assembly/odroid-assembly-guide.md
- 'Development Process':
- 'Source code structure': dev-proc/source-code-structure.md
- 'Dasharo Product Guidelines: SMBIOS Information': dev-proc/smbios-rules.md
- 'Versioning': dev-proc/versioning.md
- 'Features and bug fixes development process': dev-proc/feature-bug-fix-dev-process.md
- 'Standard Release Process': dev-proc/standard-release-process.md
- 'Documentation guidelines': dev-proc/documentation-guidelines.md
- 'HCL Maintainer documentation': dev-proc/hcl-maintainer.md
- 'Taking firmware screenshots': dev-proc/screenshots.md
# - 'Dasharo SKUs':
# - 'Overview': variants/skus-overview.md
# - 'Firewall': variants/firewall.md
# - 'Secure Firewall': variants/secure-firewall.md
# - 'Workstation':
# - 'SKU description': variants/workstation.md
# - 'Server': variants/server.md
# - 'Trustworthy Server': variants/trustworthy-server.md
# - 'Trustworthy Computing': variants/trustworthy-computing.md
# - 'Safety-Critical': variants/safety-critical.md
# - 'Custom': variants/custom.md
# - 'How to work with us?':
# - 'Overview': inquiries/overview.md
# - 'Community Edition': inquiries/community-edition.md
# - 'Sponsorware': inquiries/sponsorware.md
# - 'Commercial inquiries': inquiries/commercial-inquiries.md
- 'Dasharo Tools Suite':
- 'Overview': dasharo-tools-suite/overview.md
- 'Releases': dasharo-tools-suite/releases.md
- 'Documentation':
- "Supported Hardware": dasharo-tools-suite/documentation/supported-hardware.md
- "Building": dasharo-tools-suite/documentation/building.md
- "Running": dasharo-tools-suite/documentation/running.md
- "Features": dasharo-tools-suite/documentation/features.md
- 'Knowledge base':
- 'Glossary': glossary.md
- 'Dasharo Product Naming Convention': dasharo-naming-convention.md
- 'Dasharo menu documentation':
- 'Overview': dasharo-menu-docs/overview.md
- 'Boot Maintenance Manager': dasharo-menu-docs/boot-maintenance-mgr.md
- 'Device Manager': dasharo-menu-docs/device-manager.md
- 'Dasharo System Features': dasharo-menu-docs/dasharo-system-features.md
- 'Dasharo APU Configuration': dasharo-menu-docs/dasharo-apu-configuration.md
- 'Checkbox certification software usage': common-coreboot-docs/checkbox.md
- 'Dumping logs': common-coreboot-docs/dumping_logs.md
- 'Firmware Update Mode': kb/firmware-update-mode.md
- 'UEFI Capsule Updates':
- 'Capsule Updates Overview': kb/capsule-updates-overview.md
- 'Capsule Updates Details': kb/edk2-capsule-updates.md
- 'Capsule Update Configs': kb/capsule-updates-configs.md
- 'PCR Measurements': kb/pcr-measurements.md
# - 'Trolling Topics List':
# - 'Introduction': osf-trolling-list/osf_issues_taxonomy.md
- 'FAQ':
- 'Introduction': osf-trivia-list/introduction.md
- 'Dasharo': osf-trivia-list/dasharo.md
- 'Dasharo Pro Package': osf-trivia-list/dasharo-pro-package.md
- 'Dasharo Tools Suite': osf-trivia-list/dts.md
- 'Deployment': osf-trivia-list/deployment.md
- 'Firmware build process': osf-trolling-list/build_process.md
# - 'Firmware release process': osf-trolling-list/release_process.md
- 'Trusted Computing': osf-trolling-list/trusted_computing.md
- 'Jira Service Management': osf-trolling-list/jsm_documentation.md
- 'Intel ME/CSME': osf-trivia-list/me.md
- 'Capsule Update': osf-trivia-list/capsule-update.md
- 'Ecosystem':
- 'Overview': ecosystem/overview.md
# - 'Customer Infrastructure': ecosystem/customer-infrastructure.md
- 'Transparent Validation':
# - 'Overview': ecosystem/transparent-validation.md
# - 'Testing Infrastructure': ecosystem/testing-infrastructure.md
# - 'Hardware Laboratory': ecosystem/hardware-infrastructure.md
- 'MSI PRO Z690-A':
- 'Presale assembly and validation': transparent-validation/msi-z690/presale-assembly-and-validation.md
- 'Supermicro X11 LGA1151 Series':
- 'Theory of Operation': transparent-validation/supermicro_x11_lga1151_series/theory-of-operation.md
- 'muxPi':
- 'Theory of Operations': transparent-validation/muxpi/theory-of-operations.md
- 'Basic validation': transparent-validation/muxpi/basic-validation.md
- 'Remote Testing Environment':
- 'Introduction': transparent-validation/rte/introduction.md
- 'Specification': transparent-validation/rte/v1.1.0/specification.md
- 'Getting Started':
- 'Quick Start Guide': transparent-validation/rte/v1.1.0/quick-start-guide.md
- 'Serial Port Connection Guide': transparent-validation/rte/v1.1.0/serial-port-connection-guide.md
- 'Flashing Guide': transparent-validation/rte/v1.1.0/flashing-guide.md
# - 'RTE and PC Engines': transparent-validation/rte/pcengines.md
- 'RTE Reference OS': transparent-validation/rte/v1.1.0/reference-os.md
- 'Revision History': transparent-validation/rte/revision-history.md
- 'SD Wire':
- 'Getting started': transparent-validation/sd-wire/getting-started.md
- 'Specification': transparent-validation/sd-wire/specification.md
- 'Usage': transparent-validation/sd-wire/usage-validation.md
- 'FAQ': transparent-validation/sd-wire/faq.md
- 'Sonoff':
- 'Sonoff preparation': transparent-validation/sonoff/sonoff_preparation.md
- 'PiKVM':
- 'Assembly and validation': transparent-validation/pikvm/assembly-and-validation.md
- 'Twonkie':
- 'Introduction': transparent-validation/twonkie/introduction.md
- 'EC Debugger':
- 'I2C to UART relay': transparent-validation/ec-debugger/uart-relay.md
- 'NovaCustom laptop testing':
- 'EC Power States': transparent-validation/ec-information/ec-explained.md
# - 'Secure Storage': ecosystem/secure-storage.md
# - 'Signing Server': ecosystem/signing-server.md
# - 'Attestation Server': ecosystem/attestation-server.md
# - 'Deployment and Provisioning Server': ecosystem/deployment-and-provisioning-server.md
# - 'Reference OS': ecosystem/reference-os.md
# - 'Publishing Server': ecosystem/publishing-server.md
# - 'End User Device': ecosystem/end-user.md
- 'Dasharo Test Specification':
- 'Overview': unified-test-documentation/overview.md
- 'Generic Test Setup': unified-test-documentation/generic-test-setup.md
- 'Generic Testing Stand Setup': unified-test-documentation/generic-testing-stand-setup.md
- 'Dasharo compatibility':
- 'Coreboot Base Port': unified-test-documentation/dasharo-compatibility/100-coreboot-base-port.md
- 'Memory HCL': unified-test-documentation/dasharo-compatibility/301-memory-hcl.md
- 'Custom Boot Keys': unified-test-documentation/dasharo-compatibility/303-custom-boot-menu-key.md
- 'Custom Logo': unified-test-documentation/dasharo-compatibility/304-custom-logo.md
- 'Custom Boot Order': unified-test-documentation/dasharo-compatibility/325-custom-boot-order.md
- 'Petitboot payload support': unified-test-documentation/dasharo-compatibility/31V-petitboot-payload-support.md
- 'Heads bootloader support': unified-test-documentation/dasharo-compatibility/31U-heads-bootloader-support.md
- 'SMBIOS': unified-test-documentation/dasharo-compatibility/31L-smbios.md
- 'Device Tree': unified-test-documentation/dasharo-compatibility/31W-device-tree.md
- 'USB HID and MSC support': unified-test-documentation/dasharo-compatibility/306-usb-hid-and-msc-support.md
- 'CPU status': unified-test-documentation/dasharo-compatibility/31T-cpu-status.md
- 'NVME support': unified-test-documentation/dasharo-compatibility/312-nvme-support.md
- 'Network boot': unified-test-documentation/dasharo-compatibility/315-network-boot.md
- 'Network boot utilities': unified-test-documentation/dasharo-compatibility/315b-netboot-utilities.md
- 'SD card reader': unified-test-documentation/dasharo-compatibility/316-sdcard-reader.md
- 'USB camera': unified-test-documentation/dasharo-compatibility/317-usb-camera.md
- 'Wi-Fi and Bluetooth support': unified-test-documentation/dasharo-compatibility/318-m2-wifi-bluetooth.md
- 'Display ports and LCD': unified-test-documentation/dasharo-compatibility/31E-display-ports-and-lcd.md
- 'Audio Subsystem': unified-test-documentation/dasharo-compatibility/31F-audio-subsystem.md
- 'USB-C support': unified-test-documentation/dasharo-compatibility/31H-usb-type-c.md
- 'Memtest payload support': unified-test-documentation/dasharo-compatibility/30L-memtest-payload-support.md
- 'Windows booting': unified-test-documentation/dasharo-compatibility/31A-windows-booting.md
- 'Sleep mode': unified-test-documentation/dasharo-compatibility/31J-sleep-mode.md
- 'UEFI compatible interface': unified-test-documentation/dasharo-compatibility/30M-uefi-compatible-interface.md
- 'UEFI Shell': unified-test-documentation/dasharo-compatibility/30P-uefi-shell.md
- 'Platform suspend and resume': unified-test-documentation/dasharo-compatibility/31M-platform-suspend-and-resume.md
- 'FreeBSD support': unified-test-documentation/dasharo-compatibility/307-freebsd-support.md
- 'Debian Stable and Ubuntu LTS support': unified-test-documentation/dasharo-compatibility/308-debian-stable-and-ubuntu-lts-support.md
- 'QubesOS support': unified-test-documentation/dasharo-compatibility/309-qubesos-support.md
- 'Fedora support': unified-test-documentation/dasharo-compatibility/310-fedora-support.md
- 'pfSense support': unified-test-documentation/dasharo-compatibility/341-pfSense-support.md
- 'OPNsense support': unified-test-documentation/dasharo-compatibility/342-OPNsense-support.md
- 'Proxmox support': unified-test-documentation/dasharo-compatibility/348-proxmox-support.md
- 'Ubuntu Server support': unified-test-documentation/dasharo-compatibility/349-ubuntu-server-support.md
- 'USB detection': unified-test-documentation/dasharo-compatibility/31O-usb-detect.md
- 'USB booting': unified-test-documentation/dasharo-compatibility/31N-usb-boot.md
# - 'coreboot Fan control': unified-test-documentation/dasharo-compatibility/S31-coreboot-fan-control.md
- 'Fan speed': unified-test-documentation/dasharo-compatibility/S30-fan-speed.md
- 'Embedded Controller and Super I/O initialization ': unified-test-documentation/dasharo-compatibility/31G-ec-and-superio.md
- 'Nvidia Graphics support': unified-test-documentation/dasharo-compatibility/319-nvidia-graphics.md
- 'Flash write protection': unified-test-documentation/dasharo-compatibility/31P-flash-write-protection.md
- 'Custom Network Boot entries': unified-test-documentation/dasharo-compatibility/30A-custom-network-boot-entries.md
- 'M.2 automatic SATA/NVMe switching support': unified-test-documentation/dasharo-compatibility/31I-nvme-switching.md
- 'miniPCIe slot verification': unified-test-documentation/dasharo-compatibility/31K-minipcie-verification.md
- 'eMMC support': unified-test-documentation/dasharo-compatibility/31M-emmc-support.md
- 'PCI Express ports': unified-test-documentation/dasharo-compatibility/31R-pcie-ports.md
- 'SATA LED and PC speaker error indication': unified-test-documentation/dasharo-compatibility/31S-sata-led-and-pc-speaker-error-indication.md
- 'Firmware locally building and flashing': unified-test-documentation/dasharo-compatibility/326b-firmware-building-locally.md
- 'Firmware update using fwupd': unified-test-documentation/dasharo-compatibility/320-fwupd-firmware-update.md
- 'Dasharo Tools Suite': unified-test-documentation/dasharo-compatibility/326-dasharo-tools-suite.md
- 'Embedded controller flashing': unified-test-documentation/dasharo-compatibility/327-embedded_controller_flashing.md
- 'Logo customization': unified-test-documentation/dasharo-compatibility/328-logo-customization-functionality.md
- 'Super I/O initialization - QubesOS': unified-test-documentation/dasharo-compatibility/343-super-I-O-initialization-on-QubesOS.md
- 'Display Resolution - QubesOS': unified-test-documentation/dasharo-compatibility/345-display-resolution.md
- 'Device power control operations': unified-test-documentation/dasharo-compatibility/344-power-operations.md
- 'SATA hot plug': unified-test-documentation/dasharo-compatibility/346-SATA-hotplug-detection.md
- 'Sign of life': unified-test-documentation/dasharo-compatibility/347-sign-of-life.md
- 'BIOS menu function keys': unified-test-documentation/dasharo-compatibility/357-bios-menu-function-keys.md
- 'Suspend Mechanism Switching S0ix/S3': unified-test-documentation/dasharo-compatibility/358-suspend-mechanism-switching-S0ix-S3.md
- 'Block boot when battery is low': unified-test-documentation/dasharo-compatibility/359-boot-blocking.md
- 'Power State after Power Fail': unified-test-documentation/dasharo-compatibility/360-power-after-fail.md
- 'ESP scanning': unified-test-documentation/dasharo-compatibility/361-esp-scanning.md
- 'Dasharo Configuration Utility': unified-test-documentation/dasharo-compatibility/362-dcu.md
- 'Build on a fresh OS Installation': unified-test-documentation/dasharo-compatibility/build-on-new-os.md
- 'Dasharo security':
- 'TPM support': unified-test-documentation/dasharo-security/200-tpm-support.md
- 'TPM2 Commands': unified-test-documentation/dasharo-security/200-tpm2-commands.md
- 'Verified Boot': unified-test-documentation/dasharo-security/201-verified-boot.md
- 'Measured Boot': unified-test-documentation/dasharo-security/203-measured-boot.md
- 'Secure Boot': unified-test-documentation/dasharo-security/206-secure-boot.md
- 'ME neuter/disable': unified-test-documentation/dasharo-security/20F-me-neuter.md
- 'BIOS lock support': unified-test-documentation/dasharo-security/20J-bios-lock-support.md
- 'SMM BIOS write protection': unified-test-documentation/dasharo-security/20O-SMM-bios-write-protection.md
- 'Early boot DMA protection': unified-test-documentation/dasharo-security/20L-early-boot-dma-protection.md
- 'Boot menu enable/disable': unified-test-documentation/dasharo-security/20P-boot-menu.md
- 'UEFI Setup password': unified-test-documentation/dasharo-security/20R-uefi-setup-password.md
- 'USB stack enable/disable': unified-test-documentation/dasharo-security/20S-usb-stack.md
- 'Network stack enable/disable': unified-test-documentation/dasharo-security/20T-network-boot.md
- 'Boot Guard support': unified-test-documentation/dasharo-security/207-boot-guard-support.md
- 'TCG OPAL disk password support': unified-test-documentation/dasharo-security/208-opal-disk-password-support.md
- 'Memory Profiles': unified-test-documentation/dasharo-compatibility/363-xmp.md
- 'Dasharo performance':
- 'Coreboot boot measure': unified-test-documentation/dasharo-performance/400-coreboot-boot-measure.md
- 'Device boot measure': unified-test-documentation/dasharo-performance/403-device-boot-measure.md
- 'CPU temperature measure': unified-test-documentation/dasharo-performance/401-cpu-temperature.md
- 'CPU frequency measure': unified-test-documentation/dasharo-performance/402-cpu-frequency.md
- 'Platform stability': unified-test-documentation/dasharo-performance/404-platform-stability.md
- 'Fan control measure': unified-test-documentation/dasharo-performance/405-fan-control-measure.md
- 'Custom fan curve': unified-test-documentation/dasharo-performance/406-custom-fan-curve.md
- 'Ubuntu booting performance test': unified-test-documentation/dasharo-performance/407-ubuntu-booting-performance-test.md
- 'Debian booting performance test': unified-test-documentation/dasharo-performance/408-debian-booting-performance-test.md
- 'FreeBSD booting performance test': unified-test-documentation/dasharo-performance/409-freebsd-booting-performance-test.md
- 'Proxmox booting performance test': unified-test-documentation/dasharo-performance/410-proxmox-booting-performance-test.md
- 'Ubuntu Server booting performance test': unified-test-documentation/dasharo-performance/411-ubuntu-server-booting-performance-test.md
- 'OPNsense (serial output) booting performance test': unified-test-documentation/dasharo-performance/412-opnsense-serial-booting-performance-test.md
- 'OPNsense (VGA output) booting performance test': unified-test-documentation/dasharo-performance/413-opnsense-vga-booting-performance-test.md
- 'pfSense (serial output) booting performance test': unified-test-documentation/dasharo-performance/414-pfsense-serial-booting-performance-test.md
- 'pfSense (VGA output) booting performance test': unified-test-documentation/dasharo-performance/415-pfsense-vga-booting-performance-test.md
- 'Windows booting performance test': unified-test-documentation/dasharo-performance/416-windows-booting-performance-test.md
- 'Dasharo stability':
- 'USB Type-A devices detection': unified-test-documentation/dasharo-stability/C01-usb-type-a-devices-detection.md
- 'M.2 Wi-fi': unified-test-documentation/dasharo-stability/C02-m2-wi-fi.md
- 'Capsule Update': unified-test-documentation/dasharo-stability/capsule-update.md
- 'NVMe detection': unified-test-documentation/dasharo-stability/C03-nvme-detection.md
- 'Power management': unified-test-documentation/dasharo-stability/C04-power-management.md
- 'NET interface check after coldboot/warmboot/reboot/suspend': unified-test-documentation/dasharo-stability/01-net-controller-after-coldboot-warmboot-reboot-suspend.md
- 'Roadmap': ecosystem/roadmap.md
- 'Quality Principles': quality-principles/introduction.md
# - 'Introduction':
# - 'Dasharo Quality Criteria': quality-principles/dasharo-quality-criteria.md
- 'Value proposition':
- 'Overview': value-prop/overview.md
- 'Security': value-prop/security.md
- 'Compatibility': value-prop/compatibility.md
# - 'Performance': value-prop/performance.md
- 'Marketing': value-prop/marketing.md
# - 'Certification Program':
# - 'Overview': value-prop/certification-program/overview.md
#
- 'Ways you can help us': ways-you-can-help-us.md
- 'Projects':
- 'TrenchBoot Anti Evil Maid (current plan - v2)': projects/trenchboot-aem-v2.md
- 'TrenchBoot Anti Evil Maid (previoius plan - v1)': projects/trenchboot-aem.md
- 'UEFI Capsule Update for coreboot with EDK II': projects/capsule-updates.md