1## @file 2# 3# Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR> 4# This program and the accompanying materials 5# are licensed and made available under the terms and conditions of the BSD License 6# which accompanies this distribution. The full text of the license may be found at 7# http://opensource.org/licenses/bsd-license.php 8# 9# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 10# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11# 12# Module Name: 13# 14# Abstract: 15# 16## 17[Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = PciBusNoEnumerationDxe 20 FILE_GUID = 35C0C168-2607-4e51-BB53-448E3ED1A87F 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = PciBusEntryPoint 25 26[Packages] 27 MdePkg/MdePkg.dec 28 DuetPkg/DuetPkg.dec 29 30[LibraryClasses] 31 DebugLib 32 BaseLib 33 UefiLib 34 UefiBootServicesTableLib 35 UefiDriverEntryPoint 36 BaseMemoryLib 37 ReportStatusCodeLib 38 DevicePathLib 39 PeCoffLib 40 41[Sources] 42 PciBus.h 43 PciIo.h 44 PciCommand.h 45 PciDeviceSupport.h 46 PciEnumerator.h 47 PciEnumeratorSupport.h 48 PciOptionRomSupport.h 49 PciRomTable.h 50 PciPowerManagement.h 51 PciPowerManagement.c 52 PciRomTable.c 53 PciDriverOverride.h 54 PciDriverOverride.c 55 PciOptionRomSupport.c 56 PciEnumerator.c 57 PciEnumeratorSupport.c 58 PciCommand.c 59 ComponentName.c 60 PciDeviceSupport.c 61 PciBus.c 62 PciIo.c 63 64[Protocols] 65 gEfiPciRootBridgeIoProtocolGuid 66 gEfiPciIoProtocolGuid 67 gEfiDevicePathProtocolGuid 68 gEfiBusSpecificDriverOverrideProtocolGuid 69 gEfiDecompressProtocolGuid 70 71[Guids] 72 gEfiPciOptionRomTableGuid 73