我的 IOKit kext在较旧的 iMac上无法在 IORegistry 的 DeviceTree 平面中定位 /options 路径。有没有其他人遇到过这个或知道它为什么会失败?thx->adv
IORegistryEntry* regEntry = IORegistryEntry::fromPath("/options", gIODTPlane);
if(NULL == regEntry)
{
regEntry = IORegistryEntry::fromPath("IODeviceTree:/options");
if(NULL == regEntry)
{
DEBUG_LOG("getIORegOptionsEntry: FAILURE TO LOCATE: IODeviceTree:/options\n");
}
}