93 lines
2.6 KiB
INI
93 lines
2.6 KiB
INI
## @file
|
|
# Provide functions for WMI SMM Service
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2016, 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 = WmiSetupUnderOsSmm
|
|
FILE_GUID = F100061D-A26E-4790-8BE3-D41F364D85A9
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
VERSION_STRING = 1.0
|
|
PI_SPECIFICATION_VERSION = 0x0001000A
|
|
ENTRY_POINT = L05WmiSetupUnderOsSmmEntry
|
|
|
|
[Packages]
|
|
$(PROJECT_PKG)/Project.dec
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
$(OEM_FEATURE_OVERRIDE_CORE_CODE)/$(OEM_FEATURE_OVERRIDE_CORE_CODE).dec
|
|
$(CHIPSET_PKG)/$(CHIPSET_PKG).dec ## ChipsetSetupConfig.h
|
|
!if $(L05_CHIPSET_VENDOR) == INTEL
|
|
$(CHIPSET_REF_CODE_PKG)/$(CHIPSET_REF_CODE_DEC_NAME).dec ## PchLimits.h
|
|
!endif
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
|
|
[Sources]
|
|
WmiSetupUnderOsSmm.c
|
|
WmiSetupUnderOsSmm.h
|
|
WmiSetupUnderOsItem.c
|
|
WmiBiosSettingA0.c
|
|
WmiSetBiosSettingA1.c
|
|
WmiSaveBiosSettingsA2.c
|
|
WmiDiscardBiosSettingsA3.c
|
|
WmiLoadDefaultSettingsA4.c
|
|
WmiBiosPasswordSettingsA5.c
|
|
WmiSetBiosPasswordA6.c
|
|
WmiGetBiosSelectionsA7.c
|
|
Asl/WmiSetupUnderOs.asl
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
UefiDriverEntryPoint
|
|
SmmServicesTableLib
|
|
UefiBootServicesTableLib
|
|
DxeServicesLib
|
|
PrintLib
|
|
DebugLib
|
|
FlashRegionLib
|
|
L05WmiSetupItemLib
|
|
OemSvcSecurityPasswordLib
|
|
|
|
[Protocols]
|
|
gEfiSmmSwDispatch2ProtocolGuid
|
|
gEfiSmmVariableProtocolGuid
|
|
gEfiAcpiTableProtocolGuid
|
|
gEfiSmmFwBlockServiceProtocolGuid
|
|
gEfiHddPasswordServiceProtocolGuid
|
|
gEfiL05VariableProtocolGuid
|
|
|
|
[Guids]
|
|
gL05WmiSetupUnderOsSetupVariableGuid
|
|
gL05H2OFlashMapRegionUserPasswordGuid
|
|
gL05SystemSuperPasswordGuid
|
|
gL05SystemUserPasswordGuid
|
|
gSaveHddPasswordGuid
|
|
|
|
[Pcd]
|
|
gInsydeTokenSpaceGuid.PcdSoftwareSmiPort
|
|
gInsydeTokenSpaceGuid.PcdDefaultSysPasswordMaxLength
|
|
|
|
[Depex]
|
|
gEfiSmmBase2ProtocolGuid AND
|
|
gEfiSmmSwDispatch2ProtocolGuid AND
|
|
gEfiSmmCpuProtocolGuid AND
|
|
gEfiSmmVariableProtocolGuid AND
|
|
gEfiAcpiTableProtocolGuid
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|