VirtualBox

Changeset 61042 in vbox for trunk/src/VBox/Devices/EFI


Ignore:
Timestamp:
May 19, 2016 11:57:10 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
107307
Message:

Main/Machine+BIOSSettings: introduce APIC/X2APIC CPU feature settings and a BIOS setting what should be used.
Frontends/VBoxManage: corresponding changes to allow making the settings changes
Devices/BIOS+EFI: placeholder for the BIOS setting part, which isn't implemented yet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/DevEFI.cpp

    r58170 r61042  
    55
    66/*
    7  * Copyright (C) 2006-2015 Oracle Corporation
     7 * Copyright (C) 2006-2016 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    202202    /** I/O-APIC enabled? */
    203203    uint8_t                 u8IOAPIC;
     204
     205    /** APIC mode to be set up by firmware. */
     206    uint8_t                 u8APIC;
    204207
    205208    /** Boot parameters passed to the firmware. */
     
    21002103                              "UUID\0"
    21012104                              "IOAPIC\0"
     2105                              "APIC\0"
    21022106                              "DmiBIOSFirmwareMajor\0"
    21032107                              "DmiBIOSFirmwareMinor\0"
     
    21502154        return PDMDEV_SET_ERROR(pDevIns, rc,
    21512155                                N_("Configuration error: Failed to read \"IOAPIC\""));
     2156
     2157    rc = CFGMR3QueryU8Def(pCfg, "APIC", &pThis->u8APIC, 1);
     2158    if (RT_FAILURE (rc))
     2159        return PDMDEV_SET_ERROR(pDevIns, rc,
     2160                                N_("Configuration error: Failed to read \"APIC\""));
    21522161
    21532162    /*
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