Last change
on this file since 81913 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.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces EFI UDP Protocol and EFI UDPv4 Service Binding Protocol.
|
---|
3 | #
|
---|
4 | # This module produces EFI UDP(User Datagram Protocol) Protocol upon EFI IPv4
|
---|
5 | # Protocol, to provide basic UDPv4 I/O services.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = Udp4Dxe
|
---|
16 | MODULE_UNI_FILE = Udp4Dxe.uni
|
---|
17 | FILE_GUID = 6d6963ab-906d-4a65-a7ca-bd40e5d6af2b
|
---|
18 | MODULE_TYPE = UEFI_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = Udp4DriverEntryPoint
|
---|
21 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
22 | #
|
---|
23 | # The following information is for reference only and not required by the build tools.
|
---|
24 | #
|
---|
25 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
26 | #
|
---|
27 | # DRIVER_BINDING = gUdp4DriverBinding
|
---|
28 | # COMPONENT_NAME = gUdp4ComponentName
|
---|
29 | # COMPONENT_NAME2 = gUdp4ComponentName2
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | Udp4Impl.h
|
---|
34 | Udp4Main.c
|
---|
35 | ComponentName.c
|
---|
36 | Udp4Impl.c
|
---|
37 | Udp4Driver.h
|
---|
38 | Udp4Driver.c
|
---|
39 |
|
---|
40 |
|
---|
41 | [Packages]
|
---|
42 | MdePkg/MdePkg.dec
|
---|
43 | MdeModulePkg/MdeModulePkg.dec
|
---|
44 | NetworkPkg/NetworkPkg.dec
|
---|
45 |
|
---|
46 |
|
---|
47 | [LibraryClasses]
|
---|
48 | UefiLib
|
---|
49 | BaseLib
|
---|
50 | UefiBootServicesTableLib
|
---|
51 | UefiDriverEntryPoint
|
---|
52 | UefiRuntimeServicesTableLib
|
---|
53 | DebugLib
|
---|
54 | IpIoLib
|
---|
55 | NetLib
|
---|
56 | DpcLib
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 | gEfiUdp4ServiceBindingProtocolGuid ## BY_START
|
---|
60 | gEfiIp4ServiceBindingProtocolGuid ## TO_START
|
---|
61 | gEfiUdp4ProtocolGuid ## BY_START
|
---|
62 | gEfiIp4ProtocolGuid ## TO_START
|
---|
63 |
|
---|
64 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
65 | Udp4DxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.