mirror of https://github.com/acidanthera/audk.git
OvmfPkg/Microvm: rename output files, fix includes
Rename the firmware volume files (s/OVMF/MICROVM/). Fix includes so they work with microvm config being in a subdirectory. With this patch applied the build works. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3599 Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Jiewen Yao <Jiewen.yao@intel.com>
This commit is contained in:
parent
606340fba3
commit
4932f05a00
|
@ -15,15 +15,15 @@
|
|||
#
|
||||
################################################################################
|
||||
[Defines]
|
||||
PLATFORM_NAME = Ovmf
|
||||
PLATFORM_GUID = 5a9e7754-d81b-49ea-85ad-69eaa7b1539b
|
||||
PLATFORM_NAME = Microvm
|
||||
PLATFORM_GUID = 55a5d2cc-6ca6-47d1-8f4f-5588d7705194
|
||||
PLATFORM_VERSION = 0.1
|
||||
DSC_SPECIFICATION = 0x00010005
|
||||
OUTPUT_DIRECTORY = Build/OvmfX64
|
||||
OUTPUT_DIRECTORY = Build/MicrovmX64
|
||||
SUPPORTED_ARCHITECTURES = X64
|
||||
BUILD_TARGETS = NOOPT|DEBUG|RELEASE
|
||||
SKUID_IDENTIFIER = DEFAULT
|
||||
FLASH_DEFINITION = OvmfPkg/OvmfPkgX64.fdf
|
||||
FLASH_DEFINITION = OvmfPkg/Microvm/MicrovmX64.fdf
|
||||
|
||||
#
|
||||
# Defines for default states. These can be changed on the command line.
|
||||
|
|
|
@ -11,20 +11,20 @@
|
|||
################################################################################
|
||||
|
||||
[Defines]
|
||||
!include OvmfPkgDefines.fdf.inc
|
||||
!include OvmfPkg/OvmfPkgDefines.fdf.inc
|
||||
|
||||
#
|
||||
# Build the variable store and the firmware code as one unified flash device
|
||||
# image.
|
||||
#
|
||||
[FD.OVMF]
|
||||
[FD.MICROVM]
|
||||
BaseAddress = $(FW_BASE_ADDRESS)
|
||||
Size = $(FW_SIZE)
|
||||
ErasePolarity = 1
|
||||
BlockSize = $(BLOCK_SIZE)
|
||||
NumBlocks = $(FW_BLOCKS)
|
||||
|
||||
!include VarStore.fdf.inc
|
||||
!include OvmfPkg/VarStore.fdf.inc
|
||||
|
||||
$(VARS_SIZE)|$(FVMAIN_SIZE)
|
||||
FV = FVMAIN_COMPACT
|
||||
|
@ -36,16 +36,16 @@ FV = SECFV
|
|||
# Build the variable store and the firmware code as separate flash device
|
||||
# images.
|
||||
#
|
||||
[FD.OVMF_VARS]
|
||||
[FD.MICROVM_VARS]
|
||||
BaseAddress = $(FW_BASE_ADDRESS)
|
||||
Size = $(VARS_SIZE)
|
||||
ErasePolarity = 1
|
||||
BlockSize = $(BLOCK_SIZE)
|
||||
NumBlocks = $(VARS_BLOCKS)
|
||||
|
||||
!include VarStore.fdf.inc
|
||||
!include OvmfPkg/VarStore.fdf.inc
|
||||
|
||||
[FD.OVMF_CODE]
|
||||
[FD.MICROVM_CODE]
|
||||
BaseAddress = $(CODE_BASE_ADDRESS)
|
||||
Size = $(CODE_SIZE)
|
||||
ErasePolarity = 1
|
||||
|
@ -427,7 +427,7 @@ FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 {
|
|||
}
|
||||
}
|
||||
|
||||
!include FvmainCompactScratchEnd.fdf.inc
|
||||
!include OvmfPkg/FvmainCompactScratchEnd.fdf.inc
|
||||
|
||||
################################################################################
|
||||
|
||||
|
|
Loading…
Reference in New Issue