VirtualBox

Ignore:
Timestamp:
Apr 27, 2012 11:28:44 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
77679
Message:

SUPDrv-win.cpp: how to write to the NVRAM...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp

    r41067 r41091  
    766766    NOREF(pDevExt); NOREF(pImage);
    767767#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     */
    769772    IORegistryEntry *pEntry = IORegistryEntry::fromPath("/options", gIODTPlane);
    770773    if (pEntry)
    771774    {
    772775        char szVar[80];
    773         RTStrPrintf(szVar, sizeof(szVar), "vboximage-%s", pImage->szName);
     776        RTStrPrintf(szVar, sizeof(szVar), "vboximage"/*-%s*/, pImage->szName);
    774777        char szValue[48];
    775778        RTStrPrintf(szValue, sizeof(szValue), "%#llx,%#llx", (uint64_t)(uintptr_t)pImage->pvImage,
     
    777780        bool fRc = pEntry->setProperty(szVar, szValue); NOREF(fRc);
    778781        pEntry->release();
    779         /*SUPR0Printf("fRc=%d '%s'='%s'\n", fRc, szVar, szValue);*/
     782        SUPR0Printf("fRc=%d '%s'='%s'\n", fRc, szVar, szValue);
    780783    }
    781784    /*else
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette