Changeset 99927 in vbox for trunk/src/VBox/Devices/build
- Timestamp:
- May 23, 2023 8:05:36 AM (21 months ago)
- svn:sync-xref-src-repo-rev:
- 157570
- Location:
- trunk/src/VBox/Devices/build
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/build/VBoxDD.cpp
r99893 r99927 249 249 #endif 250 250 #ifdef VBOX_VMM_TARGET_ARMV8 251 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceEfiArmV8); 252 if (RT_FAILURE(rc)) 253 return rc; 254 251 255 rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePl011); 252 256 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/build/VBoxDD.h
r99893 r99927 230 230 231 231 #ifdef VBOX_VMM_TARGET_ARMV8 232 extern const PDMDEVREG g_DeviceEfiArmV8; 232 233 extern const PDMDEVREG g_DevicePl011; 233 234 extern const PDMDEVREG g_DevicePl031Rtc; -
trunk/src/VBox/Devices/build/VBoxDD2.h
r98103 r99927 60 60 extern DECLEXPORT(const unsigned char) g_abEfiFirmware64[]; 61 61 extern DECLEXPORT(const unsigned) g_cbEfiFirmware64; 62 # ifdef VBOX_VMM_TARGET_ARMV8 63 extern DECLEXPORT(const unsigned char) g_abEfiFirmwareAArch32[]; 64 extern DECLEXPORT(const unsigned) g_cbEfiFirmwareAArch32; 65 extern DECLEXPORT(const unsigned char) g_abEfiFirmwareAArch64[]; 66 extern DECLEXPORT(const unsigned) g_cbEfiFirmwareAArch64; 67 # endif 62 68 # endif 63 69 #else /* !IN_VBOXDD2 */ … … 83 89 extern DECLIMPORT(const unsigned char) g_abEfiFirmware64[]; 84 90 extern DECLIMPORT(const unsigned) g_cbEfiFirmware64; 91 # ifdef VBOX_VMM_TARGET_ARMV8 92 extern DECLIMPORT(const unsigned char) g_abEfiFirmwareAArch32[]; 93 extern DECLIMPORT(const unsigned) g_cbEfiFirmwareAArch32; 94 extern DECLIMPORT(const unsigned char) g_abEfiFirmwareAArch64[]; 95 extern DECLIMPORT(const unsigned) g_cbEfiFirmwareAArch64; 96 # endif 85 97 # endif 86 98 #endif /* !IN_VBOXDD2 */
Note:
See TracChangeset
for help on using the changeset viewer.