2008-04-09 04:09:51 +02:00
|
|
|
#/** @file
|
2008-12-25 10:13:53 +01:00
|
|
|
# This driver produces UEFI PLATFORM_DRIVER_OVERRIDE_PROTOCOL if this protocol doesn't exist.
|
|
|
|
# It doesn't install again if this protocol exists.
|
|
|
|
# It only implements one interface GetDriver of PLATFORM_DRIVER_OVERRIDE_PROTOCOL protocol
|
|
|
|
# and doesn't support other two interfaces GetDriverPath, DriverLoaded.
|
|
|
|
#
|
2009-02-24 09:26:40 +01:00
|
|
|
# Copyright (c) 2007 - 2009, Intel Corporation. All rights reserved.
|
2008-04-09 04:09:51 +02:00
|
|
|
#
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = PlatformDriOverrideDxe
|
|
|
|
FILE_GUID = 35034CE2-A6E5-4fb4-BABE-A0156E9B2549
|
2008-12-25 10:13:53 +01:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2008-04-09 04:09:51 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = PlatformDriverOverrideEntry
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
PlatformDriOverride.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2009-02-24 09:26:40 +01:00
|
|
|
PlatformDriverOverrideLib
|
2008-12-25 10:13:53 +01:00
|
|
|
UefiBootServicesTableLib
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
[Protocols]
|
2009-01-09 07:26:42 +01:00
|
|
|
gEfiPlatformDriverOverrideProtocolGuid ## PRODUCED
|
2008-12-25 10:13:53 +01:00
|
|
|
|