Last change
on this file since 106129 was 99464, checked in by vboxsync, 2 years ago |
Devices/EFI/Firmware: Restore ArmPkg, ArmVirtPkg, ArmPlatformPkg in order to be able to build Aarch64 and Aarch32 firmware images for the virt platform, bugref:10400
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | # @file
|
---|
2 | # Script to Build OVMF UEFI firmware
|
---|
3 | #
|
---|
4 | # Copyright (c) Microsoft Corporation.
|
---|
5 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | ##
|
---|
7 | import os
|
---|
8 | import sys
|
---|
9 |
|
---|
10 | sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
---|
11 | from PlatformBuildLib import SettingsManager
|
---|
12 | from PlatformBuildLib import PlatformBuilder
|
---|
13 |
|
---|
14 | # ####################################################################################### #
|
---|
15 | # Common Configuration #
|
---|
16 | # ####################################################################################### #
|
---|
17 | class CommonPlatform():
|
---|
18 | ''' Common settings for this platform. Define static data here and use
|
---|
19 | for the different parts of stuart
|
---|
20 | '''
|
---|
21 | PackagesSupported = ("ArmVirtPkg",)
|
---|
22 | ArchSupported = ("AARCH64", "ARM")
|
---|
23 | TargetsSupported = ("DEBUG", "RELEASE", "NOOPT")
|
---|
24 | Scopes = ('armvirt', 'edk2-build')
|
---|
25 | WorkspaceRoot = os.path.realpath(os.path.join(
|
---|
26 | os.path.dirname(os.path.abspath(__file__)), "..", ".."))
|
---|
27 |
|
---|
28 | DscName = os.path.join("ArmVirtPkg", "ArmVirtQemuKernel.dsc")
|
---|
29 |
|
---|
30 | # this platform produces an executable image that is invoked using
|
---|
31 | # the Linux/arm64 kernel boot protocol
|
---|
32 | FvQemuArg = " -kernel "
|
---|
33 |
|
---|
34 | import PlatformBuildLib
|
---|
35 | PlatformBuildLib.CommonPlatform = CommonPlatform
|
---|
Note:
See
TracBrowser
for help on using the repository browser.