1 | # $Id: VBoxApfsJmpStartDxe.inf 82968 2020-02-04 10:35:17Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxApfsJmpStartDxe - VBox wrapper for loading the APFS jump start EFI driver from an APFS volume.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2019-2020 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 | # The contents of this file may alternatively be used under the terms
|
---|
18 | # of the Common Development and Distribution License Version 1.0
|
---|
19 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | # CDDL are applicable instead of those of the GPL.
|
---|
22 | #
|
---|
23 | # You may elect to license modified versions of this file under the
|
---|
24 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Defines]
|
---|
28 | INF_VERSION = 0x00010005
|
---|
29 | BASE_NAME = VBoxApfsJmpStartDxe
|
---|
30 | FILE_GUID = 16cb3fd4-576d-4ec8-8a81-2176c69a1229
|
---|
31 | MODULE_TYPE = UEFI_DRIVER
|
---|
32 | VERSION_STRING = 1.0
|
---|
33 | EDK_RELEASE_VERSION = 0x00020000
|
---|
34 | EFI_SPECIFICATION_VERSION = 0x00020000
|
---|
35 | ENTRY_POINT = VBoxApfsjmpStartEntryDxe
|
---|
36 | UNLOAD_IMAGE = VBoxApfsjmpStartUnloadDxe
|
---|
37 |
|
---|
38 | #
|
---|
39 | # The following information is for reference only and not required by the build tools.
|
---|
40 | #
|
---|
41 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
42 | #
|
---|
43 | # DRIVER_BINDING = gUdfDriverBinding
|
---|
44 | # COMPONENT_NAME = gUdfComponentName
|
---|
45 | # COMPONENT_NAME2 = gUdfComponentName2
|
---|
46 | #
|
---|
47 |
|
---|
48 | [Sources.common]
|
---|
49 | VBoxApfsJmpStartDxe.c
|
---|
50 |
|
---|
51 | [Packages]
|
---|
52 | MdePkg/MdePkg.dec
|
---|
53 | VBoxPkg/VBoxPkg.dec
|
---|
54 |
|
---|
55 | [LibraryClasses]
|
---|
56 | UefiRuntimeServicesTableLib
|
---|
57 | UefiBootServicesTableLib
|
---|
58 | MemoryAllocationLib
|
---|
59 | BaseMemoryLib
|
---|
60 | BaseLib
|
---|
61 | UefiLib
|
---|
62 | UefiDriverEntryPoint
|
---|
63 | DebugLib
|
---|
64 | PcdLib
|
---|
65 |
|
---|
66 | [Guids]
|
---|
67 | gEfiFileInfoGuid
|
---|
68 | gEfiFileSystemInfoGuid
|
---|
69 | gEfiFileSystemVolumeLabelInfoIdGuid
|
---|
70 |
|
---|
71 |
|
---|
72 | [Protocols]
|
---|
73 | gEfiDiskIoProtocolGuid
|
---|
74 | gEfiBlockIoProtocolGuid
|
---|
75 |
|
---|
76 | [Pcd]
|
---|
77 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
|
---|
78 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
---|
79 |
|
---|