Changeset 41091 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 27, 2012 11:28:44 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77679
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r41067 r41091 766 766 NOREF(pDevExt); NOREF(pImage); 767 767 #else 768 /* Put 768 /* 769 * Try store the image load address in NVRAM so we can retrived it on panic. 770 * Note! This only works if you're root! - Acutally, it doesn't work at all at the moment. FIXME! 771 */ 769 772 IORegistryEntry *pEntry = IORegistryEntry::fromPath("/options", gIODTPlane); 770 773 if (pEntry) 771 774 { 772 775 char szVar[80]; 773 RTStrPrintf(szVar, sizeof(szVar), "vboximage -%s", pImage->szName);776 RTStrPrintf(szVar, sizeof(szVar), "vboximage"/*-%s*/, pImage->szName); 774 777 char szValue[48]; 775 778 RTStrPrintf(szValue, sizeof(szValue), "%#llx,%#llx", (uint64_t)(uintptr_t)pImage->pvImage, … … 777 780 bool fRc = pEntry->setProperty(szVar, szValue); NOREF(fRc); 778 781 pEntry->release(); 779 /*SUPR0Printf("fRc=%d '%s'='%s'\n", fRc, szVar, szValue);*/782 SUPR0Printf("fRc=%d '%s'='%s'\n", fRc, szVar, szValue); 780 783 } 781 784 /*else
Note:
See TracChangeset
for help on using the changeset viewer.