82 lines
2.2 KiB
INI
82 lines
2.2 KiB
INI
## @file
|
|
#
|
|
#******************************************************************************
|
|
#* 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 = WmiSetupUnderOsDxe
|
|
FILE_GUID = 6A7A971A-A798-478b-876B-4D8D89A1A89A
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = L05WmiSetupUnderOsDxeEntry
|
|
|
|
[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
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
|
|
[Sources]
|
|
WmiSetupUnderOsDxe.c
|
|
WmiSecureBootSync.c
|
|
!if $(L05_HDD_PASSWORD_ENABLE) == YES
|
|
WmiHddPasswordSync.c
|
|
!endif
|
|
WmiSetupUnderOsDxe.h
|
|
|
|
[LibraryClasses]
|
|
UefiLib
|
|
UefiBootServicesTableLib
|
|
UefiRuntimeServicesTableLib
|
|
UefiDriverEntryPoint
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
VariableLib
|
|
PrintLib
|
|
OemGraphicsLib
|
|
!if $(L05_NOTEBOOK_PASSWORD_ENABLE) == YES && $(CHIPSET_PKG) == AlderLakeChipsetPkg
|
|
EncodeHddPasswordTableLib
|
|
!endif
|
|
|
|
[Protocols]
|
|
gEfiL05SecureBootProtocolGuid
|
|
gEfiSmmVariableProtocolGuid
|
|
gEfiHddPasswordServiceProtocolGuid
|
|
gH2ODialogProtocolGuid
|
|
!if $(L05_HDD_PASSWORD_ENABLE) == YES
|
|
gEfiHddPasswordDialogProtocolGuid
|
|
!endif
|
|
|
|
[Guids]
|
|
gL05WmiSetupUnderOsSetupVariableGuid
|
|
gSaveHddPasswordGuid
|
|
gSystemConfigurationGuid
|
|
|
|
[Pcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05PasswordErrorFlag
|
|
|
|
[FixedPcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05ChipsetName
|
|
|
|
[Depex]
|
|
TRUE
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|