Posts

Post not yet marked as solved
4 Replies
FWIW, I've managed to implement an (almost) codeless DriverKit extension that blocks the HID driver from loading for some specific devices. I don't know if it's possible to instruct the system to load a DriverKit extension at boot.
Post not yet marked as solved
1 Replies
I found the problem. My DEXT code wasn't being loaded at all. See my answer here: https://stackoverflow.com/a/61818712/7445.
Post marked as solved
4 Replies
This doesn't really answer your question, but here's some information about potential causes for kernel_task causing high load: https://mjtsai.com/blog/2020/04/23/throttling-due-to-thunderbolt-left-proximity-sensor/To delete the KEXT, you can disable SIP temporarily.
Post not yet marked as solved
1 Replies
IOUserServerName should have the bundle identifier that you use for your DEXT. If you are using a standard Xcode setup, you can put $(PRODUCT_BUNDLE_IDENTIFIER) to have it filled in during the build.You can see an example here: https://github.com/knightsc/USBApp/blob/master/MyUserUSBInterfaceDriver/Info.plist
Post not yet marked as solved
1 Replies
Did you find any good solution for this?
Post not yet marked as solved
4 Replies
I was wondering the same. Any updates on this?