VirtualBox

source: vbox/trunk/src/VBox/Devices/build/VBoxDD2.h@ 107139

Last change on this file since 107139 was 107139, checked in by vboxsync, 8 weeks ago

Devices,Main,Installer,/Makefile.kmk: Take ARM EFI firmwares from the same build box as the x86 & amd64 ones (efi2). Renamed the firmware images and internal variables to include full arch (kbuild style) for x86 & amd64 as well. jiraref:VBP-1458

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/* $Id: VBoxDD2.h 107139 2024-11-26 10:19:37Z vboxsync $ */
2/** @file
3 * Built-in drivers & devices part 2 header.
4 *
5 * These drivers and devices are in separate modules because of LGPL.
6 */
7
8/*
9 * Copyright (C) 2006-2024 Oracle and/or its affiliates.
10 *
11 * This file is part of VirtualBox base platform packages, as
12 * available from https://www.virtualbox.org.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation, in version 3 of the
17 * License.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <https://www.gnu.org/licenses>.
26 *
27 * SPDX-License-Identifier: GPL-3.0-only
28 */
29
30#ifndef VBOX_INCLUDED_SRC_build_VBoxDD2_h
31#define VBOX_INCLUDED_SRC_build_VBoxDD2_h
32#ifndef RT_WITHOUT_PRAGMA_ONCE
33# pragma once
34#endif
35
36#include <VBox/vmm/pdm.h>
37
38RT_C_DECLS_BEGIN
39
40#ifdef IN_VBOXDD2
41# define DECL_VBOXDD2(a_Type) DECLEXPORT(a_Type)
42#else
43# define DECL_VBOXDD2(a_Type) DECLIMPORT(a_Type)
44#endif
45
46extern DECL_VBOXDD2(const unsigned char) g_abPcBiosBinary386[];
47extern DECL_VBOXDD2(const unsigned) g_cbPcBiosBinary386;
48extern DECL_VBOXDD2(const unsigned char) g_abPcBiosBinary286[];
49extern DECL_VBOXDD2(const unsigned) g_cbPcBiosBinary286;
50extern DECL_VBOXDD2(const unsigned char) g_abPcBiosBinary8086[];
51extern DECL_VBOXDD2(const unsigned) g_cbPcBiosBinary8086;
52extern DECL_VBOXDD2(const unsigned char) g_abVgaBiosBinary386[];
53extern DECL_VBOXDD2(const unsigned) g_cbVgaBiosBinary386;
54extern DECL_VBOXDD2(const unsigned char) g_abVgaBiosBinary286[];
55extern DECL_VBOXDD2(const unsigned) g_cbVgaBiosBinary286;
56extern DECL_VBOXDD2(const unsigned char) g_abVgaBiosBinary8086[];
57extern DECL_VBOXDD2(const unsigned) g_cbVgaBiosBinary8086;
58#ifdef VBOX_WITH_PXE_ROM
59extern DECL_VBOXDD2(const unsigned char) g_abNetBiosBinary[];
60extern DECL_VBOXDD2(const unsigned) g_cbNetBiosBinary;
61#endif
62#ifdef VBOX_WITH_EFI_IN_DD2
63extern DECL_VBOXDD2(const unsigned char) g_abEfiFirmwareX86[];
64extern DECL_VBOXDD2(const unsigned) g_cbEfiFirmwareX86;
65extern DECL_VBOXDD2(const unsigned char) g_abEfiFirmwareAmd64[];
66extern DECL_VBOXDD2(const unsigned) g_cbEfiFirmwareAmd64;
67# ifdef VBOX_WITH_VIRT_ARMV8
68extern DECL_VBOXDD2(const unsigned char) g_abEfiFirmwareArm32[];
69extern DECL_VBOXDD2(const unsigned) g_cbEfiFirmwareArm32;
70extern DECL_VBOXDD2(const unsigned char) g_abEfiFirmwareArm64[];
71extern DECL_VBOXDD2(const unsigned) g_cbEfiFirmwareArm64;
72# endif
73#endif
74
75RT_C_DECLS_END
76
77#endif /* !VBOX_INCLUDED_SRC_build_VBoxDD2_h */
Note: See TracBrowser for help on using the repository browser.

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