1#/** @file 2# Component name for module EmuSnpDxe 3# 4# Copyright (c) 2010, Apple, Inc. All rights reserved.<BR> 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14#**/ 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = EmuSnpDxe 19 FILE_GUID = 22597239-6107-DF44-AD3F-5F053E92222E 20 MODULE_TYPE = UEFI_DRIVER 21 VERSION_STRING = 1.0 22 EDK_RELEASE_VERSION = 0x00020000 23 EFI_SPECIFICATION_VERSION = 0x00020000 24 25 ENTRY_POINT = InitializeEmuSnpDriver 26# UNLOAD_IMAGE = EmuSnpUnload 27# 28# The following information is for reference only and not required by the build tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 IPF EBC 31# 32 33[Sources.common] 34 ComponentName.c 35 EmuSnpDxe.c 36 37[Packages] 38 MdePkg/MdePkg.dec 39 MdeModulePkg/MdeModulePkg.dec 40 EmulatorPkg/EmulatorPkg.dec 41 42[LibraryClasses] 43 DevicePathLib 44 UefiLib 45 UefiBootServicesTableLib 46 BaseMemoryLib 47 DebugLib 48 UefiDriverEntryPoint 49 NetLib 50 51[Protocols] 52 gEfiSimpleNetworkProtocolGuid # PROTOCOL ALWAYS_CONSUMED 53 gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED 54 gEmuSnpProtocolGuid 55 gEmuIoThunkProtocolGuid 56 57 58