]>
Commit | Line | Data |
---|---|---|
1 | ## @file\r | |
2 | # Client-side DHCPv6 services.\r | |
3 | # \r | |
4 | # This driver produces EFI DHCPv6 Protocol which is used to get IPv6 addresses\r | |
5 | # and other configuration parameters from DHCPv6 servers.\r | |
6 | #\r | |
7 | # (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>\r | |
8 | # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>\r | |
9 | #\r | |
10 | # This program and the accompanying materials\r | |
11 | # are licensed and made available under the terms and conditions of the BSD License\r | |
12 | # which accompanies this distribution. The full text of the license may be found at\r | |
13 | # http://opensource.org/licenses/bsd-license.php.\r | |
14 | #\r | |
15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
17 | #\r | |
18 | ##\r | |
19 | \r | |
20 | [Defines]\r | |
21 | INF_VERSION = 0x00010005\r | |
22 | BASE_NAME = Dhcp6Dxe\r | |
23 | FILE_GUID = 95E3669D-34BE-4775-A651-7EA41B69D89E\r | |
24 | MODULE_TYPE = UEFI_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
26 | ENTRY_POINT = Dhcp6DriverEntryPoint\r | |
27 | UNLOAD_IMAGE = NetLibDefaultUnload\r | |
28 | MODULE_UNI_FILE = Dhcp6Dxe.uni\r | |
29 | \r | |
30 | #\r | |
31 | # The following information is for reference only and not required by the build tools.\r | |
32 | #\r | |
33 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
34 | #\r | |
35 | # DRIVER_BINDING = gDhcp6DriverBinding\r | |
36 | # COMPONENT_NAME = gDhcp6ComponentName\r | |
37 | # COMPONENT_NAME2 = gDhcp6ComponentName2\r | |
38 | #\r | |
39 | \r | |
40 | [Sources]\r | |
41 | Dhcp6Driver.c\r | |
42 | Dhcp6Driver.h\r | |
43 | Dhcp6Impl.c\r | |
44 | Dhcp6Impl.h\r | |
45 | Dhcp6Io.c\r | |
46 | Dhcp6Io.h\r | |
47 | Dhcp6Utility.c\r | |
48 | Dhcp6Utility.h\r | |
49 | ComponentName.c\r | |
50 | \r | |
51 | \r | |
52 | [Packages]\r | |
53 | MdePkg/MdePkg.dec\r | |
54 | MdeModulePkg/MdeModulePkg.dec\r | |
55 | NetworkPkg/NetworkPkg.dec\r | |
56 | \r | |
57 | [LibraryClasses]\r | |
58 | UefiLib\r | |
59 | BaseLib\r | |
60 | BaseMemoryLib\r | |
61 | MemoryAllocationLib\r | |
62 | UefiDriverEntryPoint\r | |
63 | UefiBootServicesTableLib\r | |
64 | UefiRuntimeServicesTableLib\r | |
65 | DebugLib\r | |
66 | NetLib\r | |
67 | UdpIoLib\r | |
68 | \r | |
69 | \r | |
70 | [Protocols]\r | |
71 | gEfiUdp6ServiceBindingProtocolGuid ## TO_START\r | |
72 | gEfiUdp6ProtocolGuid ## TO_START\r | |
73 | gEfiDhcp6ServiceBindingProtocolGuid ## BY_START\r | |
74 | gEfiDhcp6ProtocolGuid ## BY_START\r | |
75 | gEfiIp6ConfigProtocolGuid ## TO_START\r | |
76 | \r | |
77 | \r | |
78 | [Pcd]\r | |
79 | gEfiNetworkPkgTokenSpaceGuid.PcdDhcp6UidType ## SOMETIMES_CONSUMES\r | |
80 | \r | |
81 | [UserExtensions.TianoCore."ExtraFiles"]\r | |
82 | Dhcp6DxeExtra.uni\r |