77 lines
2.0 KiB
INI
77 lines
2.0 KiB
INI
## @file
|
|
# Supply Secure Boot service for L05 Feature
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2012 - 2021, 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 = SecureBootService
|
|
FILE_GUID = 98c5594f-9759-11e2-9f93-047d7b99e097
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = SecureBootServiceDriverEntryPoint
|
|
|
|
[Sources]
|
|
SecureBootService.c
|
|
|
|
[Sources.IA32]
|
|
ia32/CallSmmSecureBoot.asm
|
|
|
|
[Sources.X64]
|
|
x64/CallSmmSecureBoot.asm
|
|
|
|
[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
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
UefiDriverEntryPoint
|
|
UefiBootServicesTableLib
|
|
MemoryAllocationLib
|
|
BaseMemoryLib
|
|
BaseLib
|
|
UefiLib
|
|
VariableLib
|
|
|
|
[Protocols]
|
|
gEfiSetupUtilityProtocolGuid
|
|
gEfiL05SecureBootProtocolGuid
|
|
gEfiVariableArchProtocolGuid
|
|
gEfiNonVolatileVariableProtocolGuid
|
|
|
|
[Guids]
|
|
gInsydeTokenSpaceGuid
|
|
gEfiGenericVariableGuid
|
|
gSystemConfigurationGuid
|
|
|
|
[Pcd]
|
|
gInsydeTokenSpaceGuid.PcdSoftwareSmiPort
|
|
gInsydeTokenSpaceGuid.PcdH2OCcbVersion
|
|
|
|
[FixedPcd]
|
|
gL05ServicesTokenSpaceGuid.PcdL05ChipsetName
|
|
|
|
[Depex]
|
|
TRUE
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif |