-
Notifications
You must be signed in to change notification settings - Fork 31
/
macos-qemu.log
5102 lines (5093 loc) · 337 KB
/
macos-qemu.log
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
Darwin Kernel Version 20.2.0: Wed Dec 2 20:40:22 PST 2020; root:xnu-7195.60.75~1/RELEASE_ARM64_T8020
pmap_startup() init/release time: 105481 microsec
pmap_startup() delayed init/release of 0 pages
vm_page_bootstrap: 383584 free pages, 115105 wired pages, (up to 0 of which are delayed free)
"vm_compressor_mode" is 4
oslog_init completed, 16 chunks, 8 io pages
standard timeslicing quantum is 10000 us
standard background quantum is 2500 us
WQ[wql_init]: init linktable with max:262144 elements (8388608 bytes)
WQ[wqp_init]: init prepost table with max:262144 elements (8388608 bytes)
mig_table_max_displ = 53 mach_kobj_count = 365
debug_log_init: Error!! gPanicBase is still not initialized
debug_log_init: Error!! gPanicBase is still not initialized
kdp_core zlib memory 0x8000
Serial requested, consistent debug disabled or debug boot arg not present, configuring debugging over serial
iBoot version:
Kernel kext log filter 0xfff per kextlog boot arg.
Kext system initialized.
Kext __kernel__ registered class OSMetaClass.
Kext __kernel__ registered class OSObject.
Kext __kernel__ registered class OSArray.
Kext __kernel__ registered class OSBoolean.
Kext __kernel__ registered class OSCollection.
Kext __kernel__ registered class OSCollectionIterator.
Kext __kernel__ registered class OSData.
Kext __kernel__ registered class OSDictionary.
Kext __kernel__ registered class OSIterator.
Kext __kernel__ registered class OSKext.
Kext __kernel__ registered class OSKextSavedMutableSegment.
Kext __kernel__ registered class OSNumber.
Kext __kernel__ registered class OSOrderedSet.
Kext __kernel__ registered class OSSerialize.
Kext __kernel__ registered class OSSerializer.
Kext __kernel__ registered class OSSet.
Kext __kernel__ registered class OSString.
Kext __kernel__ registered class OSSymbol.
Kext __kernel__ registered class OSAction.
Kext __kernel__ registered class OSAction_IOUserClient_KernelCompletion.
Kext __kernel__ registered class IODispatchSource.
Kext __kernel__ registered class IODispatchQueue.
Kext __kernel__ registered class IOInterruptDispatchSource.
Kext __kernel__ registered class IODataQueueDispatchSource.
Kext __kernel__ registered class IOServiceNotificationDispatchSource.
Kext __kernel__ registered class IOConditionLock.
Kext __kernel__ registered class IORegistryEntry.
Kext __kernel__ registered class IORegistryPlane.
Kext __kernel__ registered class IORegistryIterator.
Kext __kernel__ registered class IOService.
Kext __kernel__ has IOService subclass IOService; enabling autounload.
Kext __kernel__ registered class _IOServiceNotifier.
Kext __kernel__ registered class _IOServiceNullNotifier.
Kext __kernel__ registered class _IOServiceInterestNotifier.
Kext __kernel__ registered class _IOConfigThread.
Kext __kernel__ registered class _IOServiceJob.
Kext __kernel__ registered class IOResources.
Kext __kernel__ registered class IOUserResources.
Kext __kernel__ registered class _IOOpenServiceIterator.
Kext __kernel__ registered class IONotifier.
Kext __kernel__ registered class IOServiceCompatibility.
Kext __kernel__ registered class IOPMRequest.
Kext __kernel__ registered class IOPMRequestQueue.
Kext __kernel__ registered class IOPMWorkQueue.
Kext __kernel__ registered class IOPMCompletionQueue.
Kext __kernel__ registered class IOServicePM.
Kext __kernel__ registered class IOPMinformee.
Kext __kernel__ registered class IOPMinformeeList.
Kext __kernel__ registered class IOPMPowerStateQueue.
Kext __kernel__ registered class IOCatalogue.
Kext __kernel__ registered class IOPMPowerSource.
Kext __kernel__ registered class IOPMPowerSourceList.
Kext __kernel__ registered class IOPMGR.
Kext __kernel__ registered class IOPolledInterface.
Kext __kernel__ registered class IOPolledFilePollers.
Kext __kernel__ registered class IOWorkLoop.
Kext __kernel__ registered class IOEventSource.
Kext __kernel__ registered class IOInterruptEventSource.
Kext __kernel__ registered class IOCommandGate.
Kext __kernel__ registered class IOCommand.
Kext __kernel__ registered class IOCommandPool.
Kext __kernel__ registered class IODMAEventSource.
Kext __kernel__ registered class IOFilterInterruptEventSource.
Kext __kernel__ registered class IOTimerEventSource.
Kext __kernel__ registered class IOBufferMemoryDescriptor.
Kext __kernel__ registered class IODMACommand.
Kext __kernel__ registered class IOInterleavedMemoryDescriptor.
Kext __kernel__ registered class IOMapper.
Kext __kernel__ registered class IOMemoryCursor.
Kext __kernel__ registered class IONaturalMemoryCursor.
Kext __kernel__ registered class IOBigMemoryCursor.
Kext __kernel__ registered class IOLittleMemoryCursor.
Kext __kernel__ registered class IOMemoryDescriptor.
Kext __kernel__ registered class IOGeneralMemoryDescriptor.
Kext __kernel__ registered class IOMemoryMap.
Kext __kernel__ registered class IOMultiMemoryDescriptor.
Kext __kernel__ registered class IORangeAllocator.
Kext __kernel__ registered class IOSubMemoryDescriptor.
Kext __kernel__ registered class IOPlatformExpert.
Kext __kernel__ registered class IODTPlatformExpert.
~/virtual/qemu/silicon/20C69$ ./run.sh
Darwin Kernel Version 20.2.0: Wed Dec 2 20:40:22 PST 2020; root:xnu-7195.60.75~1/RELEASE_ARM64_T8020
pmap_startup() init/release time: 106420 microsec
pmap_startup() delayed init/release of 0 pages
vm_page_bootstrap: 383584 free pages, 115105 wired pages, (up to 0 of which are delayed free)
"vm_compressor_mode" is 4
oslog_init completed, 16 chunks, 8 io pages
standard timeslicing quantum is 10000 us
standard background quantum is 2500 us
WQ[wql_init]: init linktable with max:262144 elements (8388608 bytes)
WQ[wqp_init]: init prepost table with max:262144 elements (8388608 bytes)
mig_table_max_displ = 53 mach_kobj_count = 365
debug_log_init: Error!! gPanicBase is still not initialized
debug_log_init: Error!! gPanicBase is still not initialized
kdp_core zlib memory 0x8000
Serial requested, consistent debug disabled or debug boot arg not present, configuring debugging over serial
iBoot version:
Kernel kext log filter 0xfff per kextlog boot arg.
Kext system initialized.
Kext __kernel__ registered class OSMetaClass.
Kext __kernel__ registered class OSObject.
Kext __kernel__ registered class OSArray.
Kext __kernel__ registered class OSBoolean.
Kext __kernel__ registered class OSCollection.
Kext __kernel__ registered class OSCollectionIterator.
Kext __kernel__ registered class OSData.
Kext __kernel__ registered class OSDictionary.
Kext __kernel__ registered class OSIterator.
Kext __kernel__ registered class OSKext.
Kext __kernel__ registered class OSKextSavedMutableSegment.
Kext __kernel__ registered class OSNumber.
Kext __kernel__ registered class OSOrderedSet.
Kext __kernel__ registered class OSSerialize.
Kext __kernel__ registered class OSSerializer.
Kext __kernel__ registered class OSSet.
Kext __kernel__ registered class OSString.
Kext __kernel__ registered class OSSymbol.
Kext __kernel__ registered class OSAction.
Kext __kernel__ registered class OSAction_IOUserClient_KernelCompletion.
Kext __kernel__ registered class IODispatchSource.
Kext __kernel__ registered class IODispatchQueue.
Kext __kernel__ registered class IOInterruptDispatchSource.
Kext __kernel__ registered class IODataQueueDispatchSource.
Kext __kernel__ registered class IOServiceNotificationDispatchSource.
Kext __kernel__ registered class IOConditionLock.
Kext __kernel__ registered class IORegistryEntry.
Kext __kernel__ registered class IORegistryPlane.
Kext __kernel__ registered class IORegistryIterator.
Kext __kernel__ registered class IOService.
Kext __kernel__ has IOService subclass IOService; enabling autounload.
Kext __kernel__ registered class _IOServiceNotifier.
Kext __kernel__ registered class _IOServiceNullNotifier.
Kext __kernel__ registered class _IOServiceInterestNotifier.
Kext __kernel__ registered class _IOConfigThread.
Kext __kernel__ registered class _IOServiceJob.
Kext __kernel__ registered class IOResources.
Kext __kernel__ registered class IOUserResources.
Kext __kernel__ registered class _IOOpenServiceIterator.
Kext __kernel__ registered class IONotifier.
Kext __kernel__ registered class IOServiceCompatibility.
Kext __kernel__ registered class IOPMRequest.
Kext __kernel__ registered class IOPMRequestQueue.
Kext __kernel__ registered class IOPMWorkQueue.
Kext __kernel__ registered class IOPMCompletionQueue.
Kext __kernel__ registered class IOServicePM.
Kext __kernel__ registered class IOPMinformee.
Kext __kernel__ registered class IOPMinformeeList.
Kext __kernel__ registered class IOPMPowerStateQueue.
Kext __kernel__ registered class IOCatalogue.
Kext __kernel__ registered class IOPMPowerSource.
Kext __kernel__ registered class IOPMPowerSourceList.
Kext __kernel__ registered class IOPMGR.
Kext __kernel__ registered class IOPolledInterface.
Kext __kernel__ registered class IOPolledFilePollers.
Kext __kernel__ registered class IOWorkLoop.
Kext __kernel__ registered class IOEventSource.
Kext __kernel__ registered class IOInterruptEventSource.
Kext __kernel__ registered class IOCommandGate.
Kext __kernel__ registered class IOCommand.
Kext __kernel__ registered class IOCommandPool.
Kext __kernel__ registered class IODMAEventSource.
Kext __kernel__ registered class IOFilterInterruptEventSource.
Kext __kernel__ registered class IOTimerEventSource.
Kext __kernel__ registered class IOBufferMemoryDescriptor.
Kext __kernel__ registered class IODMACommand.
Kext __kernel__ registered class IOInterleavedMemoryDescriptor.
Kext __kernel__ registered class IOMapper.
Kext __kernel__ registered class IOMemoryCursor.
Kext __kernel__ registered class IONaturalMemoryCursor.
Kext __kernel__ registered class IOBigMemoryCursor.
Kext __kernel__ registered class IOLittleMemoryCursor.
Kext __kernel__ registered class IOMemoryDescriptor.
Kext __kernel__ registered class IOGeneralMemoryDescriptor.
Kext __kernel__ registered class IOMemoryMap.
Kext __kernel__ registered class IOMultiMemoryDescriptor.
Kext __kernel__ registered class IORangeAllocator.
Kext __kernel__ registered class IOSubMemoryDescriptor.
Kext __kernel__ registered class IOPlatformExpert.
Kext __kernel__ registered class IODTPlatformExpert.
Kext __kernel__ registered class IOPlatformExpertDevice.
Kext __kernel__ registered class IOPlatformDevice.
Kext __kernel__ registered class IOPanicPlatform.
Kext __kernel__ registered class IOPlatformIO.
Kext __kernel__ registered class IOCPU.
Kext __kernel__ registered class IOCPUInterruptController.
Kext __kernel__ registered class IODTNVRAM.
Kext __kernel__ registered class IODTNVRAMVariables.
Kext __kernel__ registered class IODMAController.
Kext __kernel__ registered class IOInterruptController.
Kext __kernel__ registered class IOSharedInterruptController.
Kext __kernel__ registered class PassthruInterruptController.
Kext __kernel__ registered class IOMachPort.
Kext __kernel__ registered class IOUserIterator.
Kext __kernel__ registered class IOUserNotification.
Kext __kernel__ registered class IOServiceUserNotification.
Kext __kernel__ registered class IOServiceMessageUserNotification.
Kext __kernel__ registered class IOUserClient.
Kext __kernel__ registered class IOKitDiagnostics.
Kext __kernel__ registered class IOKitDiagnosticsClient.
Kext __kernel__ registered class IODataQueue.
Kext __kernel__ registered class IOSharedDataQueue.
Kext __kernel__ registered class IOReporter.
Kext __kernel__ registered class IOSimpleReporter.
Kext __kernel__ registered class IOStateReporter.
Kext __kernel__ registered class IOHistogramReporter.
Kext __kernel__ registered class IOReportLegend.
Kext __kernel__ registered class IORTC.
Kext __kernel__ registered class OSUserMetaClass.
Kext __kernel__ registered class IOUserService.
Kext __kernel__ registered class IOUserServerCheckInToken.
Kext __kernel__ registered class IOUserServer.
Kext __kernel__ registered class IOUserUserClient.
Kext __kernel__ registered class RootDomainUserClient.
Kext __kernel__ registered class IOPowerConnection.
Kext __kernel__ registered class IOWatchDogTimer.
Kext __kernel__ registered class IOPerfControlClient.
Kext __kernel__ registered class IOPerfControlWorkContext.
Kext __kernel__ registered class IOSKRegionMapper.
Kext __kernel__ registered class IOSKMapper.
Kext __kernel__ registered class IOSKArena.
Kext __kernel__ registered class IOSKRegion.
Kext __kernel__ registered class IOSKMemoryArray.
Kext __kernel__ registered class IOSKMemoryBuffer.
Kext __kernel__ registered class IONVRAMController.
Kext __kernel__ registered class IOUnifiedAddressTranslator.
Kext __kernel__ registered class PMAssertionsTracker.
Kext __kernel__ registered class PMHaltWorker.
Kext __kernel__ registered class IOPMrootDomain.
Kext __kernel__ registered class IOPMServiceInterestNotifier.
Kext __kernel__ registered class PMTraceWorker.
Kext __kernel__ registered class PMSettingHandle.
Kext __kernel__ registered class PMSettingObject.
Kext __kernel__ registered class IORootParent.
Reading startup extensions.
Starting from prelinked kernel.
Saving kext com.apple.iokit.IOBDStorageFamily mutable segment __DATA fffffe000b2e8000->fffffe000b2ebfff.
Saving kext com.apple.iokit.IOCDStorageFamily mutable segment __DATA fffffe000b31c000->fffffe000b31ffff.
Saving kext com.apple.iokit.IODVDStorageFamily mutable segment __DATA fffffe000b32c000->fffffe000b32ffff.
Saving kext com.apple.iokit.IOStorageFamily mutable segment __DATA fffffe000b3ec000->fffffe000b3effff.
Saving kext com.apple.filesystems.acfs mutable segment __DATA fffffe000b494000->fffffe000b4bffff.
Saving kext com.apple.filesystems.acfsctl mutable segment __DATA fffffe000b4c0000->fffffe000b4c3fff.
Saving kext com.apple.filesystems.cd9660 mutable segment __DATA fffffe000b4d4000->fffffe000b4d7fff.
Saving kext com.apple.filesystems.cddafs mutable segment __DATA fffffe000b4d8000->fffffe000b4dbfff.
Saving kext com.apple.kec.corecrypto mutable segment __DATA fffffe000b4e0000->fffffe000b4e7fff.
Saving kext com.apple.filesystems.exfat mutable segment __DATA fffffe000b4e8000->fffffe000b4ebfff.
Saving kext com.apple.filesystems.msdosfs mutable segment __DATA fffffe000b4f0000->fffffe000b4f3fff.
Saving kext com.apple.filesystems.ntfs mutable segment __DATA fffffe000b4f4000->fffffe000b4f7fff.
Saving kext com.apple.kec.pthread mutable segment __DATA fffffe000b4f8000->fffffe000b4fbfff.
Saving kext com.apple.filesystems.smbfs mutable segment __DATA fffffe000b4fc000->fffffe000b4fffff.
Saving kext com.apple.kext.triggers mutable segment __DATA fffffe000b504000->fffffe000b507fff.
Saving kext com.apple.filesystems.udf mutable segment __DATA fffffe000b508000->fffffe000b50bfff.
Saving kext com.apple.filesystems.webdav mutable segment __DATA fffffe000b518000->fffffe000b51bfff.
5 prelinked kexts
Recorded kext com.apple.kpi.bsd as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.bsd.
Kext com.apple.kpi.bsd loaded.
Recorded kext com.apple.kpi.dsep as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.dsep.
Kext com.apple.kpi.dsep loaded.
Recorded kext com.apple.kpi.iokit as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.iokit.
Kext com.apple.kpi.iokit loaded.
Recorded kext com.apple.kpi.libkern as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.libkern.
Kext com.apple.kpi.libkern loaded.
Recorded kext com.apple.kpi.mach as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.mach.
Kext com.apple.kpi.mach loaded.
Recorded kext com.apple.kpi.private as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.private.
Kext com.apple.kpi.private loaded.
Recorded kext com.apple.kpi.unsupported as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kpi.unsupported.
Kext com.apple.kpi.unsupported loaded.
Loading Kernel External Components.
Loading kernel external component com.apple.kec.Libm.
Recorded kext com.apple.kec.Libm as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kec.Libm.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kec.Libm executable loaded; 2 pages at 0xfffffe00078b0000 (load tag 8).
Kext com.apple.kec.Libm calling module start function.
Kext com.apple.kec.Libm is now started.
Kext com.apple.kec.Libm loaded.
Loading kernel external component com.apple.kec.corecrypto.
Recorded kext com.apple.kec.corecrypto as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kec.corecrypto.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.kec.corecrypto executable loaded; 7 pages at 0xfffffe0007984000 (load tag 9).
Kext com.apple.kec.corecrypto calling module start function.
Kext com.apple.kec.corecrypto is now started.
Kext com.apple.kec.corecrypto loaded.
Loading kernel external component com.apple.kec.pthread.
Recorded kext com.apple.kec.pthread as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.kec.pthread.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.kec.pthread executable loaded; 1 pages at 0xfffffe00079c4000 (load tag 10).
Kext com.apple.kec.pthread calling module start function.
Kext com.apple.kec.pthread is now started.
Kext com.apple.kec.pthread loaded.
Reading built-in kernel personalities for I/O Kit drivers.
Sending all eligible registered kexts' personalities to the IOCatalogue and starting matching.
1302 kext personalities sent to the IOCatalogue; matching started.
Loading security extensions.
Loading security extension com.apple.nke.applicationfirewall.
Recorded kext com.apple.nke.applicationfirewall as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.nke.applicationfirewall.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.nke.applicationfirewall executable loaded; 1 pages at 0xfffffe000701c000 (load tag 11).
Kext com.apple.nke.applicationfirewall calling module start function.
Kext com.apple.nke.applicationfirewall is now started.
Kext com.apple.nke.applicationfirewall loaded.
Loading security extension com.apple.security.AppleImage4.
Recorded kext com.apple.security.AppleImage4 as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.security.AppleImage4.
Loading kext com.apple.driver.AppleARMPlatform.
Loading kext com.apple.iokit.IOReportFamily.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.iokit.IOReportFamily executable loaded; 1 pages at 0xfffffe00077a8000 (load tag 12).
Kext com.apple.iokit.IOReportFamily calling module start function.
Kext com.apple.iokit.IOReportFamily registered class IOReportHub.
Kext com.apple.iokit.IOReportFamily has IOService subclass IOReportHub; enabling autounload.
Kext com.apple.iokit.IOReportFamily registered class IOReportUserClient.
Kext com.apple.iokit.IOReportFamily is now started.
Kext com.apple.iokit.IOReportFamily loaded.
Loading kext com.apple.iokit.IOSlowAdaptiveClockingFamily.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily executable loaded; 1 pages at 0xfffffe00077d8000 (load tag 13).
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily calling module start function.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily registered class IOSlowAdaptiveClockingDomain.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily registered class IOSlowAdaptiveClockingManager.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily has IOService subclass IOSlowAdaptiveClockingManager; enabling autounload.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily is now started.
Kext com.apple.iokit.IOSlowAdaptiveClockingFamily loaded.
Loading kext com.apple.iokit.IOStorageFamily.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOStorageFamily executable loaded; 1 pages at 0xfffffe00077dc000 (load tag 14).
Kext com.apple.iokit.IOStorageFamily calling module start function.
Kext com.apple.iokit.IOStorageFamily registered class IOAppleLabelScheme.
Kext com.apple.iokit.IOStorageFamily has IOService subclass IOAppleLabelScheme; enabling autounload.
Kext com.apple.iokit.IOStorageFamily registered class IOApplePartitionScheme.
Kext com.apple.iokit.IOStorageFamily registered class IOBlockStorageDevice.
Kext com.apple.iokit.IOStorageFamily registered class IOBlockStorageDriver.
Kext com.apple.iokit.IOStorageFamily registered class IODeblocker.
Kext com.apple.iokit.IOStorageFamily registered class IOBreaker.
Kext com.apple.iokit.IOStorageFamily registered class IOFDiskPartitionScheme.
Kext com.apple.iokit.IOStorageFamily registered class IOFilterScheme.
Kext com.apple.iokit.IOStorageFamily registered class IOGUIDPartitionScheme.
Kext com.apple.iokit.IOStorageFamily registered class IOMedia.
Kext com.apple.iokit.IOStorageFamily registered class IOMediaBSDClient.
Kext com.apple.iokit.IOStorageFamily registered class IOPartitionScheme.
Kext com.apple.iokit.IOStorageFamily registered class IOStorage.
Kext com.apple.iokit.IOStorageFamily is now started.
Kext com.apple.iokit.IOStorageFamily loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.driver.AppleARMPlatform executable loaded; 3 pages at 0xfffffe0007058000 (load tag 15).
Kext com.apple.driver.AppleARMPlatform calling module start function.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMCFIFlashController.
Kext com.apple.driver.AppleARMPlatform has IOService subclass AppleARMCFIFlashController; enabling autounload.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMCHRPNVRAM.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMCPU.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMBootPerf.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionAssertReset.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionPerfAdvise.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionEventTimestamp.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIICController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIICDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIICUserClient.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIICDebugDict.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMBacklightFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIISController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIISDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIISCommand.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIO.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIODevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleMCCUserClient.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMNMI.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMNORFlashController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMNORFlashDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPE.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFabricTrace.
Kext com.apple.driver.AppleARMPlatform registered class AppleFabricTraceUserClient.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionClockGate.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionPowerGate.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionCPUIdle.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionCLPCEnabled.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionAssertReset.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerFunctionPerfAdvise.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPerformanceControllerCLPCNub.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMRTC.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPMIController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPMIDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPMIUserClient.
Kext com.apple.driver.AppleARMPlatform registered class AppleMemCacheEvent.
Kext com.apple.driver.AppleARMPlatform registered class MCClient.
Kext com.apple.driver.AppleARMPlatform registered class AppleMemCacheController.
Kext com.apple.driver.AppleARMPlatform registered class AppleMemCacheDataSetsFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSoftIICController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPIController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPIDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPICommand.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSPIFlashController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMMIPIDSIController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMMIPIDSIDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWM.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWMDevice.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWMInOutPulseController.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWMCaptureTimestampFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMI2CEEPROM.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWMBacklight.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMPWMBacklightControllerUpdateFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMLightEmUp.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionUSBDataMonitor.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMBacklight.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMBacklightPCCUpdateFunction.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMSlowAdaptiveClockingManager.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionSlowAdaptiveClocking.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionSlowAdaptiveClockingAggressor.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionIISRoute.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMFunctionIISActive.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMIISSwitch.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMNORPanicLog.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMTraceController.
Kext com.apple.driver.AppleARMPlatform registered class MCDataStreamInfoObject.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMCPUPerformanceServiceNub.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMCPUPerformanceArbiter.
Kext com.apple.driver.AppleARMPlatform registered class AppleARMNORPanicLogDevice.
Kext com.apple.driver.AppleARMPlatform is now started.
Kext com.apple.driver.AppleARMPlatform loaded.
Loading kext com.apple.iokit.IOCryptoAcceleratorFamily.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOCryptoAcceleratorFamily executable loaded; 1 pages at 0xfffffe000771c000 (load tag 16).
Kext com.apple.iokit.IOCryptoAcceleratorFamily calling module start function.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOAESAccelerator.
Kext com.apple.iokit.IOCryptoAcceleratorFamily has IOService subclass IOAESAccelerator; enabling autounload.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOAESAcceleratorCommand.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOAESAcceleratorUserClient.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOCryptoAccelerator.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOSHA1Accelerator.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOSHA1AcceleratorCommand.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOSHA1AcceleratorUserClient.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOPRNGAccelerator.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOPRNGAcceleratorUserClient.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOPKEAccelerator.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOPKEAcceleratorCommand.
Kext com.apple.iokit.IOCryptoAcceleratorFamily registered class IOPKEAcceleratorUserClient.
Kext com.apple.iokit.IOCryptoAcceleratorFamily is now started.
Kext com.apple.iokit.IOCryptoAcceleratorFamily loaded.
Kext com.apple.kec.corecrypto is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.security.AppleImage4 executable loaded; 2 pages at 0xfffffe0007374000 (load tag 17).
Kext com.apple.security.AppleImage4 calling module start function.
Kext com.apple.security.AppleImage4 registered class AppleImage4.
Kext com.apple.security.AppleImage4 has IOService subclass AppleImage4; enabling autounload.
Kext com.apple.security.AppleImage4 registered class AppleImage4UserClient.
Darwin Image4 Validator Version 3.1.0: Wed Dec 2 20:15:18 PST 2020; root:AppleImage4-106.40.12~3328/AppleImage4/RELEASE_ARM64E
AppleImage4: failed to read nvram property: nonce-seeds: 2
AppleImage4: error reading seeds: 2
Kext com.apple.security.AppleImage4 is now started.
Kext com.apple.security.AppleImage4 loaded.
Loading security extension com.apple.driver.AppleMobileFileIntegrity.
Recorded kext com.apple.driver.AppleMobileFileIntegrity as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.driver.AppleMobileFileIntegrity.
Kext com.apple.kec.corecrypto is already loaded.
Loading kext com.apple.kext.CoreTrust.
Kext com.apple.kec.corecrypto is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kext.CoreTrust executable loaded; 1 pages at 0xfffffe00075a0000 (load tag 18).
Kext com.apple.kext.CoreTrust calling module start function.
Kext com.apple.kext.CoreTrust is now started.
Kext com.apple.kext.CoreTrust loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.dsep is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.driver.AppleMobileFileIntegrity executable loaded; 5 pages at 0xfffffe0007404000 (load tag 19).
Kext com.apple.driver.AppleMobileFileIntegrity calling module start function.
Kext com.apple.driver.AppleMobileFileIntegrity registered class AppleMobileFileIntegrityUserClient.
Kext com.apple.driver.AppleMobileFileIntegrity has IOService subclass AppleMobileFileIntegrityUserClient; enabling autounload.
Kext com.apple.driver.AppleMobileFileIntegrity registered class AppleMobileFileIntegrity.
Kext com.apple.driver.AppleMobileFileIntegrity is now started.
Kext com.apple.driver.AppleMobileFileIntegrity loaded.
Loading security extension com.apple.AppleSystemPolicy.
Recorded kext com.apple.AppleSystemPolicy as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.AppleSystemPolicy.
Kext com.apple.driver.AppleMobileFileIntegrity is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.dsep is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Loading kext com.apple.security.quarantine.
Loading kext com.apple.kext.AppleMatch.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kext.AppleMatch executable loaded; 1 pages at 0xfffffe00073c8000 (load tag 20).
Kext com.apple.kext.AppleMatch calling module start function.
Kext com.apple.kext.AppleMatch is now started.
Kext com.apple.kext.AppleMatch loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.dsep is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Loading kext com.apple.security.sandbox.
Kext com.apple.driver.AppleMobileFileIntegrity is already loaded.
Kext com.apple.iokit.IOStorageFamily is already loaded.
Kext com.apple.kext.AppleMatch is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.dsep is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.security.sandbox executable loaded; 6 pages at 0xfffffe00078cc000 (load tag 21).
Kext com.apple.security.sandbox calling module start function.
calling mpo_policy_init for AMFI
Security policy loaded: Apple Mobile File Integrity (AMFI)
calling mpo_policy_init for Sandbox
Security policy loaded: Seatbelt sandbox policy (Sandbox)
Kext com.apple.security.sandbox is now started.
Kext com.apple.security.sandbox loaded.
Kext com.apple.security.quarantine executable loaded; 1 pages at 0xfffffe00078c0000 (load tag 22).
Kext com.apple.security.quarantine calling module start function.
calling mpo_policy_init for Quarantine
Security policy loaded: Quarantine policy (Quarantine)
Kext com.apple.security.quarantine is now started.
Kext com.apple.security.quarantine loaded.
Kext com.apple.security.sandbox is already loaded.
Kext com.apple.AppleSystemPolicy executable loaded; 1 pages at 0xfffffe00074d4000 (load tag 23).
Kext com.apple.AppleSystemPolicy calling module start function.
Kext com.apple.AppleSystemPolicy registered class AppleSystemPolicyUserClient.
Kext com.apple.AppleSystemPolicy has IOService subclass AppleSystemPolicyUserClient; enabling autounload.
Kext com.apple.AppleSystemPolicy registered class AppleSystemPolicy.
Kext com.apple.AppleSystemPolicy is now started.
Kext com.apple.AppleSystemPolicy loaded.
Loading security extension com.apple.security.quarantine.
Recorded kext com.apple.security.quarantine as a candidate for inclusion in prelinked kernel.
Kext com.apple.security.quarantine is already loaded.
Loading security extension com.apple.security.sandbox.
Recorded kext com.apple.security.sandbox as a candidate for inclusion in prelinked kernel.
Kext com.apple.security.sandbox is already loaded.
No external trust cache found (region len is 0).Jettisoning kext bootstrap segments.
keepsyms boot arg specified; keeping linkedit segment for symbols.
Recorded kext com.apple.driver.AppleARMPlatform as a candidate for inclusion in prelinked kernel.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Recorded kext com.apple.AUC as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.AUC.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Loading kext com.apple.driver.AppleM2ScalerCSCDriver.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Loading kext com.apple.driver.IODARTFamily.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.driver.IODARTFamily executable loaded; 1 pages at 0xfffffe0007720000 (load tag 24).
Kext com.apple.driver.IODARTFamily calling module start function.
Kext com.apple.driver.IODARTFamily registered class IODART.
Kext com.apple.driver.IODARTFamily has IOService subclass IODART; enabling autounload.
Kext com.apple.driver.IODARTFamily registered class IODARTMapperNub.
Kext com.apple.driver.IODARTFamily registered class IODARTClient.
Kext com.apple.driver.IODARTFamily registered class IODARTMapper.
Kext com.apple.driver.IODARTFamily registered class IODARTVMSpace.
Kext com.apple.driver.IODARTFamily registered class IODARTVMAllocatorGeneric.
Kext com.apple.driver.IODARTFamily registered class IODARTPIOAllocatorGeneric.
Kext com.apple.driver.IODARTFamily registered class IODARTMapperClient.
Kext com.apple.driver.IODARTFamily registered class IODARTVMAllocator.
Kext com.apple.driver.IODARTFamily is now started.
Kext com.apple.driver.IODARTFamily loaded.
Loading kext com.apple.iokit.IOSurface.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOSurface executable loaded; 1 pages at 0xfffffe00077e4000 (load tag 25).
Kext com.apple.iokit.IOSurface calling module start function.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSharedEventListener.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSharedEventNotificationPort.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSharedEventReference.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSharedEvent.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSharedEventNotification.
Kext com.apple.iokit.IOSurface registered class IOSurface.
Kext com.apple.iokit.IOSurface registered class IOFence.
Kext com.apple.iokit.IOSurface registered class IOSurfaceClient.
Kext com.apple.iokit.IOSurface registered class IOSurfaceDeviceCache.
Kext com.apple.iokit.IOSurface registered class IOSurfaceDescriptor.
Kext com.apple.iokit.IOSurface registered class IOSurfaceDeviceMemoryRegion.
Kext com.apple.iokit.IOSurface registered class IOSurfaceMemoryRegion.
Kext com.apple.iokit.IOSurface registered class IOSurfaceRoot.
Kext com.apple.iokit.IOSurface has IOService subclass IOSurfaceRoot; enabling autounload.
Kext com.apple.iokit.IOSurface registered class IOSurfaceRootUserClient.
Kext com.apple.iokit.IOSurface registered class IOSurfaceBufferMemoryDescriptorPool.
Kext com.apple.iokit.IOSurface registered class IOSurfaceSendRight.
Kext com.apple.iokit.IOSurface registered class IOSurfaceWiredSendRight.
Kext com.apple.iokit.IOSurface is now started.
Kext com.apple.iokit.IOSurface loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.driver.AppleM2ScalerCSCDriver executable loaded; 11 pages at 0xfffffe0007390000 (load tag 26).
Kext com.apple.driver.AppleM2ScalerCSCDriver calling module start function.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaPrescalerControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR8a.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR9.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaWdmaControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaWdmaControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR9.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class DitherControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaRdmaControlMSR6.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaChannelConfig.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaRdmaControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR6.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaRdmaControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaPrescalerControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaRdmaControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaRdmaControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaPrescalerControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaTiledCompressedMemMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManager.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR2.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IOSurfaceAcceleratorClient.
Kext com.apple.driver.AppleM2ScalerCSCDriver has IOService subclass IOSurfaceAcceleratorClient; enabling autounload.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaTiledCompressedMem.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR6.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleRegStmAPIODMA.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaWdmaControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class DitherControlMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHal.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR2.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControlMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR9.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCDriver.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingASEControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class AppleM2ScalerCSCHalMSR6.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class DitherControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class DitherControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipe.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControlMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaInternalPipeMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class DitherControlMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR6.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaTiledCompressedMemMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCColorConversionControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR5.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControl.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR5.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerCSCRequest.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IosaColorManagerMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR4.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class IOAsynchronousScheduler.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR8.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingControlMSR2.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR2.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerDMACommand.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerScalingASEControlMSR10.
Kext com.apple.driver.AppleM2ScalerCSCDriver registered class M2ScalerSrcDestCfgControlMSR7.
Kext com.apple.driver.AppleM2ScalerCSCDriver is now started.
Kext com.apple.driver.AppleM2ScalerCSCDriver loaded.
Loading kext com.apple.iokit.IOAVFamily.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Loading kext com.apple.driver.AppleEmbeddedAudioLibs.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Loading kext com.apple.driver.AppleFirmwareUpdateKext.
Kext com.apple.kec.corecrypto is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.security.AppleImage4 is already loaded.
Kext com.apple.driver.AppleFirmwareUpdateKext executable loaded; 1 pages at 0xfffffe00072f8000 (load tag 27).
Kext com.apple.driver.AppleFirmwareUpdateKext calling module start function.
Kext com.apple.driver.AppleFirmwareUpdateKext registered class AppleFirmwareUpdateKext.
Kext com.apple.driver.AppleFirmwareUpdateKext has IOService subclass AppleFirmwareUpdateKext; enabling autounload.
Kext com.apple.driver.AppleFirmwareUpdateKext registered class AppleFirmwareUpdateUserClient.
Kext com.apple.driver.AppleFirmwareUpdateKext is now started.
Kext com.apple.driver.AppleFirmwareUpdateKext loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.driver.AppleEmbeddedAudioLibs executable loaded; 2 pages at 0xfffffe00072c0000 (load tag 28).
Kext com.apple.driver.AppleEmbeddedAudioLibs calling module start function.
Kext com.apple.driver.AppleEmbeddedAudioLibs registered class AudioKernelClientInterface.
Kext com.apple.driver.AppleEmbeddedAudioLibs has IOService subclass AudioKernelClientInterface; enabling autounload.
Kext com.apple.driver.AppleEmbeddedAudioLibs registered class AppleExternalPowerManager.
Kext com.apple.driver.AppleEmbeddedAudioLibs registered class AppleExternalPowerProvider.
Kext com.apple.driver.AppleEmbeddedAudioLibs registered class AppleAudioFirmwareDownloader.
Kext com.apple.driver.AppleEmbeddedAudioLibs is now started.
Kext com.apple.driver.AppleEmbeddedAudioLibs loaded.
Loading kext com.apple.iokit.IOAudio2Family.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.iokit.IOAudio2Family executable loaded; 1 pages at 0xfffffe00076ac000 (load tag 29).
Kext com.apple.iokit.IOAudio2Family calling module start function.
Kext com.apple.iokit.IOAudio2Family registered class IOAudio2Device.
Kext com.apple.iokit.IOAudio2Family has IOService subclass IOAudio2Device; enabling autounload.
Kext com.apple.iokit.IOAudio2Family registered class IOAudio2DeviceUserClient.
Kext com.apple.iokit.IOAudio2Family is now started.
Kext com.apple.iokit.IOAudio2Family loaded.
Loading kext com.apple.iokit.IOCECFamily.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.iokit.IOCECFamily executable loaded; 1 pages at 0xfffffe0007718000 (load tag 30).
Kext com.apple.iokit.IOCECFamily calling module start function.
Kext com.apple.iokit.IOCECFamily registered class IOCECUserClient.
Kext com.apple.iokit.IOCECFamily has IOService subclass IOCECUserClient; enabling autounload.
Kext com.apple.iokit.IOCECFamily registered class IOCECMergeProperties.
Kext com.apple.iokit.IOCECFamily registered class IOCECService.
Kext com.apple.iokit.IOCECFamily is now started.
Kext com.apple.iokit.IOCECFamily loaded.
Loading kext com.apple.iokit.IOHDCPFamily.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.iokit.IOHDCPFamily executable loaded; 2 pages at 0xfffffe0007744000 (load tag 31).
Kext com.apple.iokit.IOHDCPFamily calling module start function.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCPMessageTransport.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCPInterface.
Kext com.apple.iokit.IOHDCPFamily has IOService subclass IOHDCPInterface; enabling autounload.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCP2TransmitterAuthSession.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCP2ReceiverAuthSession.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCPAuthSession.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCP2AuthSession.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCP2DPTransmitterAuthSession.
Kext com.apple.iokit.IOHDCPFamily registered class IOHDCP1TransmitterAuthSession.
Kext com.apple.iokit.IOHDCPFamily is now started.
Kext com.apple.iokit.IOHDCPFamily loaded.
Kext com.apple.kec.Libm is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOAVFamily executable loaded; 9 pages at 0xfffffe0007670000 (load tag 32).
Kext com.apple.iokit.IOAVFamily calling module start function.
Kext com.apple.iokit.IOAVFamily registered class IOAVSimpleVideoInterface.
Kext com.apple.iokit.IOAVFamily has IOService subclass IOAVSimpleVideoInterface; enabling autounload.
Kext com.apple.iokit.IOAVFamily registered class IOAVDisplayMemoryUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioLinkDelegate.
Kext com.apple.iokit.IOAVFamily registered class IOAVSerializer.
Kext com.apple.iokit.IOAVFamily registered class IOAVAbstractVideoInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVIISAudioDMAEventSource.
Kext com.apple.iokit.IOAVFamily registered class IOAVControllerAddDeviceCompletion.
Kext com.apple.iokit.IOAVFamily registered class IOAVController.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVConcreteDisplayMemory.
Kext com.apple.iokit.IOAVFamily registered class IOAVVideoInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioInterfaceConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVDeviceConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVElement.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioElement.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioDriver.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioPattern.
Kext com.apple.iokit.IOAVFamily registered class IOAVWAVRecorder.
Kext com.apple.iokit.IOAVFamily registered class IOAVCECInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVSplitDisplay.
Kext com.apple.iokit.IOAVFamily registered class IOAVControllerConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVControlInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVDMACommand.
Kext com.apple.iokit.IOAVFamily registered class AppleARMIISAudioLinkDelegate.
Kext com.apple.iokit.IOAVFamily registered class IOAVSplitDisplayVideoInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVVideoColorElement.
Kext com.apple.iokit.IOAVFamily registered class IOAVVideoTimingElement.
Kext com.apple.iokit.IOAVFamily registered class IOAVDisplayMemory.
Kext com.apple.iokit.IOAVFamily registered class IOAVCECService.
Kext com.apple.iokit.IOAVFamily registered class IOAVDevice.
Kext com.apple.iokit.IOAVFamily registered class IOAVDeviceUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVAUPPacket.
Kext com.apple.iokit.IOAVFamily registered class IOAVVideoInterfaceConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVValueSet.
Kext com.apple.iokit.IOAVFamily registered class IOAVElementArray.
Kext com.apple.iokit.IOAVFamily registered class IOAVService.
Kext com.apple.iokit.IOAVFamily registered class IOAVSliceVideoInterface.
Kext com.apple.iokit.IOAVFamily registered class IOAVCommandGate.
Kext com.apple.iokit.IOAVFamily registered class IOAVControlInterfaceConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVAsyncEventSource.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioDMADelegate.
Kext com.apple.iokit.IOAVFamily registered class IOAVDisplayMemoryConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVServiceUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVVideoInterfaceUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioInterfaceUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVServiceConcreteUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVControllerUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVAudioChannelLayoutElement.
Kext com.apple.iokit.IOAVFamily registered class IOAVEventLog.
Kext com.apple.iokit.IOAVFamily registered class IOAVIISAudioLinkDelegate.
Kext com.apple.iokit.IOAVFamily registered class IOAVControlInterfaceUserClient.
Kext com.apple.iokit.IOAVFamily registered class IOAVRegisterSet.
Kext com.apple.iokit.IOAVFamily is now started.
Kext com.apple.iokit.IOAVFamily loaded.
Kext com.apple.iokit.IOSurface is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.AUC executable loaded; 1 pages at 0xfffffe0007020000 (load tag 33).
Kext com.apple.AUC calling module start function.
Kext com.apple.AUC registered class AUC.
Kext com.apple.AUC has IOService subclass AUC; enabling autounload.
Kext com.apple.AUC registered class AUCUserClient.
Kext com.apple.AUC registered class ConnectionWatchdog.
Kext com.apple.AUC is now started.
Kext com.apple.AUC loaded.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Recorded kext com.apple.driver.AppleBiometricSensor as a candidate for inclusion in prelinked kernel.
Loading kext com.apple.driver.AppleBiometricSensor.
Kext com.apple.driver.AppleARMPlatform is already loaded.
Loading kext com.apple.iokit.IOHIDFamily.
Kext com.apple.iokit.IOReportFamily is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.dsep is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
MAC Framework successfully initialized
using 7710 buffer headers and 5903 cluster IO buffer headers
Kext com.apple.kpi.private is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.iokit.IOHIDFamily executable loaded; 2 pages at 0xfffffe0007764000 (load tag 34).
Kext com.apple.iokit.IOHIDFamily calling module start function.
Kext com.apple.iokit.IOHIDFamily registered class AppleEmbeddedHIDEventService.
Kext com.apple.iokit.IOHIDFamily has IOService subclass AppleEmbeddedHIDEventService; enabling autounload.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDUserDevice.
Kext com.apple.iokit.IOHIDFamily registered class AppleUserHIDDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventServiceFastPathUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDKeyboardEventDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventServiceUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDOOBReportDescriptor.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDLibUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDAsyncReportQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDElementContainer.
Kext com.apple.iokit.IOHIDFamily registered class AppleUserHIDEventService.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDDeviceElementContainer.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDElement.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDElementPrivate.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDInterface.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventService.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDClientData.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDAction.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDActionQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDProviderPropertyMerger.
Kext com.apple.iokit.IOHIDFamily registered class EventElementCollection.
Kext com.apple.iokit.IOHIDFamily registered class DigitizerTransducer.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventDriver.
Kext com.apple.iokit.IOHIDFamily registered class AppleEmbeddedKeyboard.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventRepairDriver.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEvent.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventSource.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDReportElementQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDPointingEventDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDConsumer.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDKeyboard.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDPointing.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDPointingDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDKeyboardDevice.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDSystem.
Kext com.apple.iokit.IOHIDFamily registered class IOHIKeyboard.
Kext com.apple.iokit.IOHIDFamily registered class IOHIKeyboardMapper.
Kext com.apple.iokit.IOHIDFamily registered class IOHIPointing.
Kext com.apple.iokit.IOHIDFamily registered class IOHITablet.
Kext com.apple.iokit.IOHIDFamily registered class IOHITabletPointer.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDDeviceShim.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventServiceQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDParamUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventSystemUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDWorkLoop.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDResourceDeviceUserClient.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDResourceQueue.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDResource.
Kext com.apple.iokit.IOHIDFamily registered class IOHIDEventDummyService.
Kext com.apple.iokit.IOHIDFamily registered class OSAction_IOHIDDevice__CompleteReport.
Kext com.apple.iokit.IOHIDFamily is now started.
Kext com.apple.iokit.IOHIDFamily loaded.
Kext com.apple.iokit.IOReportFamily is already loaded.
Kext com.apple.kpi.bsd is already loaded.
Kext com.apple.kpi.iokit is already loaded.
Kext com.apple.kpi.libkern is already loaded.
Kext com.apple.kpi.mach is already loaded.
Kext com.apple.kpi.unsupported is already loaded.
Kext com.apple.driver.AppleBiometricSensor executable loaded; 2 pages at 0xfffffe0007240000 (load tag 35).
Kext com.apple.driver.AppleBiometricSensor calling module start function.
Kext com.apple.driver.AppleBiometricSensor registered class AppleMesaResources.
Kext com.apple.driver.AppleBiometricSensor has IOService subclass AppleMesaResources; enabling autounload.
Kext com.apple.driver.AppleBiometricSensor registered class AppleSPIBiometricSensor.
Kext com.apple.driver.AppleBiometricSensor registered class AppleMesaShim.