1## @file
2#  NULL platform secure library instance that alway returns TRUE for a user physical present
3#
4#  NULL PlatformSecureLib instance does NOT really detect whether a physical present
5#  user exists but returns TRUE directly. This instance can be used to verify security
6#  related features during platform enabling and development. It should be replaced
7#  by a platform-specific method(e.g. Button pressed) in a real platform for product.
8#
9# Copyright (c) 2011 - 2016, Intel Corporation. All rights reserved.<BR>
10# This program and the accompanying materials
11# are licensed and made available under the terms and conditions of the BSD License
12# which accompanies this distribution. The full text of the license may be found at
13# http://opensource.org/licenses/bsd-license.php
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = PlatformSecureLibNull
22  MODULE_UNI_FILE                = PlatformSecureLibNull.uni
23  FILE_GUID                      = 7FA68D82-10A4-4e71-9524-D3D9500D3CDF
24  MODULE_TYPE                    = DXE_DRIVER
25  VERSION_STRING                 = 1.0
26  LIBRARY_CLASS                  = PlatformSecureLib|DXE_RUNTIME_DRIVER DXE_SMM_DRIVER DXE_DRIVER
27  CONSTRUCTOR                    = PlatformSecureLibNullConstructor
28
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
33#
34
35[Sources]
36  PlatformSecureLibNull.c
37
38[Packages]
39  MdePkg/MdePkg.dec
40  SecurityPkg/SecurityPkg.dec
41
42[Pcd]
43  gEfiSecurityPkgTokenSpaceGuid.PcdUserPhysicalPresence    ## CONSUMES
44
45