1 ## @file 2 # This module produces EFI MNP Protocol, EFI MNP Servie Binding Protocol and EFI VLAN Protocol. 3 # 4 # This module produces EFI Managed Network Protocol upon EFI Simple Network Protocol, 5 # to provide raw asynchronous network I/O services. It also produces EFI VLAN Protocol 6 # to provide manageability interface for VLAN configuration. 7 # 8 # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 9 # This program and the accompanying materials 10 # are licensed and made available under the terms and conditions of the BSD License 11 # which accompanies this distribution. The full text of the license may be found at 12 # http://opensource.org/licenses/bsd-license.php 13 # 14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16 # 17 ## 18 19 [Defines] 20 INF_VERSION = 0x00010005 21 BASE_NAME = MnpDxe 22 MODULE_UNI_FILE = MnpDxe.uni 23 FILE_GUID = 025BBFC7-E6A9-4b8b-82AD-6815A1AEAF4A 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = MnpDriverEntryPoint 27 UNLOAD_IMAGE = NetLibDefaultUnload 28 # 29 # The following information is for reference only and not required by the build tools. 30 # 31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 32 # 33 # DRIVER_BINDING = gMnpDriverBinding 34 # COMPONENT_NAME = gMnpComponentName 35 # COMPONENT_NAME2 = gMnpComponentName2 36 # 37 38 [Sources] 39 MnpMain.c 40 MnpIo.c 41 ComponentName.h 42 MnpDriver.h 43 ComponentName.c 44 MnpDriver.c 45 MnpConfig.c 46 MnpImpl.h 47 MnpVlan.h 48 MnpVlan.c 49 50 [Packages] 51 MdePkg/MdePkg.dec 52 MdeModulePkg/MdeModulePkg.dec 53 54 [LibraryClasses] 55 BaseLib 56 BaseMemoryLib 57 MemoryAllocationLib 58 UefiLib 59 UefiBootServicesTableLib 60 UefiDriverEntryPoint 61 DebugLib 62 NetLib 63 DpcLib 64 65 [Protocols] 66 gEfiManagedNetworkServiceBindingProtocolGuid ## BY_START 67 gEfiSimpleNetworkProtocolGuid ## TO_START 68 gEfiManagedNetworkProtocolGuid ## BY_START 69 ## BY_START 70 ## UNDEFINED # variable 71 gEfiVlanConfigProtocolGuid 72 73 [UserExtensions.TianoCore."ExtraFiles"] 74 MnpDxeExtra.uni 75