-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopencore-2024-08-06-200305.txt
2712 lines (2712 loc) · 256 KB
/
opencore-2024-08-06-200305.txt
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
00:000 00:000 BS: Starting OpenCore application...
00:000 00:000 BS: Booter path - EFI\BOOT\BOOTx64.EFI
00:000 00:000 OCFS: Trying to locate filesystem on A7A43898 A818D698
00:000 00:000 OCFS: Filesystem DP - EFI\BOOT\BOOTx64.EFI
00:000 00:000 BS: Trying to load OpenCore image...
00:000 00:000 BS: Relative path - EFI
00:000 00:000 BS: Startup path - EFI\OpenCore.efi (0)
00:000 00:000 BS: Fallback to absolute path - EFI\OC\OpenCore.efi
00:000 00:000 BS: Read OpenCore image of 839680 bytes
00:000 00:000 OCM: Loaded image at A8414A98 handle
00:000 00:000 OCM: Loaded image has DeviceHandle A7A43898 FilePath A6D25B18 ours DevicePath A6BEAC18
00:000 00:000 OCCPU: Failed to get FSBFrequency data using Apple Platform Info - Not Found
00:000 00:000 OC: Starting OpenCore...
00:000 00:000 OC: Booter path - EFI\OC\OpenCore.efi
00:000 00:000 OCFS: Trying to locate filesystem on A7A43898 A6D25B18
00:000 00:000 OCFS: Filesystem DP - EFI\OC\OpenCore.efi
00:000 00:000 OC: Absolute booter path - EFI\OC\OpenCore.efi
00:000 00:000 OC: Storage root EFI\OC\OpenCore.efi
00:000 00:000 OCST: Missing vault data, ignoring...
00:000 00:000 OC: OcMiscEarlyInit...
00:000 00:000 OC: Loaded configuration of 70268 bytes
00:000 00:000 OC: Got 4 drivers
00:000 00:000 OC: Watchdog status is 0
00:327 00:327 OC: OpenCore DBG-097-2023-12-11 is loading in Optional mode (0/0)...
00:352 00:025 OC: Boot timestamp - 2024.08.06 20:03:06
00:378 00:025 OCCPU: MP services threads 12 (enabled 12) - Success
00:403 00:025 OCCPU: MP services Pkg 1 Cores 6 Threads 2 - Success
00:429 00:025 OCCPU: Found AMD Ryzen 5 7600 6-Core Processor
00:454 00:025 OCCPU: Signature A60F12 Stepping 2 Model 61 Family F Type 0 ExtModel 6 ExtFamily A uCode 0 CPUID MAX (10/80000028)
00:580 00:125 OCCPU: FID 152 DID 8 Divisor 0 MaxBR 38
00:605 00:024 OCCPU: CPUFrequencyFromTSC 3799992840Hz 3799MHz
00:629 00:024 OCCPU: CPUFrequency 3799992840Hz 3799MHz
00:655 00:025 OCCPU: FSBFrequency 99999811Hz 99MHz
00:680 00:024 OCCPU: Pkg 1 Cores 6 Threads 12
00:706 00:025 OC: OcLoadNvramSupport...
00:731 00:025 OCVAR: Locate emulated NVRAM protocol - Not Found
00:756 00:025 OC: Deleting NVRAM 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14:DefaultBackgroundColor - Not Found
00:782 00:025 OC: Not deleting NVRAM 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:rtc-blacklist, matches add
00:807 00:024 OC: Not deleting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:boot-args, matches add
00:832 00:025 OC: Not deleting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:ForceDisplayRotationInEFI, matches add
00:860 00:027 OCVAR: Setting NVRAM 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14:DefaultBackgroundColor - Success
00:885 00:025 OCVAR: Setting NVRAM 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpu - ignored, exists
00:910 00:024 OCVAR: Setting NVRAM 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpuname - ignored, exists
00:934 00:024 OCVAR: Setting NVRAM 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:rtc-blacklist - Not Found
00:958 00:024 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:ForceDisplayRotationInEFI - ignored, exists
00:982 00:023 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:SystemAudioVolume - ignored, exists
01:007 00:024 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:boot-args - ignored, exists
01:031 00:023 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:csr-active-config - ignored, exists
01:055 00:024 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:prev-lang:kbd - ignored, exists
01:079 00:023 OCVAR: Setting NVRAM 7C436110-AB2A-4BBB-A880-FE41995C9F82:run-efi-updater - ignored, exists
01:103 00:024 OC: Current version is DBG-097-2023-12-11
01:128 00:024 OC: OcMiscMiddleInit...
01:153 00:024 OC: StorageHandle A7A43898 with Disabled LauncherOption pointing to Default
01:166 00:013 OC: OcLoadUefiSupport...
01:176 00:009 OCAU: OcAudioInstallProtocols (0, 0)
01:185 00:009 OCAU: 4B228577-6274-4A48-82AE-0713A1171987 protocol - Not Found
01:195 00:009 OCAU: C32332DF-FC56-4FE1-9358-BA0D529B24CD protocol - Not Found
01:204 00:009 OCAU: F4CB0B78-243B-11E7-A524-B8E8562CBAFA protocol - Not Found
01:214 00:009 OCAU: 3224B169-EC34-46D2-B779-E1B1687F525F protocol - Not Found
01:223 00:009 OCAE: Builtin installed
01:232 00:009 OCRTC: Wake log is 0x00 0x00 0 0x00
01:265 00:032 OCEG: Discovered rotate NVRAM override to 0
01:274 00:008 OC: Automatic SB model j160 from model MacPro7,1
01:283 00:009 OC: Loading Apple Secure Boot with j160 (level 1)
01:305 00:021 OCII: AIFTimerBoostInit Current timer is 10000
01:314 00:009 OC: Installing KeySupport...
01:324 00:009 OCII: gST->ConIn AC518290 vs found AC518290
01:333 00:008 AIK: Using 5 (50ms)
01:342 00:009 OCABC: ALRBL 0 RTDFRG 1 DEVMMIO 1 NOSU 1 NOVRWR 0 NOSB 0 FBSIG 0 NOHBMAP 0 SMSLIDE 1 WRUNPROT 0
01:351 00:009 OCABC: FEXITBS 0 PRMRG 0 CSLIDE 1 MSLIDE 0 PRSRV 0 RBMAP 1 VMAP 1 APPLOS 0 RTPERMS 1 ARBAR 0 RBIO 0
01:361 00:009 OCABC: Firmware has 8148747 free pages (686091 in lower 4 GB)
01:370 00:009 OCABC: Awaiting rendezvous with OpenRuntime r12
01:380 00:009 OC: RequestBootVarRouting 1
01:390 00:010 OCDM: Found 0x2005A/0x20046 UEFI version (376 bytes, 0 rebuilding to 376) gST BA47E018 gBS BAE3EA30 gBS->CreateEventEx BAE312AC &gBS A6A2B310
01:399 00:009 OC: AVX enabled - 1
01:409 00:010 OC: Got 4 drivers
01:418 00:009 OC: Driver OpenRuntime.efi at 0 () is being loaded...
01:431 00:012 OCABC: EfiBootRt candidate - <nil>
01:440 00:008 OCABC: IsEfiBootRt 0 (BP 1, Apple 0)
01:449 00:009 OCB: Arch filtering 0(24576)->A6B76018(24576) caps 0 - Success
01:460 00:010 OCABC: Got rendezvous with OpenRuntime r12
01:469 00:009 OCABC: MAT support is 1
01:479 00:009 OC: Driver OpenRuntime.efi at 0 is successfully loaded!
01:488 00:009 OC: Driver OpenCanopy.efi at 1 () is being loaded...
01:500 00:012 OCABC: EfiBootRt candidate - <nil>
01:509 00:008 OCABC: IsEfiBootRt 0 (BP 1, Apple 0)
01:519 00:009 OCB: Arch filtering 0(106496)->A6B62018(106496) caps 0 - Success
01:529 00:010 OC: Driver OpenCanopy.efi at 1 is successfully loaded!
01:539 00:009 OC: Driver OpenHfsPlus.efi at 2 () is being loaded...
01:549 00:009 OCABC: EfiBootRt candidate - <nil>
01:558 00:009 OCABC: IsEfiBootRt 0 (BP 1, Apple 0)
01:567 00:009 OCB: Arch filtering 0(40960)->A6B72018(40960) caps 0 - Success
01:578 00:010 OC: Driver OpenHfsPlus.efi at 2 is successfully loaded!
01:587 00:009 OC: Driver OpenHfsPlus.efi at 2 needs connection.
01:597 00:009 OC: Driver NvmExpressDxe.efi at 3 () is being loaded...
01:606 00:009 OCABC: EfiBootRt candidate - <nil>
01:615 00:009 OCABC: IsEfiBootRt 0 (BP 1, Apple 0)
01:625 00:009 OCB: Arch filtering 0(45056)->A6B71018(45056) caps 0 - Success
01:636 00:011 OC: Driver NvmExpressDxe.efi at 3 is successfully loaded!
01:645 00:009 OC: Driver NvmExpressDxe.efi at 3 needs connection.
01:655 00:009 OC: Connecting drivers...
01:722 00:066 OC: Connecting drivers done...
01:731 00:008 OC: Found 3 pointer devices - Success
01:740 00:009 OCJS: PartitionInfo is Success
01:750 00:009 OCC: Installing GOP (Unsupported) on ConsoleOutHandle...
01:760 00:009 OC: Requested resolution is 0x0@0 (max: 1, force: 0) from Max
01:769 00:009 OCC: Requesting 0x0@0 (max: 1) resolution, curr 2, total 10
01:779 00:009 OCC: Current FB at 0xFCE0000000 (0x300000), format 1, res 1024x768 scan 1024
01:788 00:009 OCC: Mode 0 - 1920x1080:1
01:797 00:009 OCC: Mode 1 - 800x600:1
01:807 00:009 OCC: Mode 2 - 1024x768:1
01:816 00:009 OCC: Mode 3 - 1280x720:1
01:826 00:009 OCC: Mode 4 - 1280x960:1
01:835 00:009 OCC: Mode 5 - 1280x1024:1
01:845 00:009 OCC: Mode 6 - 1366x768:1
01:854 00:009 OCC: Mode 7 - 1400x1050:1
01:887 00:032 OCC: Mode 8 - 640x480:1
01:896 00:009 OCC: Mode 9 - 720x480:1
01:905 00:009 OCC: Setting mode 0 with 1920x1080 resolution
01:917 00:011 OCC: Changed resolution mode to 0
01:926 00:009 OC: Changed resolution to 0x0@0 (max: 1, force: 0) from Max - Success
01:936 00:009 OC: Selected UIScale 1 based on 1920x1080 resolution
01:945 00:009 OC: Setting UIScale to 1 - Success
01:955 00:009 OCC: Using builtin text renderer with 1 scale
01:964 00:009 OCC: Install console control (A6A18F18/BAE27020/0), current - Success
01:979 00:014 OCC: Setup ASCII Output - Success
01:988 00:009 OC: Requested console mode is 0x0 (max: 0) from
01:997 00:009 OC: Requested not to use audio
02:007 00:009 OC: OcMiscLoadSystemReport...
02:016 00:009 OC: OcLoadAcpiSupport...
02:026 00:009 OCA: Found 25 ACPI tables
02:035 00:009 OCA: Detected table FACP (50434146) (OEM 00002049204D2041) at B2B72000 of 276 bytes at index 0
02:044 00:009 OCA: Detected DSDT at B2AF9000 of 449604 bytes at index 0
02:053 00:009 OCA: Detected table SSDT (54445353) (OEM 7265746E696C7053) at B2B74000 of 32612 bytes at index 1
02:063 00:009 OCA: Detected table SSDT (54445353) (OEM 0054445353555043) at B2B73000 of 429 bytes at index 2
02:073 00:009 OCA: Detected table FIDT (54444946) (OEM 00000049204D2041) at B2B6B000 of 156 bytes at index 3
02:082 00:009 OCA: Detected table MCFG (4746434D) (OEM 00000049204D2041) at B2B6A000 of 60 bytes at index 4
02:091 00:009 OCA: Detected table HPET (54455048) (OEM 00000049204D2041) at B2B69000 of 56 bytes at index 5
02:100 00:009 OCA: Detected table WDRT (54524457) (OEM 00000049204D2041) at B2B68000 of 71 bytes at index 6
02:110 00:009 OCA: Detected table UEFI (49464555) (OEM 00002049204D2041) at B4521000 of 72 bytes at index 7
02:119 00:009 OCA: Detected table FPDT (54445046) (OEM 00002049204D2041) at B2B67000 of 68 bytes at index 8
02:129 00:009 OCA: Detected table VFCT (54434656) (OEM 00002049204D2041) at B2AEE000 of 44676 bytes at index 9
02:138 00:009 OCA: Detected table SSDT (54445353) (OEM 0055504320444D41) at B2B6E000 of 14974 bytes at index 10
02:147 00:009 OCA: Detected table SSDT (54445353) (OEM 0043524C574D5043) at B2B6D000 of 1748 bytes at index 11
02:157 00:009 OCA: Detected table SSDT (54445353) (OEM 32474946444D5043) at B2AEC000 of 5584 bytes at index 12
02:166 00:009 OCA: Detected table SSDT (54445353) (OEM 3247494141464443) at B2AE9000 of 10918 bytes at index 13
02:176 00:009 OCA: Detected table SSDT (54445353) (OEM 00004E4D434D5043) at B2ADF000 of 39507 bytes at index 14
02:185 00:009 OCA: Detected table SSDT (54445353) (OEM 2020202020444F41) at B2ADC000 of 9166 bytes at index 15
02:194 00:009 OCA: Detected table TPM2 (324D5054) (OEM 00002049204D2041) at B2B6C000 of 76 bytes at index 16
02:204 00:009 OCA: Detected table WSMT (544D5357) (OEM 00002049204D2041) at B2ADB000 of 40 bytes at index 17
02:213 00:009 OCA: Detected table APIC (43495041) (OEM 00002049204D2041) at B2ADA000 of 350 bytes at index 18
02:224 00:010 OCA: Detected table IVRS (53525649) (OEM 656C626154646D41) at B2AD9000 of 200 bytes at index 19
02:233 00:009 OCA: Detected table SSDT (54445353) (OEM 304C4F4F544D454D) at B2AD8000 of 1280 bytes at index 20
02:242 00:009 OCA: Detected table SSDT (54445353) (OEM 43534F534D4D5043) at B2AD7000 of 2410 bytes at index 21
02:252 00:009 OCA: Detected table SSDT (54445353) (OEM 0000564F57444D41) at B2AD6000 of 1148 bytes at index 22
02:261 00:009 OCA: Detected table SSDT (54445353) (OEM 34565043414D5043) at B2AD4000 of 4166 bytes at index 23
02:271 00:009 OCA: Detected table SSDT (54445353) (OEM 656C626154646D41) at B2AD3000 of 1102 bytes at index 24
02:280 00:009 OCA: FACS signature is 0 (0)
02:291 00:010 OCA: Allocated new table SSDT at B451B000
02:300 00:009 OCA: Inserted table SSDT (54445353) (OEM 0000434574647353) of 125 bytes into ACPI at index 25
02:311 00:011 OCA: Allocated new table SSDT at B451A000
02:320 00:009 OCA: Inserted table SSDT (54445353) (OEM 7862735574647353) of 216 bytes into ACPI at index 26
02:330 00:009 OCA: Allocated new table SSDT at B4519000
02:339 00:009 OCA: Inserted table SSDT (54445353) (OEM 4167756C50757043) of 844 bytes into ACPI at index 27
02:349 00:009 OCA: Exposing XSDT table table FACP (50434146) (OEM 00002049204D2041) at B2B72000 of 276 bytes at index 0
02:358 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 7265746E696C7053) at B2B74000 of 32612 bytes at index 1
02:368 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 0054445353555043) at B2B73000 of 429 bytes at index 2
02:377 00:009 OCA: Exposing XSDT table table FIDT (54444946) (OEM 00000049204D2041) at B2B6B000 of 156 bytes at index 3
02:387 00:009 OCA: Exposing XSDT table table MCFG (4746434D) (OEM 00000049204D2041) at B2B6A000 of 60 bytes at index 4
02:396 00:009 OCA: Exposing XSDT table table HPET (54455048) (OEM 00000049204D2041) at B2B69000 of 56 bytes at index 5
02:406 00:009 OCA: Exposing XSDT table table WDRT (54524457) (OEM 00000049204D2041) at B2B68000 of 71 bytes at index 6
02:438 00:032 OCA: Exposing XSDT table table UEFI (49464555) (OEM 00002049204D2041) at B4521000 of 72 bytes at index 7
02:448 00:009 OCA: Exposing XSDT table table FPDT (54445046) (OEM 00002049204D2041) at B2B67000 of 68 bytes at index 8
02:457 00:009 OCA: Exposing XSDT table table VFCT (54434656) (OEM 00002049204D2041) at B2AEE000 of 44676 bytes at index 9
02:466 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 0055504320444D41) at B2B6E000 of 14974 bytes at index 10
02:475 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 0043524C574D5043) at B2B6D000 of 1748 bytes at index 11
02:485 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 32474946444D5043) at B2AEC000 of 5584 bytes at index 12
02:494 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 3247494141464443) at B2AE9000 of 10918 bytes at index 13
02:503 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 00004E4D434D5043) at B2ADF000 of 39507 bytes at index 14
02:513 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 2020202020444F41) at B2ADC000 of 9166 bytes at index 15
02:522 00:009 OCA: Exposing XSDT table table TPM2 (324D5054) (OEM 00002049204D2041) at B2B6C000 of 76 bytes at index 16
02:532 00:009 OCA: Exposing XSDT table table WSMT (544D5357) (OEM 00002049204D2041) at B2ADB000 of 40 bytes at index 17
02:541 00:009 OCA: Exposing XSDT table table APIC (43495041) (OEM 00002049204D2041) at B2ADA000 of 350 bytes at index 18
02:550 00:009 OCA: Exposing XSDT table table IVRS (53525649) (OEM 656C626154646D41) at B2AD9000 of 200 bytes at index 19
02:559 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 304C4F4F544D454D) at B2AD8000 of 1280 bytes at index 20
02:569 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 43534F534D4D5043) at B2AD7000 of 2410 bytes at index 21
02:578 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 0000564F57444D41) at B2AD6000 of 1148 bytes at index 22
02:587 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 34565043414D5043) at B2AD4000 of 4166 bytes at index 23
02:597 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 656C626154646D41) at B2AD3000 of 1102 bytes at index 24
02:606 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 0000434574647353) at B451B000 of 125 bytes at index 25
02:616 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 7862735574647353) at B451A000 of 216 bytes at index 26
02:625 00:009 OCA: Exposing XSDT table table SSDT (54445353) (OEM 4167756C50757043) at B4519000 of 844 bytes at index 27
02:634 00:009 OCA: Exposing RSDT table table FACP (50434146) (OEM 00002049204D2041) at B2B72000 of 276 bytes at index 0
02:644 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 7265746E696C7053) at B2B74000 of 32612 bytes at index 1
02:653 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 0054445353555043) at B2B73000 of 429 bytes at index 2
02:663 00:009 OCA: Exposing RSDT table table FIDT (54444946) (OEM 00000049204D2041) at B2B6B000 of 156 bytes at index 3
02:672 00:009 OCA: Exposing RSDT table table MCFG (4746434D) (OEM 00000049204D2041) at B2B6A000 of 60 bytes at index 4
02:682 00:009 OCA: Exposing RSDT table table HPET (54455048) (OEM 00000049204D2041) at B2B69000 of 56 bytes at index 5
02:691 00:009 OCA: Exposing RSDT table table WDRT (54524457) (OEM 00000049204D2041) at B2B68000 of 71 bytes at index 6
02:700 00:009 OCA: Exposing RSDT table table UEFI (49464555) (OEM 00002049204D2041) at B4521000 of 72 bytes at index 7
02:710 00:009 OCA: Exposing RSDT table table FPDT (54445046) (OEM 00002049204D2041) at B2B67000 of 68 bytes at index 8
02:720 00:010 OCA: Exposing RSDT table table VFCT (54434656) (OEM 00002049204D2041) at B2AEE000 of 44676 bytes at index 9
02:729 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 0055504320444D41) at B2B6E000 of 14974 bytes at index 10
02:739 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 0043524C574D5043) at B2B6D000 of 1748 bytes at index 11
02:748 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 32474946444D5043) at B2AEC000 of 5584 bytes at index 12
02:757 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 3247494141464443) at B2AE9000 of 10918 bytes at index 13
02:767 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 00004E4D434D5043) at B2ADF000 of 39507 bytes at index 14
02:776 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 2020202020444F41) at B2ADC000 of 9166 bytes at index 15
02:786 00:009 OCA: Exposing RSDT table table TPM2 (324D5054) (OEM 00002049204D2041) at B2B6C000 of 76 bytes at index 16
02:795 00:009 OCA: Exposing RSDT table table WSMT (544D5357) (OEM 00002049204D2041) at B2ADB000 of 40 bytes at index 17
02:805 00:009 OCA: Exposing RSDT table table APIC (43495041) (OEM 00002049204D2041) at B2ADA000 of 350 bytes at index 18
02:814 00:009 OCA: Exposing RSDT table table IVRS (53525649) (OEM 656C626154646D41) at B2AD9000 of 200 bytes at index 19
02:824 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 304C4F4F544D454D) at B2AD8000 of 1280 bytes at index 20
02:833 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 43534F534D4D5043) at B2AD7000 of 2410 bytes at index 21
02:842 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 0000564F57444D41) at B2AD6000 of 1148 bytes at index 22
02:852 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 34565043414D5043) at B2AD4000 of 4166 bytes at index 23
02:861 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 656C626154646D41) at B2AD3000 of 1102 bytes at index 24
02:871 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 0000434574647353) at B451B000 of 125 bytes at index 25
02:880 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 7862735574647353) at B451A000 of 216 bytes at index 26
02:890 00:009 OCA: Exposing RSDT table table SSDT (54445353) (OEM 4167756C50757043) at B4519000 of 844 bytes at index 27
02:899 00:009 OC: OcLoadPlatformSupport...
02:908 00:009 OCSMB: Found DMI Anchor B9AD9000 v3.6 Table Address B9AD6000 Length 094E
02:918 00:009 OCSMB: Found DMI Anchor B9AD8000 v3.6 Table Address B9AD6000 Length 094E
02:927 00:009 OCSMB: Current SMBIOS MS-7E26 (PRO B650-S WIFI (MS-7E26) made by Micro-Star International Co., Ltd.)
02:937 00:009 OC: PlatformInfo auto 1 OEM SN 0 OEM UUID 0 OEM MLB 0 OEM ROM 0 - Success
02:970 00:032 OC: New SMBIOS: Acidanthera model MacPro7,1
02:979 00:009 OCSMB: Post-override BIOS vendor Acidanthera 0
02:988 00:009 OCSMB: Number of CPU cache entries is 3
02:997 00:009 OCSMB: Number of CPU cache entries is 3
03:007 00:009 OCSMB: Number of CPU cache entries is 3
03:016 00:009 OCSMB: CPU1 display frequency is 3800MHz
03:026 00:009 OCSMB: Applying 1693 (1) prev B9AD9000 (2382/31), B9AD8000 (2382/24)
03:035 00:009 OCSMB: Patched B2A85000 v3.2 Table Address B2A86000 Length 069D 1E B7
03:044 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:name (9) - Success
03:054 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:Model (20) - Success
03:063 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:SystemSerialNumber (26) - Success
03:073 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:system-id (16) - Success
03:082 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:board-id (21) - Success
03:091 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:board-rev (1) - Success
03:100 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:StartupPowerEvents (8) - Success
03:110 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:InitialTSC (8) - Success
03:119 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:FSBFrequency (8) - Success
03:129 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:DevicePathsSupported (4) - Success
03:138 00:009 OCDH: Setting DataHub 64517CC8-6561-4051-B03C-5964B60F4C7A:RPlt (8) - Success
03:148 00:009 OC: Setting HW_BID Mac-27AD2F918AE68F61 - Success
03:159 00:010 OC: Setting HW_ROM 40:3C:FC:73:6B:43 - Success
03:169 00:010 OC: Setting ROM 40:3C:FC:73:6B:43 - Success
03:179 00:010 OC: Setting HW_MLB F5K0131024NK3F7UE - Success
03:189 00:009 OC: Setting MLB F5K0131024NK3F7UE - Success
03:199 00:010 OC: Setting HW_SSN F5KCHDYGP7QM - Success
03:210 00:010 OC: Setting SSN F5KCHDYGP7QM - Success
03:220 00:010 OC: Setting system-id 4507DFEC-53FD-5849-A88C-382E1D454543 - Success
03:231 00:010 OC: Setting FirmwareFeatures FDAFF066 - Success
03:241 00:009 OC: Setting ExtendedFirmwareFeatures 00000008FDAFF066 - Success
03:251 00:010 OC: Setting FirmwareFeaturesMask FFFFFF7F - Success
03:261 00:009 OC: Setting ExtendedFirmwareFeaturesMask 00000008FFFFFF7F - Success
03:271 00:009 OC: OcLoadDevPropsSupport...
03:280 00:009 OC: Setting devprop PciRoot(0x0)/Pci(0x1b,0x0):layout-id - Success
03:290 00:009 OC: OcMiscLateInit...
03:299 00:009 OC: Translated HibernateMode None to 0
03:308 00:009 OC: Hibernation activation - Invalid Parameter, hibernation wake - no
03:318 00:009 OC: Panic log does not exist
03:327 00:009 OC: OcLoadKernelSupport...
03:337 00:009 OC: All green, starting boot management...
03:346 00:009 OC: Ready for takeoff in 0 us
03:356 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
03:365 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
03:375 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
03:384 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
03:394 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
03:403 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
03:413 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
03:422 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
03:431 00:009 OCB: Found 8 potentially bootable filesystems
03:441 00:009 OCB: Found 4 BootOrder entries with BootNext excluded
03:451 00:009 OCB: efi-boot-device-data - Not Found
03:460 00:009 OCB: efi-boot-next-data - Not Found
03:470 00:009 OCB: efi-backup-boot-device-data - Not Found
03:479 00:009 OCB: efi-apple-recovery-data - Not Found
03:489 00:009 OCB: Dumping BootOrder
03:521 00:032 OCB: 0 -> Boot0000 = HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
03:530 00:009 OCB: 1 -> Boot0002 = BBS(0x81,,0x0)
03:540 00:009 OCB: 2 -> Boot0003 = BBS(0x82,,0x0)
03:549 00:009 OCB: 3 -> Boot0004 = BBS(0x83,,0x0)
03:558 00:009 OCB: Parsing predefined list...
03:567 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux hidden)
03:577 00:009 OCB: Building entry from Boot0000
03:587 00:009 OCB: Assuming DP is short-form (prefix)
03:596 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
03:605 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
03:614 00:009 OCB: Matched fs A8179F98
03:627 00:012 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
03:640 00:012 OCB: Get visibility for boot entry <null string> - Not Found
03:652 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
03:661 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
03:671 00:009 OCBP: Blessed file is missing
03:681 00:009 OCBP: Blessed folder is missing
03:690 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
03:701 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
03:710 00:009 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
03:723 00:012 OCB: Get visibility for boot entry <null string> - Not Found
03:732 00:009 OCB: Discarding already present DP
03:742 00:009 OCB: Building entry from Boot0002
03:751 00:009 OCB: Assuming DP is short-form (prefix)
03:761 00:009 OCB: Short-form DP could not be expanded
03:771 00:009 OCB: Building entry from Boot0003
03:780 00:009 OCB: Assuming DP is short-form (prefix)
03:789 00:009 OCB: Short-form DP could not be expanded
03:798 00:009 OCB: Building entry from Boot0004
03:808 00:009 OCB: Assuming DP is short-form (prefix)
03:817 00:009 OCB: Short-form DP could not be expanded
03:827 00:009 OCB: Processing blessed list
03:838 00:010 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
03:847 00:008 OCBP: Blessed file is missing
03:856 00:009 OCBP: Blessed folder is missing
03:865 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
03:875 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
03:884 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
03:894 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
03:905 00:010 OCB: Get visibility for boot entry - Success
03:914 00:009 OCB: Discarding disabled entry by visibility
03:925 00:010 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
03:934 00:009 OCBP: Blessed file is missing
03:944 00:009 OCBP: Blessed folder is missing
03:953 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
03:963 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
03:972 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
03:982 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
03:992 00:010 OCBP: Blessed file is missing
04:002 00:009 OCBP: Blessed folder is missing
04:012 00:010 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
04:022 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
04:031 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
04:041 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
04:051 00:010 OCBP: Blessed file is missing
04:084 00:032 OCBP: Blessed folder is missing
04:094 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
04:103 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
04:112 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
04:123 00:010 OCPI: Partition table not supported
04:132 00:009 OCPI: Failed to retrieve disk info
04:141 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
04:154 00:012 OCBP: Blessed file is missing
04:163 00:009 OCBP: Blessed folder is missing
04:173 00:010 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
04:185 00:011 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
04:196 00:010 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
04:205 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
04:217 00:012 OCB: Get visibility for boot entry <null string> - Not Found
04:229 00:011 OCB: Trying to detect Microsoft BCD
04:239 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
04:250 00:010 OCPI: Partition table not supported
04:259 00:009 OCPI: Failed to retrieve disk info
04:269 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
04:280 00:010 OCBP: Blessed file is missing
04:289 00:009 OCBP: Blessed folder is missing
04:299 00:010 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
04:309 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
04:318 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
04:328 00:009 OCPI: Partition table not supported
04:338 00:009 OCPI: Failed to retrieve disk info
04:347 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
04:378 00:031 OCBP: Blessed file is missing
04:387 00:009 OCBP: Blessed folder is missing
04:398 00:010 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
04:407 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
04:417 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
04:426 00:009 OCB: Not adding hidden auxiliary entry UEFI Shell (tool|B:0) -> OpenShell.efi
04:435 00:009 OCB: Not adding hidden auxiliary entry CleanNvram (tool|B:0) -> CleanNvram.efi
04:445 00:009 OCB: Showing menu...
04:455 00:009 OCHK: InitHotKeys
04:465 00:009 OCKM: Allocated key repeat context A6B44198 A6B44218 A6B44818
04:474 00:009 OCAE: Set screen resolution to 1920x1080 - Success
04:484 00:009 OCTY: Registered handler
06:909 02:425 OCHK: FreeHotKeys
06:918 00:008 OCTY: Unregistered handler
06:927 00:009 OCKM: Freeing key repeat context A6B44198 A6B44218 A6B44818
06:937 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
06:946 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
06:956 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
06:965 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
06:974 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
06:984 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
06:994 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
07:003 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
07:013 00:009 OCB: Found 8 potentially bootable filesystems
07:022 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
07:032 00:009 OCB: Building entry from Boot0000
07:041 00:009 OCB: Assuming DP is short-form (prefix)
07:051 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
07:083 00:032 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
07:092 00:009 OCB: Matched fs A8179F98
07:104 00:011 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
07:116 00:012 OCB: Get visibility for boot entry <null string> - Not Found
07:128 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
07:138 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
07:147 00:009 OCBP: Blessed file is missing
07:157 00:009 OCBP: Blessed folder is missing
07:166 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:176 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
07:186 00:009 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
07:199 00:013 OCB: Get visibility for boot entry <null string> - Not Found
07:208 00:009 OCB: Discarding already present DP
07:218 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
07:228 00:009 OCB: APFS recovery is not present - Not Found
07:237 00:009 OCB: Building entry from Boot0002
07:246 00:009 OCB: Assuming DP is short-form (prefix)
07:256 00:009 OCB: Short-form DP could not be expanded
07:265 00:009 OCB: Building entry from Boot0003
07:274 00:009 OCB: Assuming DP is short-form (prefix)
07:284 00:009 OCB: Short-form DP could not be expanded
07:293 00:009 OCB: Building entry from Boot0004
07:303 00:009 OCB: Assuming DP is short-form (prefix)
07:312 00:009 OCB: Short-form DP could not be expanded
07:321 00:009 OCB: Processing blessed list
07:331 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
07:340 00:009 OCBP: Blessed file is missing
07:350 00:009 OCBP: Blessed folder is missing
07:359 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:369 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:378 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
07:387 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
07:397 00:009 OCB: Get visibility for boot entry - Success
07:406 00:009 OCB: Discarding disabled entry by visibility
07:416 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
07:425 00:009 OCB: APFS recovery is not present - Not Found
07:443 00:018 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
07:453 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
07:464 00:011 OCB: Get visibility for boot entry <null string> - Not Found
07:473 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
07:484 00:010 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
07:493 00:009 OCBP: Blessed file is missing
07:503 00:009 OCBP: Blessed folder is missing
07:512 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:522 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:531 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
07:541 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
07:550 00:009 OCBP: Blessed file is missing
07:560 00:009 OCBP: Blessed folder is missing
07:569 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:579 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:588 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
07:597 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
07:607 00:009 OCBP: Blessed file is missing
07:616 00:009 OCBP: Blessed folder is missing
07:649 00:032 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:658 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:668 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
07:678 00:010 OCPI: Partition table not supported
07:687 00:009 OCPI: Failed to retrieve disk info
07:697 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
07:708 00:010 OCBP: Blessed file is missing
07:717 00:009 OCBP: Blessed folder is missing
07:726 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:736 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:745 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
07:755 00:010 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
07:768 00:012 OCB: Get visibility for boot entry <null string> - Not Found
07:779 00:011 OCB: Trying to detect Microsoft BCD
07:789 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
07:799 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
07:808 00:009 OCB: APFS recovery is not present - Not Found
07:819 00:010 OCPI: Partition table not supported
07:828 00:009 OCPI: Failed to retrieve disk info
07:838 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
07:847 00:009 OCBP: Blessed file is missing
07:857 00:009 OCBP: Blessed folder is missing
07:866 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:875 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:885 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
07:897 00:012 OCPI: Partition table not supported
07:906 00:009 OCPI: Failed to retrieve disk info
07:916 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
07:925 00:009 OCBP: Blessed file is missing
07:935 00:009 OCBP: Blessed folder is missing
07:944 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
07:954 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
07:963 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
07:972 00:009 OCB: Adding custom entry UEFI Shell (tool|B:0) -> OpenShell.efi
07:982 00:009 OCB: Registering entry UEFI Shell [OpenShell:UEFIShell:Shell] (T:128|F:0|G:0|E:0|B:0) - <nil>
07:991 00:009 OCB: Adding custom entry CleanNvram (tool|B:0) -> CleanNvram.efi
08:001 00:009 OCB: Registering entry CleanNvram [Auto] (T:128|F:0|G:0|E:0|B:0) - <nil>
08:011 00:009 OCB: Showing menu...
08:021 00:009 OCHK: InitHotKeys
08:030 00:009 OCKM: Allocated key repeat context A6B0B018 A6B0BF18 A6B0BF98
08:039 00:009 OCAE: Set screen resolution to 1920x1080 - Success
08:049 00:009 OCTY: Registered handler
10:058 02:009 OCHK: FreeHotKeys
10:068 00:009 OCTY: Unregistered handler
10:077 00:009 OCKM: Freeing key repeat context A6B0B018 A6B0BF18 A6B0BF98
10:086 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
10:096 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
10:105 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
10:115 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
10:124 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
10:134 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
10:143 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
10:153 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
10:163 00:009 OCB: Found 8 potentially bootable filesystems
10:172 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
10:204 00:032 OCB: Building entry from Boot0000
10:214 00:009 OCB: Assuming DP is short-form (prefix)
10:224 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
10:233 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
10:242 00:009 OCB: Matched fs A8179F98
10:254 00:011 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
10:266 00:011 OCB: Get visibility for boot entry <null string> - Not Found
10:278 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
10:287 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
10:297 00:009 OCBP: Blessed file is missing
10:307 00:009 OCBP: Blessed folder is missing
10:316 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:327 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
10:336 00:009 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
10:349 00:012 OCB: Get visibility for boot entry <null string> - Not Found
10:358 00:009 OCB: Discarding already present DP
10:367 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
10:376 00:009 OCB: APFS recovery is not present - Not Found
10:386 00:009 OCB: Building entry from Boot0002
10:396 00:009 OCB: Assuming DP is short-form (prefix)
10:405 00:009 OCB: Short-form DP could not be expanded
10:414 00:009 OCB: Building entry from Boot0003
10:424 00:009 OCB: Assuming DP is short-form (prefix)
10:433 00:009 OCB: Short-form DP could not be expanded
10:442 00:009 OCB: Building entry from Boot0004
10:452 00:009 OCB: Assuming DP is short-form (prefix)
10:461 00:009 OCB: Short-form DP could not be expanded
10:471 00:009 OCB: Processing blessed list
10:480 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
10:489 00:009 OCBP: Blessed file is missing
10:499 00:009 OCBP: Blessed folder is missing
10:508 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:518 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
10:527 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
10:537 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
10:546 00:009 OCB: Get visibility for boot entry - Success
10:555 00:009 OCB: Discarding disabled entry by visibility
10:565 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
10:574 00:009 OCB: APFS recovery is not present - Not Found
10:584 00:009 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
10:593 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
10:603 00:009 OCB: Get visibility for boot entry <null string> - Not Found
10:612 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
10:623 00:011 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
10:633 00:009 OCBP: Blessed file is missing
10:642 00:009 OCBP: Blessed folder is missing
10:652 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:661 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
10:671 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
10:680 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
10:690 00:009 OCBP: Blessed file is missing
10:700 00:009 OCBP: Blessed folder is missing
10:709 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:719 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
10:728 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
10:761 00:032 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
10:770 00:009 OCBP: Blessed file is missing
10:779 00:009 OCBP: Blessed folder is missing
10:789 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:798 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
10:807 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
10:818 00:010 OCPI: Partition table not supported
10:827 00:009 OCPI: Failed to retrieve disk info
10:836 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
10:847 00:010 OCBP: Blessed file is missing
10:856 00:009 OCBP: Blessed folder is missing
10:865 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
10:875 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
10:885 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
10:895 00:010 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
10:906 00:011 OCB: Get visibility for boot entry <null string> - Not Found
10:918 00:011 OCB: Trying to detect Microsoft BCD
10:929 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
10:938 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
10:947 00:009 OCB: APFS recovery is not present - Not Found
10:958 00:010 OCPI: Partition table not supported
10:968 00:009 OCPI: Failed to retrieve disk info
10:977 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
10:986 00:009 OCBP: Blessed file is missing
10:996 00:009 OCBP: Blessed folder is missing
11:005 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
11:015 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
11:024 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
11:034 00:010 OCPI: Partition table not supported
11:043 00:009 OCPI: Failed to retrieve disk info
11:053 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
11:062 00:009 OCBP: Blessed file is missing
11:071 00:009 OCBP: Blessed folder is missing
11:081 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
11:090 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
11:100 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
11:109 00:009 OCB: Adding custom entry UEFI Shell (tool|B:0) -> OpenShell.efi
11:119 00:009 OCB: Registering entry UEFI Shell [OpenShell:UEFIShell:Shell] (T:128|F:0|G:0|E:0|B:0) - <nil>
11:128 00:009 OCB: Adding custom entry CleanNvram (tool|B:0) -> CleanNvram.efi
11:138 00:009 OCB: Registering entry CleanNvram [Auto] (T:128|F:0|G:0|E:0|B:0) - <nil>
11:147 00:009 OCB: Showing menu...
11:157 00:010 OCHK: InitHotKeys
11:167 00:009 OCKM: Allocated key repeat context A6B0B018 A6B0BF18 A6B0BF98
11:176 00:009 OCAE: Set screen resolution to 1920x1080 - Success
11:186 00:009 OCTY: Registered handler
15:817 04:631 OCHK: FreeHotKeys
15:828 00:010 OCTY: Unregistered handler
15:837 00:009 OCKM: Freeing key repeat context A6B0B018 A6B0BF18 A6B0BF98
15:846 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
15:856 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
15:865 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
15:875 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
15:884 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
15:894 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
15:927 00:032 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
15:936 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
15:945 00:009 OCB: Found 8 potentially bootable filesystems
15:954 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
15:964 00:009 OCB: Building entry from Boot0000
15:973 00:009 OCB: Assuming DP is short-form (prefix)
15:982 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
15:992 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
16:001 00:009 OCB: Matched fs A8179F98
16:013 00:011 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
16:025 00:012 OCB: Get visibility for boot entry <null string> - Not Found
16:037 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
16:046 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
16:056 00:010 OCBP: Blessed file is missing
16:065 00:009 OCBP: Blessed folder is missing
16:075 00:010 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:085 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
16:095 00:009 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
16:108 00:012 OCB: Get visibility for boot entry <null string> - Not Found
16:117 00:009 OCB: Discarding already present DP
16:126 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
16:136 00:009 OCB: APFS recovery is not present - Not Found
16:145 00:009 OCB: Building entry from Boot0002
16:154 00:009 OCB: Assuming DP is short-form (prefix)
16:164 00:009 OCB: Short-form DP could not be expanded
16:174 00:009 OCB: Building entry from Boot0003
16:183 00:009 OCB: Assuming DP is short-form (prefix)
16:192 00:009 OCB: Short-form DP could not be expanded
16:202 00:009 OCB: Building entry from Boot0004
16:211 00:009 OCB: Assuming DP is short-form (prefix)
16:220 00:009 OCB: Short-form DP could not be expanded
16:230 00:009 OCB: Processing blessed list
16:239 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
16:249 00:009 OCBP: Blessed file is missing
16:258 00:009 OCBP: Blessed folder is missing
16:268 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:277 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:286 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
16:296 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
16:305 00:009 OCB: Get visibility for boot entry - Success
16:315 00:009 OCB: Discarding disabled entry by visibility
16:324 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
16:335 00:010 OCB: APFS recovery is not present - Not Found
16:344 00:009 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
16:354 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
16:363 00:009 OCB: Get visibility for boot entry <null string> - Not Found
16:372 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
16:383 00:011 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
16:393 00:009 OCBP: Blessed file is missing
16:402 00:009 OCBP: Blessed folder is missing
16:412 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:421 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:431 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
16:440 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
16:450 00:009 OCBP: Blessed file is missing
16:482 00:032 OCBP: Blessed folder is missing
16:492 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:501 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:510 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
16:520 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
16:529 00:009 OCBP: Blessed file is missing
16:539 00:009 OCBP: Blessed folder is missing
16:548 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:557 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:567 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
16:577 00:010 OCPI: Partition table not supported
16:587 00:009 OCPI: Failed to retrieve disk info
16:596 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
16:606 00:010 OCBP: Blessed file is missing
16:615 00:009 OCBP: Blessed folder is missing
16:625 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:635 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:644 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
16:654 00:010 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
16:666 00:011 OCB: Get visibility for boot entry <null string> - Not Found
16:678 00:011 OCB: Trying to detect Microsoft BCD
16:688 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
16:698 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
16:707 00:009 OCB: APFS recovery is not present - Not Found
16:718 00:011 OCPI: Partition table not supported
16:727 00:009 OCPI: Failed to retrieve disk info
16:737 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
16:746 00:009 OCBP: Blessed file is missing
16:755 00:009 OCBP: Blessed folder is missing
16:765 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:774 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:784 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
16:794 00:010 OCPI: Partition table not supported
16:803 00:009 OCPI: Failed to retrieve disk info
16:813 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
16:822 00:009 OCBP: Blessed file is missing
16:832 00:009 OCBP: Blessed folder is missing
16:842 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
16:851 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
16:860 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
16:870 00:009 OCB: Adding custom entry UEFI Shell (tool|B:0) -> OpenShell.efi
16:880 00:009 OCB: Registering entry UEFI Shell [OpenShell:UEFIShell:Shell] (T:128|F:0|G:0|E:0|B:0) - <nil>
16:889 00:009 OCB: Adding custom entry CleanNvram (tool|B:0) -> CleanNvram.efi
16:899 00:009 OCB: Registering entry CleanNvram [Auto] (T:128|F:0|G:0|E:0|B:0) - <nil>
16:908 00:009 OCB: Showing menu...
16:918 00:010 OCHK: InitHotKeys
16:928 00:009 OCKM: Allocated key repeat context A6B0B018 A6B0BF18 A6B0BF98
16:937 00:009 OCAE: Set screen resolution to 1920x1080 - Success
16:947 00:009 OCTY: Registered handler
17:867 00:920 OCHK: FreeHotKeys
17:877 00:009 OCTY: Unregistered handler
17:886 00:009 OCKM: Freeing key repeat context A6B0B018 A6B0BF18 A6B0BF98
17:896 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
17:905 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
17:915 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
17:947 00:032 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
17:956 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
17:966 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
17:975 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
17:985 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
17:994 00:009 OCB: Found 8 potentially bootable filesystems
18:003 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
18:013 00:009 OCB: Building entry from Boot0000
18:022 00:009 OCB: Assuming DP is short-form (prefix)
18:032 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
18:041 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
18:050 00:009 OCB: Matched fs A8179F98
18:061 00:011 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
18:074 00:012 OCB: Get visibility for boot entry <null string> - Not Found
18:086 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
18:095 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
18:105 00:009 OCBP: Blessed file is missing
18:115 00:009 OCBP: Blessed folder is missing
18:124 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:135 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
18:145 00:010 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
18:157 00:012 OCB: Get visibility for boot entry <null string> - Not Found
18:166 00:009 OCB: Discarding already present DP
18:176 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
18:185 00:009 OCB: APFS recovery is not present - Not Found
18:195 00:009 OCB: Building entry from Boot0002
18:204 00:009 OCB: Assuming DP is short-form (prefix)
18:213 00:009 OCB: Short-form DP could not be expanded
18:222 00:009 OCB: Building entry from Boot0003
18:232 00:009 OCB: Assuming DP is short-form (prefix)
18:241 00:009 OCB: Short-form DP could not be expanded
18:251 00:009 OCB: Building entry from Boot0004
18:261 00:010 OCB: Assuming DP is short-form (prefix)
18:271 00:009 OCB: Short-form DP could not be expanded
18:280 00:009 OCB: Processing blessed list
18:289 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
18:299 00:009 OCBP: Blessed file is missing
18:308 00:009 OCBP: Blessed folder is missing
18:318 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:327 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:337 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
18:346 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
18:356 00:009 OCB: Get visibility for boot entry - Success
18:365 00:009 OCB: Discarding disabled entry by visibility
18:375 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
18:384 00:009 OCB: APFS recovery is not present - Not Found
18:393 00:009 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
18:403 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
18:413 00:009 OCB: Get visibility for boot entry <null string> - Not Found
18:422 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
18:433 00:011 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
18:442 00:009 OCBP: Blessed file is missing
18:452 00:009 OCBP: Blessed folder is missing
18:461 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:471 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:504 00:032 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
18:513 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
18:522 00:009 OCBP: Blessed file is missing
18:531 00:009 OCBP: Blessed folder is missing
18:541 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:550 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:560 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
18:569 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
18:578 00:009 OCBP: Blessed file is missing
18:588 00:009 OCBP: Blessed folder is missing
18:597 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:606 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:615 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
18:626 00:010 OCPI: Partition table not supported
18:636 00:009 OCPI: Failed to retrieve disk info
18:645 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
18:655 00:010 OCBP: Blessed file is missing
18:665 00:009 OCBP: Blessed folder is missing
18:674 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:683 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:693 00:010 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
18:703 00:010 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
18:715 00:011 OCB: Get visibility for boot entry <null string> - Not Found
18:727 00:011 OCB: Trying to detect Microsoft BCD
18:737 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
18:747 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
18:756 00:009 OCB: APFS recovery is not present - Not Found
18:768 00:011 OCPI: Partition table not supported
18:777 00:009 OCPI: Failed to retrieve disk info
18:787 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
18:796 00:009 OCBP: Blessed file is missing
18:805 00:009 OCBP: Blessed folder is missing
18:815 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:824 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:834 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
18:844 00:009 OCPI: Partition table not supported
18:853 00:009 OCPI: Failed to retrieve disk info
18:862 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
18:872 00:009 OCBP: Blessed file is missing
18:882 00:009 OCBP: Blessed folder is missing
18:891 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
18:901 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
18:910 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
18:919 00:009 OCB: Adding custom entry UEFI Shell (tool|B:0) -> OpenShell.efi
18:929 00:009 OCB: Registering entry UEFI Shell [OpenShell:UEFIShell:Shell] (T:128|F:0|G:0|E:0|B:0) - <nil>
18:938 00:009 OCB: Adding custom entry CleanNvram (tool|B:0) -> CleanNvram.efi
18:948 00:009 OCB: Registering entry CleanNvram [Auto] (T:128|F:0|G:0|E:0|B:0) - <nil>
18:957 00:009 OCB: Showing menu...
18:968 00:010 OCHK: InitHotKeys
18:977 00:009 OCKM: Allocated key repeat context A6B0B018 A6B0BF18 A6B0BF98
18:987 00:009 OCAE: Set screen resolution to 1920x1080 - Success
18:996 00:009 OCTY: Registered handler
19:098 00:101 OCHK: FreeHotKeys
19:107 00:008 OCTY: Unregistered handler
19:117 00:009 OCKM: Freeing key repeat context A6B0B018 A6B0BF18 A6B0BF98
19:149 00:032 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
19:158 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
19:168 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
19:178 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
19:187 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
19:196 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
19:205 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
19:215 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
19:224 00:009 OCB: Found 8 potentially bootable filesystems
19:234 00:009 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
19:243 00:009 OCB: Building entry from Boot0000
19:252 00:009 OCB: Assuming DP is short-form (prefix)
19:262 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
19:271 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
19:281 00:009 OCB: Matched fs A8179F98
19:292 00:010 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
19:304 00:012 OCB: Get visibility for boot entry <null string> - Not Found
19:316 00:011 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
19:326 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
19:335 00:009 OCBP: Blessed file is missing
19:345 00:009 OCBP: Blessed folder is missing
19:355 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:366 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
19:376 00:010 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
19:388 00:012 OCB: Get visibility for boot entry <null string> - Not Found
19:398 00:009 OCB: Discarding already present DP
19:407 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
19:416 00:009 OCB: APFS recovery is not present - Not Found
19:426 00:009 OCB: Building entry from Boot0002
19:435 00:009 OCB: Assuming DP is short-form (prefix)
19:445 00:009 OCB: Short-form DP could not be expanded
19:454 00:009 OCB: Building entry from Boot0003
19:464 00:009 OCB: Assuming DP is short-form (prefix)
19:473 00:009 OCB: Short-form DP could not be expanded
19:482 00:009 OCB: Building entry from Boot0004
19:492 00:009 OCB: Assuming DP is short-form (prefix)
19:501 00:009 OCB: Short-form DP could not be expanded
19:511 00:009 OCB: Processing blessed list
19:520 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
19:530 00:009 OCBP: Blessed file is missing
19:539 00:009 OCBP: Blessed folder is missing
19:549 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:558 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
19:568 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
19:577 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
19:587 00:009 OCB: Get visibility for boot entry - Success
19:596 00:009 OCB: Discarding disabled entry by visibility
19:606 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
19:615 00:009 OCB: APFS recovery is not present - Not Found
19:624 00:009 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
19:634 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
19:643 00:009 OCB: Get visibility for boot entry <null string> - Not Found
19:653 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
19:664 00:011 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
19:673 00:009 OCBP: Blessed file is missing
19:706 00:032 OCBP: Blessed folder is missing
19:715 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:724 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
19:734 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
19:743 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
19:753 00:009 OCBP: Blessed file is missing
19:762 00:009 OCBP: Blessed folder is missing
19:771 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:780 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
19:790 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
19:800 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
19:809 00:009 OCBP: Blessed file is missing
19:818 00:009 OCBP: Blessed folder is missing
19:827 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:837 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
19:846 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
19:857 00:010 OCPI: Partition table not supported
19:867 00:009 OCPI: Failed to retrieve disk info
19:876 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
19:887 00:010 OCBP: Blessed file is missing
19:896 00:009 OCBP: Blessed folder is missing
19:906 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
19:915 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
19:925 00:010 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
19:935 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
19:947 00:012 OCB: Get visibility for boot entry <null string> - Not Found
19:958 00:011 OCB: Trying to detect Microsoft BCD
19:969 00:010 OCB: Registering entry Windows [Windows] (T:32|F:0|G:1|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)/\EFI\BOOT\BOOTX64.EFI
19:978 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
19:988 00:009 OCB: APFS recovery is not present - Not Found
19:999 00:011 OCPI: Partition table not supported
20:008 00:009 OCPI: Failed to retrieve disk info
20:018 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
20:027 00:009 OCBP: Blessed file is missing
20:036 00:009 OCBP: Blessed folder is missing
20:046 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
20:055 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
20:065 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
20:075 00:009 OCPI: Partition table not supported
20:084 00:009 OCPI: Failed to retrieve disk info
20:094 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
20:103 00:009 OCBP: Blessed file is missing
20:112 00:009 OCBP: Blessed folder is missing
20:122 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
20:132 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
20:141 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI is missing - Not Found
20:151 00:009 OCB: Adding custom entry UEFI Shell (tool|B:0) -> OpenShell.efi
20:160 00:009 OCB: Registering entry UEFI Shell [OpenShell:UEFIShell:Shell] (T:128|F:0|G:0|E:0|B:0) - <nil>
20:170 00:009 OCB: Adding custom entry CleanNvram (tool|B:0) -> CleanNvram.efi
20:179 00:009 OCB: Registering entry CleanNvram [Auto] (T:128|F:0|G:0|E:0|B:0) - <nil>
20:189 00:009 OCB: Showing menu...
20:199 00:010 OCHK: InitHotKeys
20:208 00:009 OCKM: Allocated key repeat context A6B0B018 A6B0BF18 A6B0BF98
20:218 00:009 OCAE: Set screen resolution to 1920x1080 - Success
20:228 00:009 OCTY: Registered handler
20:358 00:130 OCHK: FreeHotKeys
20:367 00:009 OCTY: Unregistered handler
20:376 00:009 OCKM: Freeing key repeat context A6B0B018 A6B0BF18 A6B0BF98
20:386 00:009 OCB: Adding fs A7A43898 (E:1|L:1|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
20:395 00:009 OCB: Adding fs A8179F98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
20:404 00:009 OCB: Adding fs A8178A98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
20:414 00:009 OCB: Adding fs A8177018 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(4,GPT,00012267-3EB0-F209-69BD-FA25CE440200,0x24A2A000,0x3992E800)
20:423 00:009 OCB: Adding fs A8177918 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(5,GPT,FEF79F30-E643-01DA-980B-63F32173ED00,0x5E358800,0x19064800)
20:432 00:009 OCB: Adding fs A814BE18 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(1,MBR,0x0A0F7EE9,0x800,0x1388000)
20:442 00:009 OCB: Adding fs A814B998 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x0,0xFFFF,0x0)/HD(2,MBR,0x0A0F7EE9,0x1388800,0xDAF3AAF)
20:451 00:009 OCB: Adding fs A7481D98 (E:0|L:0|P:Success) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xD,0x0)/Pci(0x0,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,MBR,0x57FAEF94,0x800,0xE8E080AF)
20:460 00:009 OCB: Found 8 potentially bootable filesystems
20:471 00:010 OCB: Adding fs 2007C5F5 for 2 custom entries and BEP (aux shown)
20:480 00:009 OCB: Building entry from Boot0000
20:490 00:009 OCB: Assuming DP is short-form (prefix)
20:499 00:009 OCB: Expanded DP - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
20:508 00:009 OCB: Expanded DP remainder - \EFI\Microsoft\Boot\bootmgfw.efi
20:518 00:009 OCB: Matched fs A8179F98
20:529 00:011 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
20:541 00:012 OCB: Get visibility for boot entry <null string> - Not Found
20:554 00:012 OCB: Registering entry Windows [Windows] (T:32|F:0|G:0|E:0|B:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
20:563 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)
20:573 00:009 OCBP: Blessed file is missing
20:582 00:009 OCBP: Blessed folder is missing
20:592 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
20:602 00:010 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi was found
20:612 00:009 OCB: Adding entry type (T:32|F:0|G:0) - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(1,GPT,D34319C6-E283-4E3F-AADE-4E54D8AD2F33,0x800,0x32000)/\EFI\Microsoft\Boot\bootmgfw.efi
20:624 00:012 OCB: Get visibility for boot entry <null string> - Not Found
20:634 00:009 OCB: Discarding already present DP
20:643 00:009 OCBP: APFS recovery volume handle missing - \EFI\Microsoft\Boot\
20:653 00:009 OCB: APFS recovery is not present - Not Found
20:662 00:009 OCB: Building entry from Boot0002
20:672 00:009 OCB: Assuming DP is short-form (prefix)
20:681 00:009 OCB: Short-form DP could not be expanded
20:691 00:009 OCB: Building entry from Boot0003
20:700 00:009 OCB: Assuming DP is short-form (prefix)
20:709 00:009 OCB: Short-form DP could not be expanded
20:719 00:009 OCB: Building entry from Boot0004
20:728 00:009 OCB: Assuming DP is short-form (prefix)
20:738 00:009 OCB: Short-form DP could not be expanded
20:747 00:009 OCB: Processing blessed list
20:757 00:009 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)
20:767 00:009 OCBP: Blessed file is missing
20:776 00:009 OCBP: Blessed folder is missing
20:786 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
20:795 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found
20:805 00:009 OCBP: Predefined <nil> \EFI\BOOT\BOOTX64.EFI was found
20:814 00:009 OCB: Adding entry type (T:1|F:0|G:1) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\EFI\BOOT\BOOTX64.EFI
20:823 00:009 OCB: Get visibility for boot entry - Success
20:833 00:009 OCB: Discarding disabled entry by visibility
20:842 00:009 OCBP: APFS recovery volume handle missing - \EFI\BOOT\
20:852 00:009 OCB: APFS recovery is not present - Not Found
20:861 00:009 OCB: Got recovery dp PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
20:871 00:009 OCB: Adding entry type (T:4|F:1|G:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
20:904 00:032 OCB: Get visibility for boot entry <null string> - Not Found
20:913 00:009 OCB: Registering entry OPENCORE [AppleRecv:Apple] (T:4|F:1|G:0|E:1|B:0) - PciRoot(0x0)/Pci(0x2,0x1)/Pci(0x0,0x0)/Pci(0xC,0x0)/Pci(0x0,0x0)/USB(0x4,0x0)/USB(0x0,0x0)/HD(1,GPT,097A32E3-E0FC-4CE2-812C-EFD7E936D9A9,0x800,0xEA5F7DF)/\com.apple.recovery.boot\
20:924 00:011 OCB: Adding bless entry on disk - PciRoot(0x0)/Pci(0x2,0x2)/Pci(0x0,0x0)/NVMe(0x1,99-22-20-00-00-00-00-00)/HD(3,GPT,54A82526-CF72-46E5-909A-D85AC661EF9F,0x3A800,0x249EF800)
20:933 00:009 OCBP: Blessed file is missing
20:943 00:009 OCBP: Blessed folder is missing
20:952 00:009 OCBP: Predefined <nil> \System\Library\CoreServices\boot.efi is missing - Not Found
20:961 00:009 OCBP: Predefined <nil> \EFI\Microsoft\Boot\bootmgfw.efi is missing - Not Found