Changeset 61042 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- May 19, 2016 11:57:10 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107307
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r58170 r61042 5 5 6 6 /* 7 * Copyright (C) 2006-201 5Oracle Corporation7 * Copyright (C) 2006-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 202 202 /** I/O-APIC enabled? */ 203 203 uint8_t u8IOAPIC; 204 205 /** APIC mode to be set up by firmware. */ 206 uint8_t u8APIC; 204 207 205 208 /** Boot parameters passed to the firmware. */ … … 2100 2103 "UUID\0" 2101 2104 "IOAPIC\0" 2105 "APIC\0" 2102 2106 "DmiBIOSFirmwareMajor\0" 2103 2107 "DmiBIOSFirmwareMinor\0" … … 2150 2154 return PDMDEV_SET_ERROR(pDevIns, rc, 2151 2155 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\"")); 2152 2161 2153 2162 /*
Note:
See TracChangeset
for help on using the changeset viewer.