VirtualBox

Changeset 5170 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Oct 5, 2007 4:38:54 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25071
Message:

Added PXEDebug option to BIOS. Write setting to CMOS offset 0x3f.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevPcBios.cpp

    r4670 r5170  
    9494    /** I/O-APIC enabled? */
    9595    uint8_t        u8IOAPIC;
     96    /** PXE debug logging enabled? */
     97    uint8_t        u8PXEDebug;
    9698} DEVPCBIOS, *PDEVPCBIOS;
    9799
     
    403405    pcbiosCmosWrite(pDevIns, 0x38, reg38);
    404406    pcbiosCmosWrite(pDevIns, 0x3c, reg3c);
     407
     408    /*
     409     * PXE debug option.
     410     */
     411    pcbiosCmosWrite(pDevIns, 0x3f, pData->u8PXEDebug);
    405412
    406413    /*
     
    11091116                              "DelayBoot\0"
    11101117                              "LanBootRom\0"
     1118                              "PXEDebug\0"
    11111119                              "UUID\0"
    11121120                              "IOAPIC\0"))
     
    11811189    if (VBOX_FAILURE(rc))
    11821190        return rc;
     1191
     1192    /*
     1193     * Read the PXE debug logging option.
     1194     */
     1195    rc = CFGMR3QueryU8(pCfgHandle, "PXEDebug", &pData->u8PXEDebug);
     1196    if (rc == VERR_CFGM_VALUE_NOT_FOUND)
     1197        pData->u8PXEDebug = 0;
     1198    else if (VBOX_FAILURE(rc))
     1199        return PDMDEV_SET_ERROR(pDevIns, rc,
     1200                                N_("Configuration error: Querying \"PXEDebug\" as integer failed"));
    11831201
    11841202    /*
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