Last change
on this file was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file Udp6Dxe.inf
|
---|
2 | # UDP packet service based on IPv6 stack.
|
---|
3 | #
|
---|
4 | # This module produces EFI UDPv6 Protocol which provides simple packet-oriented
|
---|
5 | # services to transmit and receive UDP packets.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = Udp6Dxe
|
---|
16 | FILE_GUID = D912C7BC-F098-4367-92BA-E911083C7B0E
|
---|
17 | MODULE_TYPE = UEFI_DRIVER
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 |
|
---|
20 | ENTRY_POINT = Udp6DriverEntryPoint
|
---|
21 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
22 | MODULE_UNI_FILE = Udp6Dxe.uni
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | Udp6Driver.h
|
---|
32 | Udp6Driver.c
|
---|
33 | Udp6Impl.c
|
---|
34 | Udp6Impl.h
|
---|
35 | ComponentName.c
|
---|
36 | Udp6Main.c
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | NetworkPkg/NetworkPkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | BaseLib
|
---|
44 | BaseMemoryLib
|
---|
45 | MemoryAllocationLib
|
---|
46 | UefiBootServicesTableLib
|
---|
47 | UefiDriverEntryPoint
|
---|
48 | UefiRuntimeServicesTableLib
|
---|
49 | UefiLib
|
---|
50 | DebugLib
|
---|
51 | IpIoLib
|
---|
52 | NetLib
|
---|
53 | DpcLib
|
---|
54 |
|
---|
55 |
|
---|
56 | [Protocols]
|
---|
57 | gEfiIp6ProtocolGuid ## TO_START
|
---|
58 | gEfiIp6ServiceBindingProtocolGuid ## TO_START
|
---|
59 | gEfiUdp6ServiceBindingProtocolGuid ## BY_START
|
---|
60 | gEfiUdp6ProtocolGuid ## BY_START
|
---|
61 |
|
---|
62 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
63 | Udp6DxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.