-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
17105 lines (16580 loc) · 774 KB
/
index.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
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-119754319-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-972P9J7DJW");
</script>
<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" />
<link rel="canonical" href="https://pcengines.github.io/" itemprop="url">
<title>PC Engines - github pages</title>
</head>
<body>
<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://pcengines.github.io/apu2-documentation"
>Documentation</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://forum.pcengines.dev"
>Forum</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>
<!-- header -->
<div class="container--image" id="top">
<div class="wrapper">
<header>
<!-- <div class="pcengines-header">
<h1 class="title">PC ENGINES</h1>
<span class="green-text">™</span>
</div> -->
</header>
<!-- Begin Mailtrain Signup Form -->
<h1 style="text-align: center">
Subscribe to our newsletter
</h1>
<div class="container--form">
<div id="mc_embed_signup_scroll" class="form">
<div id="mc_embed_signup">
<div data-mailtrain-subscription-widget data-url="https://newsletter.3mdeb.com/subscription/ReBpt3IZY/widget">
<a class="green-text" href="https://newsletter.3mdeb.com/subscription/ReBpt3IZY">Subscribe</a>
</div>
<!-- <script src="https://newsletter.3mdeb.com/static/subscription/widget.js"></script> -->
</div>
</div>
</div>
</div>
</div>
<!--End mc_embed_signup-->
<!-- intro -->
<main>
<div class="container container--first">
<div class="wrapper">
<article>
<h1>2024-03-18: Dasharo for PC Engines Announcement</h1>
<hr class="line" />
<h2>
Dear PC Engines Enthusiasts,
We are thrilled to announce the releases of Dasharo for PC
Engines aimed at preserving the value of the iconic hardware that
has served our community so well over the years. Our new
releases, Dasharo (coreboot+SeaBIOS) v24.02.01.01 and Dasharo
(coreboot+UEFI) v0.9.0, represent our ongoing commitment to
maintaining and enhancing the PC Engines platforms through
open-source firmware.
</h2>
<h3>Introducing Dasharo for PC Engines:</h3>
<p><a href="https://github.com/Dasharo/dasharo-issues/milestone/28"
target="_blank"><span class="green-text">Dasharo
(coreboot+SeaBIOS) v24.02.01.01:</span></a> This release
continues our tradition of providing regular firmware updates,
integrating the latest coreboot 24.02.01 and SeaBIOS 1.16.0. It's
designed for users who appreciate the legacy firmware approach,
offering stability, security, and compatibility enhancements. The
goal is to deliver validated stable releases quarterly,
emphasizing backward compatibility. The planned release of this
product is end of Q2’24.</p>
<p><a href="https://docs.dasharo.com/variants/pc_engines/releases_uefi/#v090-2024-04-02"
target="_blank"><span class="green-text">Dasharo
(coreboot+UEFI) v0.9.0:</span></a> For those looking towards
the future, this version introduces modern features like UEFI
compatibility and Secure Boot, paving the way for next-generation
firmware solutions, with the goal of at least one release per
year.</p>
<h3>How to get Dasharo for PC Engines?</h3>
<p>Understanding the importance of long-term maintenance and
support, we are introducing a pre-paid-based model. This
approach ensures the continuous delivery of firmware updates and
establishes a sustainable business model that supports the
open-source firmware community. Our <a
href="https://shop.3mdeb.com/shop/dasharo-entry-subscription/1-year-dasharo-entry-subscription-for-network-appliance/"
target="_blank"><span class="green-text">1-Year Dasharo
(coreboot+UEFI) Entry Subscription</span></a> and <a
href="https://shop.3mdeb.com/shop/dasharo-entry-subscription/1-year-dasharo-entry-subscription-for-network-appliance-corebootseabios/"
target="_blank"><span class="green-text">1-Year Dasharo
(coreboot+SeaBIOS) Entry Subscription</span></a> is essentially a
pre-paid plan that is not automatically renewable. It guarantees you
access to the latest updates and dedicated support, maximizing the
value and lifespan of your PC Engines hardware. Our source code will
always be open and available through <a
href="https://github.com/dasharo" target="_blank"><span
class="green-text">Dasharo
Github</span></a>.</p>
<h4>If you want to stay up to date, consider following these events:</h4>
<p><a href="https://vpub.dasharo.com/o/1" target="_blank"><span
class="green-text">Dasharo User Group:</span></a> Join our
community of enthusiasts and experts to stay informed about the
latest developments, share insights, and contribute to the future
of open-source firmware on PC Engines.
<p><a
href="https://vpub.dasharo.com/o/1" target="_blank"><span
class="green-text">Dasharo Developers vPub</span></a> This is an
event series dedicated to discussing the challenges and
opportunities of long-term maintenance through open-source
firmware distribution. It's a platform for developers,
contributors, and users to collaborate and innovate for the
future of PC Engines. </p>
<h2>Thank you for your continued support and enthusiasm. We can
ensure a vibrant and secure future for PC Engines through
open-source firmware.</h2>
<h2>
Sincerely, <br>3mdeb Team
</h2>
</article>
<article>
<h1>2023-02-03: Open-source firmware sponsorship announcement</h1>
<hr class="line" />
<h2>
Dear PC Engines hardware owners,
</h2>
<p>
We regret to announce that PC Engines, a provider of small and low-power
servers for network security, wireless networking, and embedded applications,
has discontinued its sponsorship for open-source firmware. Although this is a
significant change for the open-source firmware community, our commitment to
supporting the hardware remains strong. At <a
href="https://dasharo.com"
target="_blank"
><span class="green-text">Dasharo</span></a
>, we aim to continue the
legacy of PC Engines by distributing open-source firmware and putting the
community's needs first. Our focus will be on releases and feature sets driven
by community support. We are considering a subscription model to ensure stable
and reliable firmware updates. Your input is important to us, and we would
appreciate your feedback through our
<a
href="https://forms.gle/MHrT2f1du1Afvwvj9"
target="_blank"
><span class="green-text">survey</span></a
>. Please help us understand how we can
better serve the open-source firmware community and ensure its success in the
future.
</p>
<p>
<a
href="https://docs.dasharo.com/variants/pc_engines/post-eol-fw-announcement"
target="_blank"
><span class="green-text">Full details</span></a>.
</p>
</p>
Sincerely, <br>3mdeb Team
</p>
</article>
<article>
<h1>Release notes</h1>
<hr class="line" />
<h2>
Release notes describing changes, fixes and known issues in
<span class="green-text">PC Engines apux releases.</span>
</h2>
<p>
Each binary (or archive in case of older images) is
cryptographically signed by PC Engines Open Source Firmware
Release Signing Key adequate to the official coreboot release
(i.e. 4.9.0.x releases are signed by 4.9 Signing Key and 4.10.0.x
by 4.10 Signing Key). Legacy releases starting from v4.0.28 are
being signed with PC Engines Open Source Firmware Release 4.10
Signing Key. The keys are maintained and managed by 3mdeb company
responsible for maintaining PC Engines firmware. Under each
release binaries one may find an asciinema record showing example
firmware signature verification using appropriate key. The public
parts of the keys are available at
<a
href="https://github.com/3mdeb/3mdeb-secpack/tree/master/customer-keys/pcengines/release-keys"
target="_blank"
>3mdeb-secpack</a
>
repository. For the details of the change please refer to
<a
href="https://github.com/3mdeb/3mdeb-secpack/blob/master/canaries/pcengines/canary-002-2019.txt"
target="_blank"
>Canary #2</a
>. <br />
Following new coreboot release 4.11, a new PC Engines Open Source
Firmware Release 4.10 Signing Key has been enrolled. Since
v4.11.0.1 and v4.0.30 firmware releases are signed by PC Engines
Open Source Firmware Release 4.10 Signing Key. The public parts of
the keys may be found on
<a
href="https://github.com/3mdeb/3mdeb-secpack/tree/master/customer-keys/pcengines/release-keys"
target="_blank"
>3mdeb-secpack</a
>. The details of the change are also available on
<a
href="https://github.com/3mdeb/3mdeb-secpack/blob/master/canaries/pcengines/canary-003-2020.txt"
target="_blank"
>Canary #3</a
>. <br /><br />
</p>
<div class="main-list">
<h2>
The recommended firmware version is latest mainline
<span class="green-text">v4.17.0.x.</span> Reasons:
</h2>
<ul>
<li
>most of the new features are firstly introduced here in
mainline
</li>
<li
>mainline version is more actively developed and maintained
than legacy
</li>
<li
>mainline releases have extended validation comparing to
legacy due to legacy limitations related to old toolchain and
codebase
</li>
<li>mainline releases are built with newest toolchains</li>
</ul>
</div>
<!-- table of contents -->
<div class="table-of-content">
<div class="main-list">
<h3 class="green-text">Mainline releases</h3>
<ul class="list">
<li><a href="#mr-63">v4.19.0.1</a></li>
<li><a href="#mr-62">v4.17.0.3</a></li>
<li><a href="#mr-61">v4.17.0.2</a></li>
<li><a href="#mr-60">v4.17.0.1</a></li>
<li><a href="#mr-59">v4.16.0.4</a></li>
<li><a href="#mr-58">v4.16.0.3</a></li>
<li><a href="#mr-57">v4.16.0.2</a></li>
<li><a href="#mr-56">v4.16.0.1</a></li>
<li><a href="#mr-55">v4.15.0.3</a></li>
<li><a href="#mr-54">v4.15.0.2</a></li>
<li><a href="#mr-53">v4.15.0.1</a></li>
<li><a href="#mr-52">v4.14.0.6</a></li>
<li><a href="#mr-51">v4.14.0.5</a></li>
<li><a href="#mr-50">v4.14.0.4</a></li>
<li><a href="#mr-49">v4.14.0.3</a></li>
<li><a href="#mr-48">v4.14.0.2</a></li>
<li><a href="#mr-47">v4.14.0.1</a></li>
<li><a href="#mr-46">v4.13.0.6</a></li>
<li><a href="#mr-45">v4.13.0.5</a></li>
<li><a href="#mr-44">v4.13.0.4</a></li>
<li><a href="#mr-43">v4.13.0.3</a></li>
<li><a href="#mr-42">v4.13.0.2</a></li>
<li><a href="#mr-41">v4.13.0.1</a></li>
<li><a href="#mr-40">v4.12.0.6</a></li>
<li><a href="#mr-39">v4.12.0.5</a></li>
<li><a href="#mr-38">v4.12.0.4</a></li>
<li><a href="#mr-37">v4.12.0.3</a></li>
<li><a href="#mr-36">v4.12.0.2</a></li>
<li><a href="#mr-35">v4.12.0.1</a></li>
<li><a href="#mr-34">v4.11.0.6</a></li>
<li><a href="#mr-33">v4.11.0.5</a></li>
<li><a href="#mr-32">v4.11.0.4</a></li>
<li><a href="#mr-31">v4.11.0.3</a></li>
<li><a href="#mr-30">v4.11.0.2</a></li>
<li><a href="#mr-29">v4.11.0.1</a></li>
<li><a href="#mr-28">v4.10.0.3</a></li>
<li><a href="#mr-27">v4.10.0.2</a></li>
<li><a href="#mr-26">v4.10.0.1</a></li>
<li><a href="#mr-25">v4.10.0.0</a></li>
<li><a href="#mr-24">v4.9.0.7</a></li>
<li><a href="#mr-23">v4.9.0.6</a></li>
<li><a href="#mr-22">v4.9.0.5</a></li>
<li><a href="#mr-21">v4.9.0.4</a></li>
<li><a href="#mr-20">v4.9.0.3</a></li>
<li><a href="#mr-19">v4.9.0.2</a></li>
<li><a href="#mr-18">v4.9.0.1</a></li>
<li><a href="#mr-17">v4.8.0.7</a></li>
<li><a href="#mr-16">v4.8.0.6</a></li>
<li><a href="#mr-15">v4.8.0.5</a></li>
<li><a href="#mr-14">v4.8.0.4</a></li>
<li><a href="#mr-13">v4.8.0.3</a></li>
<li><a href="#mr-12">v4.8.0.2</a></li>
<li><a href="#mr-11">v4.8.0.1</a></li>
<li><a href="#mr-10">v4.6.10</a></li>
<li><a href="#mr-9">v4.6.9</a></li>
<li><a href="#mr-8">v4.6.8</a></li>
<li><a href="#mr-7">v4.6.7</a></li>
<li><a href="#mr-6">v4.6.6</a></li>
<li><a href="#mr-5">v4.6.5</a></li>
<li><a href="#mr-4">v4.6.4</a></li>
<li><a href="#mr-3">v4.6.3</a></li>
<li><a href="#mr-2">v4.6.2</a></li>
<li><a href="#mr-1">v4.6.1</a></li>
</ul>
</div>
<div class="main-list">
<h3 class="green-text">Legacy releases</h3>
<ul class="list">
<li><a href="#lr-25">v4.0.33</a></li>
<li><a href="#lr-24">v4.0.32</a></li>
<li><a href="#lr-23">v4.0.31</a></li>
<li><a href="#lr-22">v4.0.30</a></li>
<li><a href="#lr-21">v4.0.29</a></li>
<li><a href="#lr-20">v4.0.28</a></li>
<li><a href="#lr-19">v4.0.27</a></li>
<li><a href="#lr-18">v4.0.26</a></li>
<li><a href="#lr-17">v4.0.25</a></li>
<li><a href="#lr-16">v4.0.24</a></li>
<li><a href="#lr-15">v4.0.23</a></li>
<li><a href="#lr-14">v4.0.22</a></li>
<li><a href="#lr-13">v4.0.21</a></li>
<li><a href="#lr-12">v4.0.20</a></li>
<li><a href="#lr-11">v4.0.19</a></li>
<li><a href="#lr-10">v4.0.18</a></li>
<li><a href="#lr-9">v4.0.17</a></li>
<li><a href="#lr-8">v4.0.16</a></li>
<li><a href="#lr-7">v4.0.15</a></li>
<li><a href="#lr-6">v4.0.14</a></li>
<li><a href="#lr-5">v4.0.13</a></li>
<li><a href="#lr-4">v4.0.12</a></li>
<li><a href="#lr-3">v4.0.11</a></li>
<li><a href="#lr-2">v4.0.10</a></li>
<li><a href="#lr-1">v4.0.9</a></li>
</ul>
</div>
</div>
</article>
</div>
</div>
<!-- os-status.md -->
<div class="container">
<div class="wrapper">
<article>
<h1>OS status</h1>
<hr class="line" />
<h2>
Some operating system have problems running with different storage
medias. These table shows currently tested systems on
<span class="green-text">BIOS v4.10.0.x</span> with corresponding
medias:
</h2>
<table>
<tr>
<th>OS</th>
<th>SD card</th>
<th>SATA disk</th>
<th>mSATA disk</th>
<th>USB stick</th>
</tr>
<tr>
<td>Voyage</td>
<td><sup>(1)</sup></td>
<td>OK</td>
<td>OK</td>
<td><sup>OK(2)</sup></td>
</tr>
<tr>
<td>Debian</td>
<td>OK</td>
<td>OK</td>
<td>OK</td>
<td><sup>OK(2)</sup></td>
</tr>
<tr>
<td>OPNSense</td>
<td>OK</td>
<td>OK</td>
<td>OK</td>
<td><sup>OK(2)</sup></td>
</tr>
<tr>
<td>pfSense</td>
<td>OK</td>
<td><sup>OK(*)</sup></td>
<td>OK</td>
<td><sup>OK(2)</sup></td>
</tr>
</table>
<p><sup>*</sup> - works well with BIOS v4.6.8 or later in mainline and all legacy releases; for v4.6.7 and older mainline versions issues with installation and system functionality (installation break, unwanted reboots), can be fixed by adding
a hint hint.ahci.0.msi="0", for more information see this <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/pfSense-install-guide.md">document</a></p>
<p><sup>(2)</sup> - all apu boards have problems with USB 3.x stick detection in BIOS, system is working properly, but after reboot/warmboot/coldboot USB stick may not appear in BIOS boot menu (depends on the stick, well working sticks are mentioned
in this <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/debug/usb-tests.md">document</a>)</p>
<p><sup>(1)</sup> - Voyage Linux is bootable on SD card and works well in read-only mode, remounting as read-write and writing changes to SD sometimes results in kernel panic which often leads to non-operable system</p>
<h5><a href="https://github.com/pcengines/apu2-documentation/blob/master/docs/os-status.md">Read more...</a></h5>
</div>
<div class="container">
<div class="wrapper">
<h1>Documentation</h1>
<hr class="line" />
<p>The list of most useful documents from documentation:</p>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/apu_CPU_boost.md">CPU Boost</a> - document briefly describes what the Core Performance Boost is and how to verify it works in BIOS and operating system.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/research/fast_boot.md">Fast Boot</a> - document describing research for Fast Boot path for apu boards. The Fast Boot was intended to restore memory configuration from non-volatile storage and reduce the boot time of the platform. You will find the issues and limitations which did not allow to implement the feature.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/research/ROCA.md">ROCA TPM vulnerability</a> - document describing ROCA TPM vulnerablity status and verification on TPM1a module form PC Engines.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/APU_mPCIe_capabilities.md">APU mPCIe capabilities</a> - list of all signals and interfaces present on mPCIe connectors for apu2/3/4 boards. The document also describes possible usage of the slots.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/cold_reset.md">Cold reset</a> - document describing reset types for the platform.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/firmware_flashing.md">Firmware flashing</a> - document describes how to flash new firmware for apu2 board on various operating systems. Also there is a description how to safely reboot the platform after a firmware update.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/microcode_patching.md">Microcode patching</a> - a guide how to apply a microcode patch on the firmware level by building a custom firmware image.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md">mPCIe modules</a> - list of supported and tested WiFi and LTE modules. The document also describes issues with certain modules and possible solutions/workarounds.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/release_process.md">Old build system procedure (deprecated)</a> - document describing build procedure for older PC Engines firmware releases. It is deprecated, do not use unless You want to build old binaries.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/serial_console.md">COM2 serial console</a> - a practical guide how to build a firmware binary with native COM2 console support. If You want to use full RS232 COM1 port for other purposes, read the document how to change the main console port.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/tpm_menu.md">TPM menu</a> - document describes the usage of TPM configuration menu in SeaBIOS.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/tpm_pin_mapping.md">TPM pin mapping</a> - document showing the TPM1a module pinout. It may be useful for users that would like to connect the TPM1a module to boards other than apu2.</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/apu2_vboot.md">VBOOT HOWTO</a> - document describing how to build a coreboot image with vboot support and measured boot mode</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/tianocore_build.md">coreboot with Tianocore payload</a> - document describes how to build a coreboot image with Tianocore payload</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/apu2_vboot.md">VBOOT HOWTO</a> - document describing how to build a coreboot image with vboot support and measured boot mode</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md">GPIO guide</a> - quick guide how to manipulate GPIOs from Linux sysfs</li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/blob/master/README.md">Setup menu</a> - briefly describes the runtime configuration options, setup menu and its usage</li>
<li><a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/runtime-configuration.md">Runtime configuration</a> - describes the runtime configuration options in detail and how to change the option from operating system without physical access to the machine</li>
</ul>
</div>
<!-- mainline releases v4.19.0.1 -->
<div class="wrapper">
<!--<div class="break"></div>insert this code when a new update comes out to separate a new version from the current.-->
<div class="smaller-margin" id="mr-63">
<h2 class="text-middle">Mainline releases</h2>
<!-- h2 tag needs to be moved to the newest version -->
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.3...rel_4.19.0.1">v4.19.0.1</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2023-02-02</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit 2ccbcc5</li>
<li>Removed configuration and mainboard files for apu1 due to the board being dropped from upstream coreboot</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/308">APU7 iPXE network boot with i225 NICs does not work</a></li>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md"> GPIOs </a>document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md"> mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.19.0.1.rom">apu2 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.19.0.1.rom">apu3 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.19.0.1.rom">apu4 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.19.0.1.rom">apu5 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.19.0.1.rom">apu6 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.19.0.1.rom">apu7 v4.19.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.19.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.19.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.19.0.1.zip">apu2 v4.19.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.19.0.1.zip">apu3 v4.19.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.19.0.1.zip">apu4 v4.19.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.19.0.1.zip">apu5 v4.19.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.19.0.1.zip">apu6 v4.19.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.19.0.1.zip">apu7 v4.19.0.1.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/556754">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.3...rel_4.19.0.1">coreboot v4.19.0.1</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.14.0.1...'rel-1.16.0.1'">SeaBIOS 'rel-1.16.0.1'</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.22...'v4.6.24'">sortbootorder 'v4.6.24'</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.17.0.3 -->
<div class="smaller-margin" id="mr-62">
<!-- h2 tag needs to be moved to the newest version -->
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.2...v4.17.0.3">v4.17.0.3</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2022-08-24</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit e173f2b</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/308">APU7 iPXE network boot with i225 NICs does not work</a></li>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md"> GPIOs </a>document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md"> mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.3.rom">apu1 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.3.rom">apu2 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.3.rom">apu3 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.3.rom">apu4 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.3.rom">apu5 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.3.rom">apu6 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.3.rom">apu7 v4.17.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.3.zip">apu1 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.3.zip">apu2 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.3.zip">apu3 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.3.zip">apu4 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.3.zip">apu5 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.3.zip">apu6 v4.17.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.3.zip">apu7 v4.17.0.3.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/504899">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.2...v4.17.0.3">coreboot v4.17.0.3</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.14.0.1...'rel-1.16.0.1'">SeaBIOS 'rel-1.16.0.1'</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.22...'v4.6.24'">sortbootorder 'v4.6.24'</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.17.0.2 -->
<div class="smaller-margin" id="mr-61">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.1...v4.17.0.2">v4.17.0.2</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2022-07-29</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit df721bd</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/308">APU7 iPXE network boot with i225 NICs does not work</a></li>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md"> GPIOs</a> document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md"> mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.2.rom">apu1 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.2.rom">apu2 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.2.rom">apu3 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.2.rom">apu4 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.2.rom">apu5 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.2.rom">apu6 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.2.rom">apu7 v4.17.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.2.zip">apu1 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.2.zip">apu2 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.2.zip">apu3 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.2.zip">apu4 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.2.zip">apu5 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.2.zip">apu6 v4.17.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.2.zip">apu7 v4.17.0.2.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/504899">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.17.0.1...v4.17.0.2">coreboot v4.17.0.2</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.14.0.1...'rel-1.16.0.1'">SeaBIOS 'rel-1.16.0.1'</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.22...'v4.6.24'">sortbootorder 'v4.6.24'</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.17.0.1 -->
<div class="smaller-margin" id="mr-60">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.4...v4.17.0.1">v4.17.0.1</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2022-06-23</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit 5eda52a</li>
<li>updated sortbootorder to v4.6.24</li>
</ol>
<li>Added:</li>
<ol>
<li>Support for APU7 (APU3 variant with 2.5GbE i225 NICs)</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/308">APU7 iPXE network boot with i225 NICs does not work</a></li>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md"> GPIOs</a> document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md">mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.1.rom">apu1 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.1.rom">apu2 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.1.rom">apu3 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.1.rom">apu4 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.1.rom">apu5 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.1.rom">apu6 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.1.rom">apu7 v4.17.0.1</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.1.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.1.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.17.0.1.zip">apu1 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.17.0.1.zip">apu2 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.17.0.1.zip">apu3 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.17.0.1.zip">apu4 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.17.0.1.zip">apu5 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.17.0.1.zip">apu6 v4.17.0.1.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu7/apu7_v4.17.0.1.zip">apu7 v4.17.0.1.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/504899">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.4...v4.17.0.1">coreboot v4.17.0.1</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.14.0.1...'rel-1.16.0.1'">SeaBIOS 'rel-1.16.0.1'</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.22...'v4.6.24'">sortbootorder 'v4.6.24'</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.16.0.4 -->
<div class="smaller-margin" id="mr-59">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.3...v4.16.0.4">v4.16.0.4</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2022-05-26</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit 9686ac2261</li>
<li>updated sortbootorder to v4.6.23</li>
<li>updated SeaBIOS to rel-1.16.0.1</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md">GPIOs</a> document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md">mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.4.rom">apu1 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.4.rom">apu2 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.4.rom">apu3 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.4.rom">apu4 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.4.rom">apu5 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.4.rom">apu6 v4.16.0.4</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.4.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.4.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.4.zip">apu1 v4.16.0.4.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.4.zip">apu2 v4.16.0.4.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.4.zip">apu3 v4.16.0.4.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.4.zip">apu4 v4.16.0.4.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.4.zip">apu5 v4.16.0.4.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.4.zip">apu6 v4.16.0.4.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/475909">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.3...v4.16.0.4">coreboot v4.16.0.4</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.14.0.1...'rel-1.16.0.1'">SeaBIOS 'rel-1.16.0.1'</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.22...'v4.6.23'">sortbootorder 'v4.6.23'</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.16.0.3 -->
<div class="smaller-margin" id="mr-58">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.2...v4.16.0.3">v4.16.0.3</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: `2022-04-21`</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit 2c4b426557</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md">GPIOs</a> document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md">mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.3.rom">apu1 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.3.rom">apu2 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.3.rom">apu3 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.3.rom">apu4 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.3.rom">apu5 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.3.rom">apu6 v4.16.0.3</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.3.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.3.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.3.zip">apu1 v4.16.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.3.zip">apu2 v4.16.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.3.zip">apu3 v4.16.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.3.zip">apu4 v4.16.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.3.zip">apu5 v4.16.0.3.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.3.zip">apu6 v4.16.0.3.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/475909">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.2...v4.16.0.3">coreboot v4.16.0.3</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.12.1.3...rel-1.14.0.1">SeaBIOS rel-1.14.0.1</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.21...v4.6.22">sortbootorder v4.6.22</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.16.0.2 -->
<div class="smaller-margin" id="mr-57">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.1...v4.16.0.2">v4.16.0.2</a></h4>
</div>
<div class="dimmed-text">
<p>Release date: 2022-03-29</p>
</div>
<ul>
<li>Changed:</li>
<ol>
<li>Rebased with official coreboot repository commit 66f99f7fa7</li>
</ol>
<li>Known issues:</li>
<ol>
<li><a href="https://github.com/pcengines/coreboot/issues/329">apuled driver doesn't work in FreeBSD.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/gpios.md">GPIOs</a> document for workaround.</li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/115">some PCIe cards are not detected on certain OSes and/or in certain mPCIe slots.</a> Check the <a target="_blank" href="https://github.com/pcengines/apu2-documentation/blob/master/docs/mpcie_modules.md">mPCIe modules</a> document for solution/workaround.</li>
<li><a href="https://github.com/pcengines/seabios/issues/30">booting with 2 USB 3.x sticks plugged in apu4 sometimes results in detecting only 1 stick</a></li>
<li><a href="https://github.com/pcengines/seabios/issues/29">certain USB 3.x sticks happen to not appear in boot menu</a></li>
<li><a href="https://github.com/pcengines/apu2-documentation/issues/109">booting Xen is unstable</a></li>
</ol>
</ul>
<div class="source-code-links-binaries">
<div class="binaries-column">
<div class="smaller-margin">
<p>Binaries:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.2.rom">apu1 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.2.rom">apu2 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.2.rom">apu3 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.2.rom">apu4 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.2.rom">apu5 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.2.rom">apu6 v4.16.0.2</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.2.SHA256" class="sha-button">SHA256</a><a href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.2.SHA256.sig" class="sha-button">SHA256.sig</a></li>
</ul>
<div class="smaller-margin">
<p>Zip packages:</p>
</div>
<ul>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu1/apu1_v4.16.0.2.zip">apu1 v4.16.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu2/apu2_v4.16.0.2.zip">apu2 v4.16.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu3/apu3_v4.16.0.2.zip">apu3 v4.16.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu4/apu4_v4.16.0.2.zip">apu4 v4.16.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu5/apu5_v4.16.0.2.zip">apu5 v4.16.0.2.zip</a></li>
<li><a class="sha-button" href="https://3mdeb.com/open-source-firmware/pcengines/apu6/apu6_v4.16.0.2.zip">apu6 v4.16.0.2.zip</a></li>
</ul>
<p>See an example how to verify the signatures on <a href="https://asciinema.org/a/475909">asciinema</a></p>
</div>
<div class="source-code-column">
<div class="smaller-margin">
<p>Source code:</p>
</div>
<ul>
<li><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.16.0.1...v4.16.0.2">coreboot v4.16.0.2</a></li>
<li><a target="_blank" href="https://github.com/pcengines/seabios/compare/rel-1.12.1.3...rel-1.14.0.1">SeaBIOS rel-1.14.0.1</a></li>
<li><a target="_blank" href="https://github.com/pcengines/sortbootorder/compare/v4.6.21...v4.6.22">sortbootorder v4.6.22</a></li>
<li><a target="_blank" href="https://github.com/ipxe/ipxe/commits/ebf2eaf5">ipxe 2019.03 stable</a></li>
<li><a target="_blank" href="https://review.coreboot.org/cgit/memtest86plus.git/commit/?id=0b756257276729c1a12bc1d95e7a1f044894bda2">memtest86+ revision 0b756257</a></li>
</ul>
</div>
</div>
<div class="break"></div>
<!-- mainline releases v4.16.0.1 -->
<div class="smaller-margin" id="mr-56">
<h4><a target="_blank" href="https://github.com/pcengines/coreboot/compare/v4.15.0.3...v4.16.0.1">v4.16.0.1</a></h4>
</div>