67 lines
1.7 KiB
INI
67 lines
1.7 KiB
INI
## @file
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2017, Insyde Software Corp. All Rights Reserved.
|
|
#*
|
|
#* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
#* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
#* any part of this publication in any form, by any means, without the prior
|
|
#* written permission of Insyde Software Corporation.
|
|
#*
|
|
#******************************************************************************
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = HddSpinDownDxe
|
|
FILE_GUID = B2C9CD52-86B3-4031-B830-8BD84495ABC8
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = L05HddSpinDownDxeEntry
|
|
|
|
[Packages]
|
|
$(PROJECT_PKG)/Project.dec
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
|
|
[Sources]
|
|
HddSpinDownDxe.c
|
|
HddSpinDownDxe.h
|
|
|
|
[LibraryClasses]
|
|
UefiLib
|
|
UefiDriverEntryPoint
|
|
UefiRuntimeServicesTableLib
|
|
UefiBootServicesTableLib
|
|
UefiRuntimeLib
|
|
BaseMemoryLib
|
|
PrintLib
|
|
DebugLib
|
|
H2OCpLib
|
|
|
|
[Protocols]
|
|
gEfiSmmControl2ProtocolGuid
|
|
gEfiVariableDefaultUpdateProtocolGuid
|
|
gEfiL05HddSpindownSwSmiReadyProtocolGuid
|
|
|
|
[Guids]
|
|
gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event
|
|
gH2OBdsCpDisplayBeforeGuid
|
|
|
|
[Pcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05PostponeResetType
|
|
|
|
[FixedPcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05PchResetSupported
|
|
|
|
[Depex]
|
|
gEfiSmmControl2ProtocolGuid AND
|
|
gEfiResetArchProtocolGuid
|
|
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|