Last change
on this file since 98412 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:
861 bytes
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver produces EFI_RNG_PROTOCOL instances for virtio-rng devices.
|
---|
3 | #
|
---|
4 | # Copyright (C) 2016, Linaro Ltd.
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = VirtioRngDxe
|
---|
13 | FILE_GUID = 58E26F0D-CBAC-4BBA-B70F-18221415665A
|
---|
14 | MODULE_TYPE = UEFI_DRIVER
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 | ENTRY_POINT = VirtioRngEntryPoint
|
---|
17 |
|
---|
18 | [Sources]
|
---|
19 | VirtioRng.c
|
---|
20 | VirtioRng.h
|
---|
21 |
|
---|
22 | [Packages]
|
---|
23 | MdePkg/MdePkg.dec
|
---|
24 | OvmfPkg/OvmfPkg.dec
|
---|
25 |
|
---|
26 | [LibraryClasses]
|
---|
27 | BaseMemoryLib
|
---|
28 | DebugLib
|
---|
29 | MemoryAllocationLib
|
---|
30 | UefiBootServicesTableLib
|
---|
31 | UefiDriverEntryPoint
|
---|
32 | UefiLib
|
---|
33 | VirtioLib
|
---|
34 |
|
---|
35 | [Protocols]
|
---|
36 | gEfiRngProtocolGuid ## BY_START
|
---|
37 | gVirtioDeviceProtocolGuid ## TO_START
|
---|
38 |
|
---|
39 | [Guids]
|
---|
40 | gEfiRngAlgorithmRaw
|
---|
Note:
See
TracBrowser
for help on using the repository browser.