Last change
on this file since 106129 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.0 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver produces a Block I/O protocol for a Xen PV block device.
|
---|
3 | #
|
---|
4 | # Copyright (C) 2014, Citrix Ltd.
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = XenPvBlkDxe
|
---|
13 | FILE_GUID = 8c2487ea-9af3-11e3-b966-b8ac6f7d65e6
|
---|
14 | MODULE_TYPE = UEFI_DRIVER
|
---|
15 |
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | ENTRY_POINT = XenPvBlkDxeDriverEntryPoint
|
---|
18 | UNLOAD_IMAGE = XenPvBlkDxeUnload
|
---|
19 |
|
---|
20 |
|
---|
21 | [Packages]
|
---|
22 | MdePkg/MdePkg.dec
|
---|
23 | OvmfPkg/OvmfPkg.dec
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | BlockFront.c
|
---|
27 | BlockFront.h
|
---|
28 | BlockIo.c
|
---|
29 | BlockIo.h
|
---|
30 | ComponentName.c
|
---|
31 | ComponentName.h
|
---|
32 | DriverBinding.h
|
---|
33 | XenPvBlkDxe.c
|
---|
34 | XenPvBlkDxe.h
|
---|
35 |
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | UefiDriverEntryPoint
|
---|
39 | UefiBootServicesTableLib
|
---|
40 | MemoryAllocationLib
|
---|
41 | BaseMemoryLib
|
---|
42 | BaseLib
|
---|
43 | UefiLib
|
---|
44 | DevicePathLib
|
---|
45 | DebugLib
|
---|
46 |
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiDriverBindingProtocolGuid
|
---|
50 | gEfiBlockIoProtocolGuid
|
---|
51 | gEfiComponentName2ProtocolGuid
|
---|
52 | gEfiComponentNameProtocolGuid
|
---|
53 | gXenBusProtocolGuid
|
---|
54 |
|
---|
55 |
|
---|
56 | [Guids]
|
---|
57 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.